diff options
Diffstat (limited to 'fs/pipe.c')
| -rw-r--r-- | fs/pipe.c | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/fs/pipe.c b/fs/pipe.c index 45077c37bad1..731622d0738d 100644 --- a/fs/pipe.c +++ b/fs/pipe.c @@ -963,6 +963,11 @@ int create_pipe_files(struct file **res, int flags)  	res[1] = f;  	stream_open(inode, res[0]);  	stream_open(inode, res[1]); + +	/* pipe groks IOCB_NOWAIT */ +	res[0]->f_mode |= FMODE_NOWAIT; +	res[1]->f_mode |= FMODE_NOWAIT; +  	/*  	 * Disable permission and pre-content events, but enable legacy  	 * inotify events for legacy users. @@ -997,9 +1002,6 @@ static int __do_pipe_flags(int *fd, struct file **files, int flags)  	audit_fd_pair(fdr, fdw);  	fd[0] = fdr;  	fd[1] = fdw; -	/* pipe groks IOCB_NOWAIT */ -	files[0]->f_mode |= FMODE_NOWAIT; -	files[1]->f_mode |= FMODE_NOWAIT;  	return 0;   err_fdr: | 
