diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-29 00:58:55 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 08:06:00 -0700 |
commit | 67cde595374dd0e4e4a537dbf9dff70fd3d7bd7b (patch) | |
tree | 5c6e9b52d4ecc912fdb8482c94ed533556023723 | |
parent | 6b09ae66922ca198e5830c0a4d74400a507a9170 (diff) | |
download | linux-3.10-67cde595374dd0e4e4a537dbf9dff70fd3d7bd7b.tar.gz linux-3.10-67cde595374dd0e4e4a537dbf9dff70fd3d7bd7b.tar.bz2 linux-3.10-67cde595374dd0e4e4a537dbf9dff70fd3d7bd7b.zip |
make vfs_ioctl() static
Make the needlessly global vfs_ioctl() static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | fs/ioctl.c | 4 | ||||
-rw-r--r-- | include/linux/fs.h | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/fs/ioctl.c b/fs/ioctl.c index f32fbde2175..7db32b3382d 100644 --- a/fs/ioctl.c +++ b/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 --git a/include/linux/fs.h b/include/linux/fs.h index 1de9d72178e..a1ba005d08e 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1964,7 +1964,6 @@ extern int vfs_stat_fd(int dfd, char __user *, struct kstat *); 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); |