diff options
author | Mingming Cao <cmm@us.ibm.com> | 2008-04-17 18:38:59 +0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2008-04-17 18:38:59 +0400 |
commit | d3a95d477d4fcb2c276b8357087a6c862c9e1949 (patch) | |
tree | 911bdfb70aa0a8677f98a5643edcc4a98812dfac /fs/ext4/xattr.c | |
parent | 14499f3592f3f52ceb7a639466de9ca21e2c1914 (diff) | |
download | linux-d3a95d477d4fcb2c276b8357087a6c862c9e1949.tar.xz |
ext4: make ext4_xattr_list() static
This patch makes the needlessly global ext4_xattr_list() static.
Signed-off-by: Mingming Cao <cmm@us.ibm.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/xattr.c')
-rw-r--r-- | fs/ext4/xattr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/ext4/xattr.c b/fs/ext4/xattr.c index bc1d7daac8eb..739930427b8a 100644 --- a/fs/ext4/xattr.c +++ b/fs/ext4/xattr.c @@ -92,6 +92,8 @@ static struct buffer_head *ext4_xattr_cache_find(struct inode *, struct mb_cache_entry **); static void ext4_xattr_rehash(struct ext4_xattr_header *, struct ext4_xattr_entry *); +static int ext4_xattr_list(struct inode *inode, char *buffer, + size_t buffer_size); static struct mb_cache *ext4_xattr_cache; @@ -420,7 +422,7 @@ cleanup: * Returns a negative error number on failure, or the number of bytes * used / required on success. */ -int +static int ext4_xattr_list(struct inode *inode, char *buffer, size_t buffer_size) { int i_error, b_error; |