summaryrefslogtreecommitdiffstats
path: root/fs/dcache.c
diff options
context:
space:
mode:
authorDaeseok Youn <daeseok.youn@gmail.com>2014-08-10 22:46:53 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2014-10-09 02:39:02 -0400
commitb8314f9303a985354f445763960c0db2d7948891 (patch)
tree218e077fd5cd25f26bdee7175ee77dc9a7e73b45 /fs/dcache.c
parent99358a1ca53e8e6ce09423500191396f0e6584d2 (diff)
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 21eee4c08e76..8221faae0bef 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)
2093 struct dentry *dentry; 2093 struct dentry *dentry;
2094 unsigned seq; 2094 unsigned seq;
2095 2095
2096 do { 2096 do {
2097 seq = read_seqbegin(&rename_lock); 2097 seq = read_seqbegin(&rename_lock);
2098 dentry = __d_lookup(parent, name); 2098 dentry = __d_lookup(parent, name);
2099 if (dentry) 2099 if (dentry)
2100 break; 2100 break;
2101 } while (read_seqretry(&rename_lock, seq)); 2101 } while (read_seqretry(&rename_lock, seq));
2102 return dentry; 2102 return dentry;