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:
2d75807
)
mm/shmem.c: constify anon_ops
author
Rasmus Villemoes
<linux@rasmusvillemoes.dk>
Sat, 8 Oct 2016 00:01:01 +0000
(17:01 -0700)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Sat, 8 Oct 2016 01:46:29 +0000
(18:46 -0700)
Every other dentry_operations instance is const, and this one might as
well be.
Link:
http://lkml.kernel.org/r/1473890528-7009-1-git-send-email-linux@rasmusvillemoes.dk
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Acked-by: Hugh Dickins <hughd@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/shmem.c
patch
|
blob
|
blame
|
history
diff --git
a/mm/shmem.c
b/mm/shmem.c
index 971fc83e6402858dd558d0f04609ddad38373eb4..dee06310c9c8bef9435b7c1f56be2cda60a27e54 100644
(file)
--- a/
mm/shmem.c
+++ b/
mm/shmem.c
@@
-4078,7
+4078,7
@@
EXPORT_SYMBOL_GPL(shmem_truncate_range);
/* common code */
-static struct dentry_operations anon_ops = {
+static
const
struct dentry_operations anon_ops = {
.d_dname = simple_dname
};