Skip to content

Commit

Permalink
ocfs2: Uninline ocfs2_xattr_name_hash()
Browse files Browse the repository at this point in the history
This is too big to be inlined.

Signed-off-by: Mark Fasheh <mfasheh@suse.com>
  • Loading branch information
Mark Fasheh committed Oct 14, 2008
1 parent a81cb88 commit 40daa16
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions fs/ocfs2/xattr.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,11 @@ static inline struct xattr_handler *ocfs2_xattr_handler(int name_index)
return handler;
}

static inline u32 ocfs2_xattr_name_hash(struct inode *inode,
char *prefix,
int prefix_len,
char *name,
int name_len)
static u32 ocfs2_xattr_name_hash(struct inode *inode,
char *prefix,
int prefix_len,
char *name,
int name_len)
{
/* Get hash value of uuid from super block */
u32 hash = OCFS2_SB(inode->i_sb)->uuid_hash;
Expand Down

0 comments on commit 40daa16

Please sign in to comment.