Lines Matching refs:kill
1674 int kill = 0; in should_remove_suid() local
1678 kill = ATTR_KILL_SUID; in should_remove_suid()
1685 kill |= ATTR_KILL_SGID; in should_remove_suid()
1687 if (unlikely(kill && !capable(CAP_FSETID) && S_ISREG(mode))) in should_remove_suid()
1688 return kill; in should_remove_suid()
1718 static int __remove_privs(struct dentry *dentry, int kill) in __remove_privs() argument
1722 newattrs.ia_valid = ATTR_FORCE | kill; in __remove_privs()
1738 int kill; in file_remove_privs() local
1745 kill = file_needs_remove_privs(file); in file_remove_privs()
1746 if (kill < 0) in file_remove_privs()
1747 return kill; in file_remove_privs()
1748 if (kill) in file_remove_privs()
1749 error = __remove_privs(dentry, kill); in file_remove_privs()