From: Mark Fasheh Date: Tue, 7 Oct 2008 21:31:42 +0000 (-0700) Subject: ocfs2: Uninline ocfs2_xattr_name_hash() X-Git-Tag: v2.6.28-rc1~572^2~9 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=40daa16a3441abe822bfcc748150116a77aee2ea;p=linux-2.6-omap-h63xx.git ocfs2: Uninline ocfs2_xattr_name_hash() This is too big to be inlined. Signed-off-by: Mark Fasheh --- diff --git a/fs/ocfs2/xattr.c b/fs/ocfs2/xattr.c index 64700c3fc24..e21a1a8b425 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) 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;