函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:fs\read_write.c Create Date:2022-07-29 10:31:33
Last Modify:2020-03-18 10:18:51 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:Check whether we are allowed to dedupe the destination file

函数原型:static bool allow_file_dedupe(struct file *file)

返回类型:bool

参数:

类型参数名称
struct file *file
2087  如果操作权限检查则返回:true
2089  如果f_mode按位与le is open for writing 则返回:true
2091  如果uid_eq(current_fsuid(), i_uid)则返回:true
2093  如果非inode_permission(file_inode(file), MAY_WRITE)则返回:true
2095  返回:false
调用者
名称描述
vfs_dedupe_file_range_one