projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f21501
)
ovl: fix warning
author
Miklos Szeredi
<mszeredi@redhat.com>
Fri, 29 Jul 2016 10:05:24 +0000
(12:05 +0200)
committer
Miklos Szeredi
<mszeredi@redhat.com>
Fri, 29 Jul 2016 10:05:24 +0000
(12:05 +0200)
There's a superfluous newline in the warning message in ovl_d_real().
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
fs/overlayfs/super.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/overlayfs/super.c
b/fs/overlayfs/super.c
index fa997bdd951d6a1f5388c46ea898bfa2edf0c4e8..7fd216a89d9ab2dc525733112b5bf7749bb03e11 100644
(file)
--- a/
fs/overlayfs/super.c
+++ b/
fs/overlayfs/super.c
@@
-335,7
+335,7
@@
static struct dentry *ovl_d_real(struct dentry *dentry,
/* Handle recursion */
return d_real(real, inode, open_flags);
bug:
- WARN(1, "ovl_d_real(%pd4, %s:%lu
\n
): real dentry not found\n", dentry,
+ WARN(1, "ovl_d_real(%pd4, %s:%lu): real dentry not found\n", dentry,
inode ? inode->i_sb->s_id : "NULL", inode ? inode->i_ino : 0);
return dentry;
}