diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-28 02:16:06 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 08:58:44 -0700 |
commit | 15633005e07883b57c6c7ca539c32148c3a7f588 (patch) | |
tree | f5869b9f5378c2eeefa3453da3eb2832013794f8 /fs/ext3/xattr.h | |
parent | e7f23ebdef879226817ce94ae6e298afc8cd093d (diff) | |
download | linux-3.10-15633005e07883b57c6c7ca539c32148c3a7f588.tar.gz linux-3.10-15633005e07883b57c6c7ca539c32148c3a7f588.tar.bz2 linux-3.10-15633005e07883b57c6c7ca539c32148c3a7f588.zip |
make ext3_xattr_list() static
Make the needlessly global ext3_xattr_list() static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ext3/xattr.h')
-rw-r--r-- | fs/ext3/xattr.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/fs/ext3/xattr.h b/fs/ext3/xattr.h index 6b1ae1c6182..148a4dfc82a 100644 --- a/fs/ext3/xattr.h +++ b/fs/ext3/xattr.h @@ -67,7 +67,6 @@ extern struct xattr_handler ext3_xattr_security_handler; extern ssize_t ext3_listxattr(struct dentry *, char *, size_t); extern int ext3_xattr_get(struct inode *, int, const char *, void *, size_t); -extern int ext3_xattr_list(struct inode *, char *, size_t); extern int ext3_xattr_set(struct inode *, int, const char *, const void *, size_t, int); extern int ext3_xattr_set_handle(handle_t *, struct inode *, int, const char *, const void *, size_t, int); @@ -89,12 +88,6 @@ ext3_xattr_get(struct inode *inode, int name_index, const char *name, } static inline int -ext3_xattr_list(struct inode *inode, void *buffer, size_t size) -{ - return -EOPNOTSUPP; -} - -static inline int ext3_xattr_set(struct inode *inode, int name_index, const char *name, const void *value, size_t size, int flags) { |