diff options
| author | Olof Johansson <olof@lixom.net> | 2012-09-05 15:35:48 -0700 | 
|---|---|---|
| committer | Olof Johansson <olof@lixom.net> | 2012-09-05 15:35:48 -0700 | 
| commit | 1875962377574b4edb7b164001e3e341c25290d5 (patch) | |
| tree | 374a5299403ec21e2d9a66a6548ce876a388b589 /fs/open.c | |
| parent | 5cbee140a28c2746449ae31e85738043ae4da927 (diff) | |
| parent | c88a79a7789b2909ad1cf69ea2c9142030bbd6f4 (diff) | |
| download | olio-linux-3.10-1875962377574b4edb7b164001e3e341c25290d5.tar.xz olio-linux-3.10-1875962377574b4edb7b164001e3e341c25290d5.zip  | |
Merge branch 'soc-core' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas into next/dt
* 'soc-core' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas:
  ARM: mach-shmobile: Add compilation support for dtbs using 'make dtbs'
  + sync to 3.6-rc3
Diffstat (limited to 'fs/open.c')
| -rw-r--r-- | fs/open.c | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/fs/open.c b/fs/open.c index f3d96e7e7b1..e1f2cdb91a4 100644 --- a/fs/open.c +++ b/fs/open.c @@ -717,7 +717,7 @@ cleanup_all:  			 * here, so just reset the state.  			 */  			file_reset_write(f); -			mnt_drop_write(f->f_path.mnt); +			__mnt_drop_write(f->f_path.mnt);  		}  	}  cleanup_file: @@ -852,9 +852,10 @@ static inline int build_open_flags(int flags, umode_t mode, struct open_flags *o  	int lookup_flags = 0;  	int acc_mode; -	if (!(flags & O_CREAT)) -		mode = 0; -	op->mode = mode; +	if (flags & O_CREAT) +		op->mode = (mode & S_IALLUGO) | S_IFREG; +	else +		op->mode = 0;  	/* Must never be set by userspace */  	flags &= ~FMODE_NONOTIFY;  |