summaryrefslogtreecommitdiffstats
path: root/fs/reiserfs
diff options
context:
space:
mode:
authorJeff Mahoney <jeffm@suse.com>2009-03-30 16:49:58 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-03-30 14:28:58 -0700
commit3a355cc61d41bc31cc23a57247df63dba80a6018 (patch)
treecf39d0b861fa8a33b748a95f3c86bbb33d9c2dac /fs/reiserfs
parent77e465867080c2d1e0c410e96dcdcd51e8584a6f (diff)
downloadlinux-0-day-3a355cc61d41bc31cc23a57247df63dba80a6018.tar.gz
linux-0-day-3a355cc61d41bc31cc23a57247df63dba80a6018.tar.xz
reiserfs: xattr_create is unused with xattrs disabled
This patch ifdefs xattr_create when xattrs aren't enabled. Signed-off-by: Jeff Mahoney <jeffm@suse.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/reiserfs')
-rw-r--r--fs/reiserfs/xattr.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/reiserfs/xattr.c b/fs/reiserfs/xattr.c
index e52743e770006..f83f52bae390f 100644
--- a/fs/reiserfs/xattr.c
+++ b/fs/reiserfs/xattr.c
@@ -57,12 +57,14 @@
/* Helpers for inode ops. We do this so that we don't have all the VFS
* overhead and also for proper i_mutex annotation.
* dir->i_mutex must be held for all of them. */
+#ifdef CONFIG_REISERFS_FS_XATTR
static int xattr_create(struct inode *dir, struct dentry *dentry, int mode)
{
BUG_ON(!mutex_is_locked(&dir->i_mutex));
vfs_dq_init(dir);
return dir->i_op->create(dir, dentry, mode, NULL);
}
+#endif
static int xattr_mkdir(struct inode *dir, struct dentry *dentry, int mode)
{