diff options
| author | Jeff Layton <jlayton@redhat.com> | 2012-12-11 12:10:06 -0500 |
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-12-20 18:50:02 -0500 |
| commit | 1ac12b4b6d707937f9de6d09622823b2fd0c93ef (patch) | |
| tree | 7ac3f66abfcce206615abe9effd9e55f26c117a9 /arch/powerpc | |
| parent | 7955119e02d9fdf78a39fba8073f19ca6152613e (diff) | |
vfs: turn is_dir argument to kern_path_create into a lookup_flags arg
Where we can pass in LOOKUP_DIRECTORY or LOOKUP_REVAL. Any other flags
passed in here are currently ignored.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/powerpc')
| -rw-r--r-- | arch/powerpc/platforms/cell/spufs/syscalls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/cell/spufs/syscalls.c b/arch/powerpc/platforms/cell/spufs/syscalls.c index 5b7d8ffbf89..baee994fe81 100644 --- a/arch/powerpc/platforms/cell/spufs/syscalls.c +++ b/arch/powerpc/platforms/cell/spufs/syscalls.c | |||
| @@ -66,7 +66,7 @@ static long do_spu_create(const char __user *pathname, unsigned int flags, | |||
| 66 | struct dentry *dentry; | 66 | struct dentry *dentry; |
| 67 | int ret; | 67 | int ret; |
| 68 | 68 | ||
| 69 | dentry = user_path_create(AT_FDCWD, pathname, &path, 1); | 69 | dentry = user_path_create(AT_FDCWD, pathname, &path, LOOKUP_DIRECTORY); |
| 70 | ret = PTR_ERR(dentry); | 70 | ret = PTR_ERR(dentry); |
| 71 | if (!IS_ERR(dentry)) { | 71 | if (!IS_ERR(dentry)) { |
| 72 | ret = spufs_create(&path, dentry, flags, mode, neighbor); | 72 | ret = spufs_create(&path, dentry, flags, mode, neighbor); |
