aboutsummaryrefslogtreecommitdiff
path: root/fs/ioctl.c
AgeCommit message (Expand)AuthorFilesLines
2023-08-28Merge tag 'v6.6-vfs.super' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Gravatar Linus Torvalds 1-4/+4
2023-08-19fs: Fix kernel-doc warningsGravatar Matthew Wilcox (Oracle) 1-3/+7
2023-07-17fs: distinguish between user initiated freeze and kernel initiated freezeGravatar Darrick J. Wong 1-4/+4
2023-01-19fs: port inode_owner_or_capable() to mnt_idmapGravatar Christian Brauner 1-1/+1
2023-01-19fs: port ->fileattr_set() to pass mnt_idmapGravatar Christian Brauner 1-8/+8
2022-04-01Merge tag 'vfs-5.18-merge-1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linuxGravatar Linus Torvalds 1-1/+1
2022-03-30fs: fix an infinite loop in iomap_fiemapGravatar Guo Xuenan 1-1/+1
2022-03-14fs: allow cross-vfsmount reflink/dedupeGravatar Josef Bacik 1-4/+0
2022-01-15fs/ioctl: remove unnecessary __user annotationGravatar Amit Daniel Kachhap 1-1/+1
2021-08-31Merge tag 'vfs-5.15-merge-1' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linuxGravatar Linus Torvalds 1-0/+8
2021-08-03fs: forbid invalid project IDGravatar Wang Shilong 1-0/+8
2021-07-27fs: remove generic_block_fiemapGravatar Christoph Hellwig 1-203/+0
2021-04-12vfs: add fileattr opsGravatar Miklos Szeredi 1-0/+325
2020-07-31fs: remove ksys_ioctlGravatar Christoph Hellwig 1-6/+1
2020-06-03fs: remove the access_ok() check in ioctl_fiemapGravatar Christoph Hellwig 1-5/+1
2020-06-03fs: handle FIEMAP_FLAG_SYNC in fiemap_prepGravatar Christoph Hellwig 1-4/+6
2020-06-03fs: move fiemap range validation into the file systems instancesGravatar Christoph Hellwig 1-39/+24
2020-06-03fs: move the fiemap definitions out of fs.hGravatar Christoph Hellwig 1-0/+1
2020-06-03fs: mark __generic_block_fiemap staticGravatar Christoph Hellwig 1-3/+1
2020-04-30fibmap: Warn and return an error in case of block > INT_MAXGravatar Ritesh Harjani 1-0/+8
2020-02-08Merge tag 'compat-ioctl-fix' of git://git.kernel.org:/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-4/+7
2020-02-08Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Gravatar Linus Torvalds 1-10/+23
2020-02-08compat_ioctl: fix FIONREAD on devicesGravatar Arnd Bergmann 1-4/+7
2020-02-03fibmap: Reject negative block numbersGravatar Carlos Maiolino 1-0/+3
2020-02-03fibmap: Use bmap instead of ->bmap method in ioctl_fibmapGravatar Carlos Maiolino 1-10/+20
2020-01-03compat_ioctl: simplify the implementationGravatar Arnd Bergmann 1-93/+64
2020-01-03compat_ioctl: move sys_compat_ioctl() to ioctl.cGravatar Arnd Bergmann 1-0/+90
2019-12-02Merge tag 'xfs-5.5-merge-16' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linuxGravatar Linus Torvalds 1-5/+11
2019-10-28fs: add generic UNRESVSP and ZERO_RANGE ioctl handlersGravatar Christoph Hellwig 1-3/+9
2019-10-23compat: move FS_IOC_RESVSP_32 handling to fs/ioctl.cGravatar Al Viro 1-0/+29
2019-10-23do_vfs_ioctl(): use saner typesGravatar Al Viro 1-8/+8
2019-10-23compat_ioctl: add compat_ptr_ioctl()Gravatar Arnd Bergmann 1-0/+35
2019-01-03Remove 'type' argument from access_ok() functionGravatar Linus Torvalds 1-1/+1
2018-11-02Merge tag 'xfs-4.20-merge-2' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linuxGravatar Linus Torvalds 1-1/+9
2018-10-30vfs: plumb remap flags through the vfs clone functionsGravatar Darrick J. Wong 1-1/+1
2018-10-30vfs: make remap_file_range functions take and return bytes completedGravatar Darrick J. Wong 1-1/+9
2018-10-26vfs: fix FIGETBSZ ioctl on an overlayfs fileGravatar Amir Goldstein 1-0/+3
2018-09-24vfs: swap names of {do,vfs}_clone_file_range()Gravatar Amir Goldstein 1-1/+1
2018-07-18vfs: export vfs_ioctl() to modulesGravatar Miklos Szeredi 1-0/+1
2018-05-24fs: Allow CAP_SYS_ADMIN in s_user_ns to freeze and thaw filesystemsGravatar Seth Forshee 1-2/+2
2018-04-02fs: add ksys_ioctl() helper; remove in-kernel calls to sys_ioctl()Gravatar Dominik Brodowski 1-1/+6
2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGravatar Greg Kroah-Hartman 1-0/+1
2017-03-02sched/headers: Prepare for the reduction of <linux/sched.h>'s signal API depe...Gravatar Ingo Molnar 1-0/+2
2016-12-16vfs: call vfs_clone_file_range() under freeze protectionGravatar Amir Goldstein 1-1/+1
2016-12-16vfs: allow vfs_clone_file_range() across mount pointsGravatar Amir Goldstein 1-0/+4
2016-09-15vfs: cap dedupe request structure size at PAGE_SIZEGravatar Darrick J. Wong 1-0/+4
2016-09-15vfs: fix return type of ioctl_file_dedupe_rangeGravatar Darrick J. Wong 1-1/+1
2016-07-28vfs: ioctl: prevent double-fetch in dedupe ioctlGravatar Scott Bauer 1-0/+1
2016-01-22wrappers for ->i_mutex accessGravatar Al Viro 1-2/+2
2016-01-12Merge branch 'work.copy_file_range' of git://git.kernel.org/pub/scm/linux/ker...Gravatar Linus Torvalds 1-0/+67