Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 250426
b: refs/heads/master
c: 14ffd5d
h: refs/heads/master
v: v3
  • Loading branch information
Sedat Dilek authored and Artem Bityutskiy committed May 13, 2011
1 parent b729c20 commit 84010a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cdd8ad6e9e78b295e71265762926342523579d10
refs/heads/master: 14ffd5d0b051b0b937df0cf3580a92f428ff70b1
8 changes: 4 additions & 4 deletions trunk/fs/ubifs/xattr.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ enum {
SECURITY_XATTR,
};

static const struct inode_operations none_inode_operations;
static const struct file_operations none_file_operations;
static const struct inode_operations empty_iops;
static const struct file_operations empty_fops;

/**
* create_xattr - create an extended attribute.
Expand Down Expand Up @@ -131,8 +131,8 @@ static int create_xattr(struct ubifs_info *c, struct inode *host,

/* Re-define all operations to be "nothing" */
inode->i_mapping->a_ops = &empty_aops;
inode->i_op = &none_inode_operations;
inode->i_fop = &none_file_operations;
inode->i_op = &empty_iops;
inode->i_fop = &empty_fops;

inode->i_flags |= S_SYNC | S_NOATIME | S_NOCMTIME | S_NOQUOTA;
ui = ubifs_inode(inode);
Expand Down

0 comments on commit 84010a9

Please sign in to comment.