diff options
author | Christoph Hellwig <hch@lst.de> | 2020-07-22 12:41:02 +0300 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2020-07-31 09:17:53 +0300 |
commit | 1097742efc643ffc667c5c6684635b2663145a7d (patch) | |
tree | 8cfd84b2df0b78392661466d6a18ce09f3e5f9f7 /include/linux/init_syscalls.h | |
parent | b873498f99c77e7b5be3aa5ffe9ca67437232fe0 (diff) | |
download | linux-1097742efc643ffc667c5c6684635b2663145a7d.tar.xz |
init: add an init_chmod helper
Add a simple helper to chmod with a kernel space file name and switch
the early init code over to it.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'include/linux/init_syscalls.h')
-rw-r--r-- | include/linux/init_syscalls.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/init_syscalls.h b/include/linux/init_syscalls.h index 0da59d76133e..2b1b4dc58682 100644 --- a/include/linux/init_syscalls.h +++ b/include/linux/init_syscalls.h @@ -6,5 +6,6 @@ int __init init_umount(const char *name, int flags); int __init init_chdir(const char *filename); int __init init_chroot(const char *filename); int __init init_chown(const char *filename, uid_t user, gid_t group, int flags); +int __init init_chmod(const char *filename, umode_t mode); int __init init_unlink(const char *pathname); int __init init_rmdir(const char *pathname); |