diff options
author | Daeseok Youn <daeseok.youn@gmail.com> | 2014-08-11 11:46:53 +0900 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-10-09 02:39:02 -0400 |
commit | b8314f9303a985354f445763960c0db2d7948891 (patch) | |
tree | 218e077fd5cd25f26bdee7175ee77dc9a7e73b45 /fs/dcache.c | |
parent | 99358a1ca53e8e6ce09423500191396f0e6584d2 (diff) | |
download | linux-b8314f9303a985354f445763960c0db2d7948891.tar.bz2 |
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.c | 8 |
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) 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; |