Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'for-3.11' of git://linux-nfs.org/~bfields/linux

Pull nfsd fix from Bruce Fields:
"One more nfsd bugfix for 3.11"

* 'for-3.11' of git://linux-nfs.org/~bfields/linux:
nfsd: nfsd_open: when dentry_open returns an error do not propagate as struct file

+3 -2
+3 -2
fs/nfsd/vfs.c
··· 830 830 flags = O_WRONLY|O_LARGEFILE; 831 831 } 832 832 *filp = dentry_open(&path, flags, current_cred()); 833 - if (IS_ERR(*filp)) 833 + if (IS_ERR(*filp)) { 834 834 host_err = PTR_ERR(*filp); 835 - else { 835 + *filp = NULL; 836 + } else { 836 837 host_err = ima_file_check(*filp, may_flags); 837 838 838 839 if (may_flags & NFSD_MAY_64BIT_COOKIE)