patch-2.2.0-final linux/fs/namei.c
Next file: linux/fs/nfsd/nfscache.c
Previous file: linux/fs/inode.c
Back to the patch index
Back to the overall index
- Lines: 23
- Date:
Sun Jan 24 21:48:39 1999
- Orig file:
v2.2.0-pre9/linux/fs/namei.c
- Orig date:
Wed Jan 20 23:14:06 1999
diff -u --recursive --new-file v2.2.0-pre9/linux/fs/namei.c linux/fs/namei.c
@@ -678,9 +678,12 @@
if (flag & O_CREAT) {
struct dentry *dir;
- error = -EEXIST;
- if (dentry->d_inode && (flag & O_EXCL))
+ if (dentry->d_inode) {
+ if (!(flag & O_EXCL))
+ goto nocreate;
+ error = -EEXIST;
goto exit;
+ }
dir = lock_parent(dentry);
if (!check_parent(dir, dentry)) {
@@ -723,6 +726,7 @@
goto exit;
}
+nocreate:
error = -ENOENT;
inode = dentry->d_inode;
if (!inode)
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov