Lines Matching refs:kill
1754 int kill = 0; in should_remove_suid() local
1758 kill = ATTR_KILL_SUID; in should_remove_suid()
1765 kill |= ATTR_KILL_SGID; in should_remove_suid()
1767 if (unlikely(kill && !capable(CAP_FSETID) && S_ISREG(mode))) in should_remove_suid()
1768 return kill; in should_remove_suid()
1797 static int __remove_privs(struct dentry *dentry, int kill) in __remove_privs() argument
1801 newattrs.ia_valid = ATTR_FORCE | kill; in __remove_privs()
1817 int kill; in file_remove_privs() local
1824 kill = dentry_needs_remove_privs(dentry); in file_remove_privs()
1825 if (kill < 0) in file_remove_privs()
1826 return kill; in file_remove_privs()
1827 if (kill) in file_remove_privs()
1828 error = __remove_privs(dentry, kill); in file_remove_privs()