summaryrefslogtreecommitdiff
path: root/fs/ext4/xattr_user.c
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2008-07-03 13:43:33 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2008-07-03 13:43:33 +1000
commit4cb3414a9690309e5c1bfccc513b5d4094ee04a5 (patch)
tree049e96993312d4d0aa152da47203f689554e8562 /fs/ext4/xattr_user.c
parent5c3daca22cd84788dad3772fd44ba6820f756ba5 (diff)
parentfb888d4801bca5b10eb18dd3ab475c6762cebd82 (diff)
Merge commit 'ext4/next'
Diffstat (limited to 'fs/ext4/xattr_user.c')
-rw-r--r--fs/ext4/xattr_user.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/ext4/xattr_user.c b/fs/ext4/xattr_user.c
index 67be723fcc4e..d91aa61b42aa 100644
--- a/fs/ext4/xattr_user.c
+++ b/fs/ext4/xattr_user.c
@@ -12,13 +12,11 @@
#include "ext4.h"
#include "xattr.h"
-#define XATTR_USER_PREFIX "user."
-
static size_t
ext4_xattr_user_list(struct inode *inode, char *list, size_t list_size,
const char *name, size_t name_len)
{
- const size_t prefix_len = sizeof(XATTR_USER_PREFIX)-1;
+ const size_t prefix_len = XATTR_USER_PREFIX_LEN;
const size_t total_len = prefix_len + name_len + 1;
if (!test_opt(inode->i_sb, XATTR_USER))