Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 223357
b: refs/heads/master
c: fa218ab
h: refs/heads/master
i:
  223355: c8e8b81
v: v3
  • Loading branch information
Lino Sanfilippo authored and Eric Paris committed Dec 7, 2010
1 parent 10aee87 commit 3b164fa
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 18 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: b1085ba80cd2784400a7beec3fda5099198ed01c
refs/heads/master: fa218ab98c31eeacd12b89501e6b99d146ea56cc
31 changes: 14 additions & 17 deletions trunk/fs/notify/fanotify/fanotify_user.c
Original file line number Diff line number Diff line change
Expand Up @@ -594,11 +594,10 @@ static int fanotify_add_vfsmount_mark(struct fsnotify_group *group,
{
struct fsnotify_mark *fsn_mark;
__u32 added;
int ret = 0;

fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
if (!fsn_mark) {
int ret;

if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks)
return -ENOSPC;

Expand All @@ -608,17 +607,16 @@ static int fanotify_add_vfsmount_mark(struct fsnotify_group *group,

fsnotify_init_mark(fsn_mark, fanotify_free_mark);
ret = fsnotify_add_mark(fsn_mark, group, NULL, mnt, 0);
if (ret) {
fanotify_free_mark(fsn_mark);
return ret;
}
if (ret)
goto err;
}
added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
fsnotify_put_mark(fsn_mark);

if (added & ~mnt->mnt_fsnotify_mask)
fsnotify_recalc_vfsmount_mask(mnt);

return 0;
err:
fsnotify_put_mark(fsn_mark);
return ret;
}

static int fanotify_add_inode_mark(struct fsnotify_group *group,
Expand All @@ -627,6 +625,7 @@ static int fanotify_add_inode_mark(struct fsnotify_group *group,
{
struct fsnotify_mark *fsn_mark;
__u32 added;
int ret = 0;

pr_debug("%s: group=%p inode=%p\n", __func__, group, inode);

Expand All @@ -642,8 +641,6 @@ static int fanotify_add_inode_mark(struct fsnotify_group *group,

fsn_mark = fsnotify_find_inode_mark(group, inode);
if (!fsn_mark) {
int ret;

if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks)
return -ENOSPC;

Expand All @@ -653,16 +650,16 @@ static int fanotify_add_inode_mark(struct fsnotify_group *group,

fsnotify_init_mark(fsn_mark, fanotify_free_mark);
ret = fsnotify_add_mark(fsn_mark, group, inode, NULL, 0);
if (ret) {
fanotify_free_mark(fsn_mark);
return ret;
}
if (ret)
goto err;
}
added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
fsnotify_put_mark(fsn_mark);

if (added & ~inode->i_fsnotify_mask)
fsnotify_recalc_inode_mask(inode);
return 0;
err:
fsnotify_put_mark(fsn_mark);
return ret;
}

/* fanotify syscalls */
Expand Down

0 comments on commit 3b164fa

Please sign in to comment.