Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1299860 > unrolled thread

[PATCH] dlm: constify kset_uevent_ops structures

Started byJulia Lawall <Julia.Lawall@lip6.fr>
First post2016-01-01 10:10 +0100
Last post2016-01-01 10:10 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] dlm: constify kset_uevent_ops structures Julia Lawall <Julia.Lawall@lip6.fr> - 2016-01-01 10:10 +0100

#1299860 — [PATCH] dlm: constify kset_uevent_ops structures

FromJulia Lawall <Julia.Lawall@lip6.fr>
Date2016-01-01 10:10 +0100
Subject[PATCH] dlm: constify kset_uevent_ops structures
Message-ID<qM3SF-8u1-1@gated-at.bofh.it>
This kset_uevent_ops structure is never modified, so declare it as const.
Other structures of this type are already const.

Done with the help of Coccinelle.

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

---
 fs/dlm/lockspace.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/dlm/lockspace.c b/fs/dlm/lockspace.c
index f3e7278..2ea1b77 100644
--- a/fs/dlm/lockspace.c
+++ b/fs/dlm/lockspace.c
@@ -233,7 +233,7 @@ static int dlm_uevent(struct kset *kset, struct kobject *kobj,
 	return 0;
 }
 
-static struct kset_uevent_ops dlm_uevent_ops = {
+static const struct kset_uevent_ops dlm_uevent_ops = {
 	.uevent = dlm_uevent,
 };
 

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web