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>
This commit is contained in:
parent
77e4658670
commit
3a355cc61d
@ -57,12 +57,14 @@
|
|||||||
/* Helpers for inode ops. We do this so that we don't have all the VFS
|
/* Helpers for inode ops. We do this so that we don't have all the VFS
|
||||||
* overhead and also for proper i_mutex annotation.
|
* overhead and also for proper i_mutex annotation.
|
||||||
* dir->i_mutex must be held for all of them. */
|
* 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)
|
static int xattr_create(struct inode *dir, struct dentry *dentry, int mode)
|
||||||
{
|
{
|
||||||
BUG_ON(!mutex_is_locked(&dir->i_mutex));
|
BUG_ON(!mutex_is_locked(&dir->i_mutex));
|
||||||
vfs_dq_init(dir);
|
vfs_dq_init(dir);
|
||||||
return dir->i_op->create(dir, dentry, mode, NULL);
|
return dir->i_op->create(dir, dentry, mode, NULL);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static int xattr_mkdir(struct inode *dir, struct dentry *dentry, int mode)
|
static int xattr_mkdir(struct inode *dir, struct dentry *dentry, int mode)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user