DragonOS/kernel/.clippy.toml
DoL e061e1b93d
fix: 修复部分函数的爆栈问题 (#1172)
* fix:修复部分函数的爆栈问题

* feat(filesystem): 重构FAT文件系统重命名和移动文件逻辑

将rename_file_in_same_dir和move_file_to_other_dir函数重构为LockedFATInode的方法,优化代码结构。同时更新clippy配置,添加栈大小和数组大小阈值。

Signed-off-by: longjin <longjin@DragonOS.org>

---------

Signed-off-by: longjin <longjin@DragonOS.org>
Co-authored-by: longjin <longjin@DragonOS.org>
2025-05-24 13:29:03 +08:00

6 lines
164 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 这是clippy的配置文件详情请见
# https://doc.rust-lang.org/clippy/lint_configuration.html
stack-size-threshold = 4096
array-size-threshold = 1024