kobject: kset_uevent_ops: make uevent() callback take a const *
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 11 Jan 2023 11:30:18 +0000 (12:30 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 27 Jan 2023 12:45:53 +0000 (13:45 +0100)
The uevent() callback in struct kset_uevent_ops does not modify the
kobject passed into it, so make the pointer const to enforce this
restriction.  When doing so, fix up all existing uevent() callbacks to
have the correct signature to preserve the build.

Cc: Christine Caulfield <ccaulfie@redhat.com>
Cc: David Teigland <teigland@redhat.com>
Cc: Bob Peterson <rpeterso@redhat.com>
Cc: Andreas Gruenbacher <agruenba@redhat.com>
Acked-by: Rafael J. Wysocki <rafael@kernel.org>
Acked-by: Hans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20230111113018.459199-17-gregkh@linuxfoundation.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/base/core.c
fs/dlm/lockspace.c
fs/gfs2/sys.c
include/linux/kobject.h

index e39b6fa..e4b18f7 100644 (file)
@@ -2387,9 +2387,9 @@ static const char *dev_uevent_name(const struct kobject *kobj)
        return NULL;
 }
 
-static int dev_uevent(struct kobject *kobj, struct kobj_uevent_env *env)
+static int dev_uevent(const struct kobject *kobj, struct kobj_uevent_env *env)
 {
-       struct device *dev = kobj_to_dev(kobj);
+       const struct device *dev = kobj_to_dev(kobj);
        int retval = 0;
 
        /* add device node properties if present */
index d0b4e21..9b6cfc4 100644 (file)
@@ -215,9 +215,9 @@ static int do_uevent(struct dlm_ls *ls, int in)
        return ls->ls_uevent_result;
 }
 
-static int dlm_uevent(struct kobject *kobj, struct kobj_uevent_env *env)
+static int dlm_uevent(const struct kobject *kobj, struct kobj_uevent_env *env)
 {
-       struct dlm_ls *ls = container_of(kobj, struct dlm_ls, ls_kobj);
+       const struct dlm_ls *ls = container_of(kobj, struct dlm_ls, ls_kobj);
 
        add_uevent_var(env, "LOCKSPACE=%s", ls->ls_name);
        return 0;
index d87ea98..d8dfabb 100644 (file)
@@ -767,10 +767,10 @@ void gfs2_sys_fs_del(struct gfs2_sbd *sdp)
        wait_for_completion(&sdp->sd_kobj_unregister);
 }
 
-static int gfs2_uevent(struct kobject *kobj, struct kobj_uevent_env *env)
+static int gfs2_uevent(const struct kobject *kobj, struct kobj_uevent_env *env)
 {
-       struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
-       struct super_block *s = sdp->sd_vfs;
+       const struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
+       const struct super_block *s = sdp->sd_vfs;
 
        add_uevent_var(env, "LOCKTABLE=%s", sdp->sd_table_name);
        add_uevent_var(env, "LOCKPROTO=%s", sdp->sd_proto_name);
index 58a5b75..bdab370 100644 (file)
@@ -137,7 +137,7 @@ struct kobj_uevent_env {
 struct kset_uevent_ops {
        int (* const filter)(const struct kobject *kobj);
        const char *(* const name)(const struct kobject *kobj);
-       int (* const uevent)(struct kobject *kobj, struct kobj_uevent_env *env);
+       int (* const uevent)(const struct kobject *kobj, struct kobj_uevent_env *env);
 };
 
 struct kobj_attribute {