The patch titled Subject: mm/shmem.c: constify anon_ops has been added to the -mm tree. Its filename is mm-shmemc-constify-anon_ops.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-shmemc-constify-anon_ops.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-shmemc-constify-anon_ops.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Subject: mm/shmem.c: constify anon_ops 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@xxxxxxxxxxxxxxxxxx Signed-off-by: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Acked-by: Hugh Dickins <hughd@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/shmem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/shmem.c~mm-shmemc-constify-anon_ops mm/shmem.c --- a/mm/shmem.c~mm-shmemc-constify-anon_ops +++ a/mm/shmem.c @@ -4077,7 +4077,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 }; _ Patches currently in -mm which might be from linux@xxxxxxxxxxxxxxxxxx are mm-shmemc-constify-anon_ops.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html