mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-10-04 16:49:17 +00:00
UBIFS: make xattr operations names consistent
This is just a tiny clean-up patch. The variable name for empty address space operations is "empty_aops". Let's use consistent names for empty inode and file operations: "empty_iops" and "empty_fops", instead of inconsistent "none_inode_operations" and "none_file_operations". Artem: re-write the commit message. Signed-off-by: Sedat Dilek <sedat.dilek@gmail.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
This commit is contained in:
parent
cdd8ad6e9e
commit
14ffd5d0b0
@ -80,8 +80,8 @@ enum {
|
|||||||
SECURITY_XATTR,
|
SECURITY_XATTR,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct inode_operations none_inode_operations;
|
static const struct inode_operations empty_iops;
|
||||||
static const struct file_operations none_file_operations;
|
static const struct file_operations empty_fops;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* create_xattr - create an extended attribute.
|
* create_xattr - create an extended attribute.
|
||||||
@ -131,8 +131,8 @@ static int create_xattr(struct ubifs_info *c, struct inode *host,
|
|||||||
|
|
||||||
/* Re-define all operations to be "nothing" */
|
/* Re-define all operations to be "nothing" */
|
||||||
inode->i_mapping->a_ops = &empty_aops;
|
inode->i_mapping->a_ops = &empty_aops;
|
||||||
inode->i_op = &none_inode_operations;
|
inode->i_op = &empty_iops;
|
||||||
inode->i_fop = &none_file_operations;
|
inode->i_fop = &empty_fops;
|
||||||
|
|
||||||
inode->i_flags |= S_SYNC | S_NOATIME | S_NOCMTIME | S_NOQUOTA;
|
inode->i_flags |= S_SYNC | S_NOATIME | S_NOCMTIME | S_NOQUOTA;
|
||||||
ui = ubifs_inode(inode);
|
ui = ubifs_inode(inode);
|
||||||
|
Loading…
Reference in New Issue
Block a user