添加clippy检测的自动化工作流 (#649)

* 添加clippy检测的自动化工作流

* fmt

* 1
This commit is contained in:
LoGin 2024-03-22 23:56:30 +08:00 committed by GitHub
parent b5b571e026
commit 4e4c8c41e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 7 deletions

View File

@ -25,7 +25,8 @@ clean:
.PHONY: fmt .PHONY: fmt
fmt: fmt:
cargo fmt --all $(FMT_CHECK) @cargo fmt --all $(FMT_CHECK)
@cargo clippy --all-features
.PHONY: check .PHONY: check
check: ECHO check: ECHO

View File

@ -762,7 +762,7 @@ impl Syscall {
} }
// TODO AT_EMPTY_PATH标志启用时进行调用者CAP_DAC_READ_SEARCH或相似的检查 // TODO AT_EMPTY_PATH标志启用时进行调用者CAP_DAC_READ_SEARCH或相似的检查
let symlink_times = if flags.contains(AtFlags::AT_SYMLINK_FOLLOW) { let symlink_times = if flags.contains(AtFlags::AT_SYMLINK_FOLLOW) {
0 as usize 0_usize
} else { } else {
VFS_MAX_FOLLOW_SYMLINK_TIMES VFS_MAX_FOLLOW_SYMLINK_TIMES
}; };
@ -795,11 +795,11 @@ impl Syscall {
// 得到新创建节点的父节点 // 得到新创建节点的父节点
let (new_begin_inode, new_remain_path) = user_path_at(&pcb, newfd, new)?; let (new_begin_inode, new_remain_path) = user_path_at(&pcb, newfd, new)?;
let (new_name, new_parent_path) = rsplit_path(&new_remain_path); let (new_name, new_parent_path) = rsplit_path(&new_remain_path);
let new_parent = new_begin_inode let new_parent =
.lookup_follow_symlink(&new_parent_path.unwrap_or("/"), symlink_times)?; new_begin_inode.lookup_follow_symlink(new_parent_path.unwrap_or("/"), symlink_times)?;
// 被调用者利用downcast_ref判断两inode是否为同一文件系统 // 被调用者利用downcast_ref判断两inode是否为同一文件系统
return new_parent.link(&new_name, &old_inode).map(|_| 0); return new_parent.link(new_name, &old_inode).map(|_| 0);
} }
pub fn link(old: *const u8, new: *const u8) -> Result<usize, SystemError> { pub fn link(old: *const u8, new: *const u8) -> Result<usize, SystemError> {
@ -816,9 +816,9 @@ impl Syscall {
let old = get_path(old)?; let old = get_path(old)?;
let new = get_path(new)?; let new = get_path(new)?;
return Self::do_linkat( return Self::do_linkat(
AtFlags::AT_FDCWD.bits() as i32, AtFlags::AT_FDCWD.bits(),
&old, &old,
AtFlags::AT_FDCWD.bits() as i32, AtFlags::AT_FDCWD.bits(),
&new, &new,
AtFlags::empty(), AtFlags::empty(),
); );