Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 277093
b: refs/heads/master
c: 30e0532
h: refs/heads/master
i:
  277091: 25639a7
v: v3
  • Loading branch information
Jan Kara authored and Linus Torvalds committed Jan 4, 2012
1 parent 869a68f commit 32cb760
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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: 4376eee92e5a8332b470040e672ea99cd44c826a
refs/heads/master: 30e053248da178cf6154bb7e950dc8713567e3fa
2 changes: 1 addition & 1 deletion trunk/include/linux/security.h
Original file line number Diff line number Diff line change
Expand Up @@ -2056,7 +2056,7 @@ static inline int security_old_inode_init_security(struct inode *inode,
char **name, void **value,
size_t *len)
{
return 0;
return -EOPNOTSUPP;
}

static inline int security_inode_create(struct inode *dir,
Expand Down
2 changes: 1 addition & 1 deletion trunk/security/security.c
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ int security_old_inode_init_security(struct inode *inode, struct inode *dir,
void **value, size_t *len)
{
if (unlikely(IS_PRIVATE(inode)))
return 0;
return -EOPNOTSUPP;
return security_ops->inode_init_security(inode, dir, qstr, name, value,
len);
}
Expand Down

0 comments on commit 32cb760

Please sign in to comment.