summaryrefslogtreecommitdiffstats
path: root/fs/orangefs/namei.c
diff options
context:
space:
mode:
authorMartin Brandenburg <martin@omnibond.com>2016-02-20 14:47:13 -0500
committerMike Marshall <hubcap@omnibond.com>2016-02-24 17:07:51 -0500
commit6ceaf7818f266d917ed61338885ddd2b77008f06 (patch)
treee1927de07e24d80c1e6551ac7cf932c25e3bac3e /fs/orangefs/namei.c
parent9c2bcf288ed7f600bc3f8e7541ea0522a8912bae (diff)
downloadlinux-0-day-6ceaf7818f266d917ed61338885ddd2b77008f06.tar.gz
linux-0-day-6ceaf7818f266d917ed61338885ddd2b77008f06.tar.xz
orangefs: we never lookup with sym_follow set
Signed-off-by: Martin Brandenburg <martin@omnibond.com> Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs/namei.c')
-rw-r--r--fs/orangefs/namei.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/orangefs/namei.c b/fs/orangefs/namei.c
index f26f6694c48d5..650ff299738bc 100644
--- a/fs/orangefs/namei.c
+++ b/fs/orangefs/namei.c
@@ -136,13 +136,11 @@ static struct dentry *orangefs_lookup(struct inode *dir, struct dentry *dentry,
ORANGEFS_NAME_MAX);
gossip_debug(GOSSIP_NAME_DEBUG,
- "%s: doing lookup on %s under %pU,%d (follow=%s)\n",
+ "%s: doing lookup on %s under %pU,%d\n",
__func__,
new_op->upcall.req.lookup.d_name,
&new_op->upcall.req.lookup.parent_refn.khandle,
- new_op->upcall.req.lookup.parent_refn.fs_id,
- ((new_op->upcall.req.lookup.sym_follow ==
- ORANGEFS_LOOKUP_LINK_FOLLOW) ? "yes" : "no"));
+ new_op->upcall.req.lookup.parent_refn.fs_id);
ret = service_operation(new_op, __func__, get_interruptible_flag(dir));