diff options
author | Arjan van de Ven <arjan@linux.intel.com> | 2008-02-08 04:20:55 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 09:22:36 -0800 |
commit | 3287629eff75c7323e875b942be82f7ac6ca18da (patch) | |
tree | 4c8ebbff98b3e7139acf939bf4bfb56f711281ca /fs/open.c | |
parent | c2fdda0dfbe85ad5d68d4799ff7c5af89db8ac19 (diff) | |
download | linux-3.10-3287629eff75c7323e875b942be82f7ac6ca18da.tar.gz linux-3.10-3287629eff75c7323e875b942be82f7ac6ca18da.tar.bz2 linux-3.10-3287629eff75c7323e875b942be82f7ac6ca18da.zip |
remove the unused exports of sys_open/sys_read
These exports (which aren't used and which are in fact dangerous to use
because they pretty much form a security hole to use) have been marked
_UNUSED since 2.6.24 with removal in 2.6.25. This patch is their final
departure from the Linux kernel tree.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/open.c')
-rw-r--r-- | fs/open.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/open.c b/fs/open.c index 4b389dfbd5c..43fcd603196 100644 --- a/fs/open.c +++ b/fs/open.c @@ -1061,7 +1061,6 @@ asmlinkage long sys_open(const char __user *filename, int flags, int mode) prevent_tail_call(ret); return ret; } -EXPORT_UNUSED_SYMBOL_GPL(sys_open); /* To be deleted for 2.6.25 */ asmlinkage long sys_openat(int dfd, const char __user *filename, int flags, int mode) |