projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
99358a1
)
dcache: Fix no spaces at the start of a line in dcache.c
author
Daeseok Youn
<daeseok.youn@gmail.com>
Mon, 11 Aug 2014 02:46:53 +0000
(11:46 +0900)
committer
Al Viro
<viro@zeniv.linux.org.uk>
Thu, 9 Oct 2014 06:39:02 +0000
(
02:39
-0400)
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>
fs/dcache.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/dcache.c
b/fs/dcache.c
index 21eee4c08e76e790694723f63e5e745e64589ba3..8221faae0bef04e8f5703a77cd2a478661729f3f 100644
(file)
--- 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;