Loading fs/open.c +1 −6 Original line number Diff line number Diff line Loading @@ -608,7 +608,7 @@ int vfs_fchmod(struct file *file, umode_t mode) return chmod_common(&file->f_path, mode); } int ksys_fchmod(unsigned int fd, umode_t mode) SYSCALL_DEFINE2(fchmod, unsigned int, fd, umode_t, mode) { struct fd f = fdget(fd); int err = -EBADF; Loading @@ -620,11 +620,6 @@ int ksys_fchmod(unsigned int fd, umode_t mode) return err; } SYSCALL_DEFINE2(fchmod, unsigned int, fd, umode_t, mode) { return ksys_fchmod(fd, mode); } int do_fchmodat(int dfd, const char __user *filename, umode_t mode) { struct path path; Loading include/linux/syscalls.h +0 −1 Original line number Diff line number Diff line Loading @@ -1240,7 +1240,6 @@ int ksys_umount(char __user *name, int flags); int ksys_chroot(const char __user *filename); ssize_t ksys_write(unsigned int fd, const char __user *buf, size_t count); int ksys_chdir(const char __user *filename); int ksys_fchmod(unsigned int fd, umode_t mode); int ksys_fchown(unsigned int fd, uid_t user, gid_t group); int ksys_ioctl(unsigned int fd, unsigned int cmd, unsigned long arg); ssize_t ksys_read(unsigned int fd, char __user *buf, size_t count); Loading Loading
fs/open.c +1 −6 Original line number Diff line number Diff line Loading @@ -608,7 +608,7 @@ int vfs_fchmod(struct file *file, umode_t mode) return chmod_common(&file->f_path, mode); } int ksys_fchmod(unsigned int fd, umode_t mode) SYSCALL_DEFINE2(fchmod, unsigned int, fd, umode_t, mode) { struct fd f = fdget(fd); int err = -EBADF; Loading @@ -620,11 +620,6 @@ int ksys_fchmod(unsigned int fd, umode_t mode) return err; } SYSCALL_DEFINE2(fchmod, unsigned int, fd, umode_t, mode) { return ksys_fchmod(fd, mode); } int do_fchmodat(int dfd, const char __user *filename, umode_t mode) { struct path path; Loading
include/linux/syscalls.h +0 −1 Original line number Diff line number Diff line Loading @@ -1240,7 +1240,6 @@ int ksys_umount(char __user *name, int flags); int ksys_chroot(const char __user *filename); ssize_t ksys_write(unsigned int fd, const char __user *buf, size_t count); int ksys_chdir(const char __user *filename); int ksys_fchmod(unsigned int fd, umode_t mode); int ksys_fchown(unsigned int fd, uid_t user, gid_t group); int ksys_ioctl(unsigned int fd, unsigned int cmd, unsigned long arg); ssize_t ksys_read(unsigned int fd, char __user *buf, size_t count); Loading