summaryrefslogtreecommitdiffstats
path: root/fs/dcache.c
diff options
context:
space:
mode:
authorDaeseok Youn <daeseok.youn@gmail.com>2014-08-11 11:46:53 +0900
committerAl Viro <viro@zeniv.linux.org.uk>2014-10-09 02:39:02 -0400
commitb8314f9303a985354f445763960c0db2d7948891 (patch)
tree218e077fd5cd25f26bdee7175ee77dc9a7e73b45 /fs/dcache.c
parent99358a1ca53e8e6ce09423500191396f0e6584d2 (diff)
downloadop-kernel-dev-b8314f9303a985354f445763960c0db2d7948891.zip
op-kernel-dev-b8314f9303a985354f445763960c0db2d7948891.tar.gz
dcache: Fix no spaces at the start of a line in dcache.c
Fixed coding style in dcache.c Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/dcache.c')
-rw-r--r--fs/dcache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/dcache.c b/fs/dcache.c
index 21eee4c..8221faae 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -2093,10 +2093,10 @@ struct dentry *d_lookup(const struct dentry *parent, const struct qstr *name)
struct dentry *dentry;
unsigned seq;
- do {
- seq = read_seqbegin(&rename_lock);
- dentry = __d_lookup(parent, name);
- if (dentry)
+ do {
+ seq = read_seqbegin(&rename_lock);
+ dentry = __d_lookup(parent, name);
+ if (dentry)
break;
} while (read_seqretry(&rename_lock, seq));
return dentry;
OpenPOWER on IntegriCloud