The patch titled make vfs_ioctl() static has been removed from the -mm tree. Its filename was make-vfs_ioctl-static.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: make vfs_ioctl() static From: Adrian Bunk <bunk@xxxxxxxxxx> Make the needlessly global vfs_ioctl() static. Signed-off-by: Adrian Bunk <bunk@xxxxxxxxxx> Acked-by: Christoph Hellwig <hch@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/ioctl.c | 4 ++-- include/linux/fs.h | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff -puN fs/ioctl.c~make-vfs_ioctl-static fs/ioctl.c --- a/fs/ioctl.c~make-vfs_ioctl-static +++ a/fs/ioctl.c @@ -28,8 +28,8 @@ * * Returns 0 on success, -errno on error. */ -long vfs_ioctl(struct file *filp, unsigned int cmd, - unsigned long arg) +static long vfs_ioctl(struct file *filp, unsigned int cmd, + unsigned long arg) { int error = -ENOTTY; diff -puN include/linux/fs.h~make-vfs_ioctl-static include/linux/fs.h --- a/include/linux/fs.h~make-vfs_ioctl-static +++ a/include/linux/fs.h @@ -1964,7 +1964,6 @@ extern int vfs_stat_fd(int dfd, char __u extern int vfs_lstat_fd(int dfd, char __user *, struct kstat *); extern int vfs_fstat(unsigned int, struct kstat *); -extern long vfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg); extern int do_vfs_ioctl(struct file *filp, unsigned int fd, unsigned int cmd, unsigned long arg); _ Patches currently in -mm which might be from bunk@xxxxxxxxxx are origin.patch mm-filemapc-generic_write_checks-mustnt-be-inline.patch fs-block_devc-i_bdev-mustnt-be-inline.patch frv-fix-arch-frv-mm-unalignedo-build-error.patch reiserfs-some-functions-mustnt-be-inline.patch git-acpi.patch git-x86.patch arch-x86-video-fbdevc-add-module_license.patch md-make-dm_dirty_log_initexit-static.patch drm-make-drm_minors_cleanup-static.patch git-m32r.patch net-ipv4-ip_outputc-ip_send_check-mustnt-be-inline.patch nfs-make-nfs4_drop_state_owner-static.patch git-ocfs2.patch show_schedstat-fix-memleak.patch git-sh.patch if-0-ses_match_host.patch git-watchdog.patch xen-drivers-xen-balloonc-make-a-function-static.patch make-marker_debug-static.patch reiser4.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html