aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext2/xattr.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2004-10-27 18:29:50 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-10-27 18:29:50 -0700
commit33cf541454c1f1ff846d1dbe341fdf3202b786ad (patch)
tree7f8f273d6df6cefc59fa2dec9dea27ee2db69093 /fs/ext2/xattr.c
parenta9d4d793ff99c59b2d8ff941e8a134ec30af60cd (diff)
downloadhistory-33cf541454c1f1ff846d1dbe341fdf3202b786ad.tar.gz
[PATCH] remove ext2 xatts exports
I think Andreas exported them to allow modular xattr handlers, but with James rework these aren't possible anymore, and we never had them anyway. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/ext2/xattr.c')
-rw-r--r--fs/ext2/xattr.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/ext2/xattr.c b/fs/ext2/xattr.c
index fffddd16b06437..837104e32d314a 100644
--- a/fs/ext2/xattr.c
+++ b/fs/ext2/xattr.c
@@ -64,11 +64,6 @@
#include "xattr.h"
#include "acl.h"
-/* These symbols may be needed by a module. */
-EXPORT_SYMBOL(ext2_xattr_get);
-EXPORT_SYMBOL(ext2_xattr_list);
-EXPORT_SYMBOL(ext2_xattr_set);
-
#define HDR(bh) ((struct ext2_xattr_header *)((bh)->b_data))
#define ENTRY(ptr) ((struct ext2_xattr_entry *)(ptr))
#define FIRST_ENTRY(bh) ENTRY(HDR(bh)+1)