Commit b8314f93 authored by Daeseok Youn's avatar Daeseok Youn Committed by Al Viro

dcache: Fix no spaces at the start of a line in dcache.c

Fixed coding style in dcache.c
Signed-off-by: default avatarDaeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 99358a1c
...@@ -2093,10 +2093,10 @@ struct dentry *d_lookup(const struct dentry *parent, const struct qstr *name) ...@@ -2093,10 +2093,10 @@ struct dentry *d_lookup(const struct dentry *parent, const struct qstr *name)
struct dentry *dentry; struct dentry *dentry;
unsigned seq; unsigned seq;
do { do {
seq = read_seqbegin(&rename_lock); seq = read_seqbegin(&rename_lock);
dentry = __d_lookup(parent, name); dentry = __d_lookup(parent, name);
if (dentry) if (dentry)
break; break;
} while (read_seqretry(&rename_lock, seq)); } while (read_seqretry(&rename_lock, seq));
return dentry; return dentry;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment