diff options
author | Mark Fasheh <mfasheh@suse.com> | 2008-10-07 17:31:42 -0400 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2008-10-13 20:02:44 -0400 |
commit | 40daa16a3441abe822bfcc748150116a77aee2ea (patch) | |
tree | 218d2966a03e9ed1afd3ae2945389f781fa229ce /fs/ocfs2 | |
parent | a81cb88b64a479b78c6dd5666678d50171865db8 (diff) |
ocfs2: Uninline ocfs2_xattr_name_hash()
This is too big to be inlined.
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r-- | fs/ocfs2/xattr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/ocfs2/xattr.c b/fs/ocfs2/xattr.c index 64700c3fc244..e21a1a8b4257 100644 --- a/fs/ocfs2/xattr.c +++ b/fs/ocfs2/xattr.c | |||
@@ -144,11 +144,11 @@ static inline struct xattr_handler *ocfs2_xattr_handler(int name_index) | |||
144 | return handler; | 144 | return handler; |
145 | } | 145 | } |
146 | 146 | ||
147 | static inline u32 ocfs2_xattr_name_hash(struct inode *inode, | 147 | static u32 ocfs2_xattr_name_hash(struct inode *inode, |
148 | char *prefix, | 148 | char *prefix, |
149 | int prefix_len, | 149 | int prefix_len, |
150 | char *name, | 150 | char *name, |
151 | int name_len) | 151 | int name_len) |
152 | { | 152 | { |
153 | /* Get hash value of uuid from super block */ | 153 | /* Get hash value of uuid from super block */ |
154 | u32 hash = OCFS2_SB(inode->i_sb)->uuid_hash; | 154 | u32 hash = OCFS2_SB(inode->i_sb)->uuid_hash; |