summaryrefslogtreecommitdiffstats
path: root/fs/namei.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2011-06-23 12:35:50 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2011-07-20 01:43:49 -0400
commit554a8b9f54cd7ca2b89f5dc227df08be082fae0d (patch)
treed8188a1503e744fa64dbabe6e585065e5234683b /fs/namei.c
parentf7c85868fcacc331dd3454a4f08f006d7942521f (diff)
downloadop-kernel-dev-554a8b9f54cd7ca2b89f5dc227df08be082fae0d.zip
op-kernel-dev-554a8b9f54cd7ca2b89f5dc227df08be082fae0d.tar.gz
Don't pass nameidata when calling vfs_create() from mknod()
All instances can cope with that now (and ceph one actually starts working properly). Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/namei.c')
-rw-r--r--fs/namei.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/namei.c b/fs/namei.c
index 42ccb97..94fd0fa 100644
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -2411,7 +2411,7 @@ SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
goto out_drop_write;
switch (mode & S_IFMT) {
case 0: case S_IFREG:
- error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
+ error = vfs_create(nd.path.dentry->d_inode,dentry,mode,NULL);
break;
case S_IFCHR: case S_IFBLK:
error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
OpenPOWER on IntegriCloud