Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 5034
b: refs/heads/master
c: d25cb93
h: refs/heads/master
v: v3
  • Loading branch information
Robert Love authored and Linus Torvalds committed Jul 26, 2005
1 parent 72c89d2 commit 215215d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 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: e5ca844a9d795e97c08bc7901c62a48c28469eb0
refs/heads/master: d25cb934b00436e2243bf3970793b8e04ad9b873
5 changes: 4 additions & 1 deletion trunk/arch/x86_64/ia32/sys_ia32.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
#include <linux/ptrace.h>
#include <linux/highuid.h>
#include <linux/vmalloc.h>
#include <linux/fsnotify.>
#include <asm/mman.h>
#include <asm/types.h>
#include <asm/uaccess.h>
Expand Down Expand Up @@ -984,8 +985,10 @@ asmlinkage long sys32_open(const char __user * filename, int flags, int mode)
if (IS_ERR(f)) {
put_unused_fd(fd);
fd = error;
} else
} else {
fsnotify_open(f->f_dentry);
fd_install(fd, f);
}
}
putname(tmp);
}
Expand Down

0 comments on commit 215215d

Please sign in to comment.