Lines Matching refs:kill
1883 int kill = 0; in should_remove_suid() local
1887 kill = ATTR_KILL_SUID; in should_remove_suid()
1894 kill |= ATTR_KILL_SGID; in should_remove_suid()
1896 if (unlikely(kill && !capable(CAP_FSETID) && S_ISREG(mode))) in should_remove_suid()
1897 return kill; in should_remove_suid()
1927 struct dentry *dentry, int kill) in __remove_privs() argument
1931 newattrs.ia_valid = ATTR_FORCE | kill; in __remove_privs()
1947 int kill; in file_remove_privs() local
1959 kill = dentry_needs_remove_privs(dentry); in file_remove_privs()
1960 if (kill < 0) in file_remove_privs()
1961 return kill; in file_remove_privs()
1962 if (kill) in file_remove_privs()
1963 error = __remove_privs(file_mnt_user_ns(file), dentry, kill); in file_remove_privs()