linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [2.6 patch] unexport vfs_{,f,l}stat
@ 2008-04-23  9:52 Adrian Bunk
  2008-04-23 10:50 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Adrian Bunk @ 2008-04-23  9:52 UTC (permalink / raw)
  To: David S. Miller, viro; +Cc: linux-fsdevel

With the removal of the Solaris binary emulation the exports of 
vfs_{,f,l}stat became unused.

Signed-off-by: Adrian Bunk <bunk@kernel.org>

---

 fs/stat.c |    6 ------
 1 file changed, 6 deletions(-)

857d5d30618857faae40a965310f22a53add6155 diff --git a/fs/stat.c b/fs/stat.c
index 9cf41f7..5c8f0ec 100644
--- a/fs/stat.c
+++ b/fs/stat.c
@@ -73,8 +73,6 @@ int vfs_stat(char __user *name, struct kstat *stat)
 	return vfs_stat_fd(AT_FDCWD, name, stat);
 }
 
-EXPORT_SYMBOL(vfs_stat);
-
 int vfs_lstat_fd(int dfd, char __user *name, struct kstat *stat)
 {
 	struct nameidata nd;
@@ -93,8 +91,6 @@ int vfs_lstat(char __user *name, struct kstat *stat)
 	return vfs_lstat_fd(AT_FDCWD, name, stat);
 }
 
-EXPORT_SYMBOL(vfs_lstat);
-
 int vfs_fstat(unsigned int fd, struct kstat *stat)
 {
 	struct file *f = fget(fd);
@@ -107,8 +103,6 @@ int vfs_fstat(unsigned int fd, struct kstat *stat)
 	return error;
 }
 
-EXPORT_SYMBOL(vfs_fstat);
-
 #ifdef __ARCH_WANT_OLD_STAT
 
 /*


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-04-23 10:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-23  9:52 [2.6 patch] unexport vfs_{,f,l}stat Adrian Bunk
2008-04-23 10:50 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).