From: Daeseok Youn Date: Mon, 11 Aug 2014 02:46:53 +0000 (+0900) Subject: dcache: Fix no spaces at the start of a line in dcache.c X-Git-Tag: v3.18-rc1~76^2~37 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b8314f9303a985354f445763960c0db2d7948891;p=karo-tx-linux.git dcache: Fix no spaces at the start of a line in dcache.c Fixed coding style in dcache.c Signed-off-by: Daeseok Youn Signed-off-by: Al Viro --- 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;