From eefca0a2a1e4e840ced50c0a458d2c697c5c606a Mon Sep 17 00:00:00 2001 From: Jian Yu Date: Mon, 27 Nov 2023 22:52:57 -0800 Subject: [PATCH] LU-16291 build: make kobj_type constant Kernel v5.16-rc2-28-gee6d3dd4ed48: commit ee6d3dd4ed48ab24b74bab3c3977b8218518247d driver core: make kobj_type constant. This patch makes struct kobj_type constant to fix the following build failure against kernel 5.16: lustre/obdclass/obd_config.c: In function 'class_modify_config': lustre/obdclass/obd_config.c:1639:13: error: assignment discards 'const' qualifier from pointer target type [-Werror=discarded-qualifiers] 1639 | typ = get_ktype(kobj); | ^ Lustre-change: https://review.whamcloud.com/49043 Lustre-commit: d1dbf26afd6676e02a2a00e635b9ad1fe14cf68e Signed-off-by: Jian Yu Change-Id: I19e0d1f4e3cf97f6871e038487cda9294ac1f67b Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/53263 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Shaun Tancheff Reviewed-by: Andreas Dilger --- lustre/obdclass/obd_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/obdclass/obd_config.c b/lustre/obdclass/obd_config.c index 961e034..3f05ff05 100644 --- a/lustre/obdclass/obd_config.c +++ b/lustre/obdclass/obd_config.c @@ -1358,7 +1358,7 @@ EXPORT_SYMBOL(class_process_config); ssize_t class_modify_config(struct lustre_cfg *lcfg, const char *prefix, struct kobject *kobj) { - struct kobj_type *typ; + const struct kobj_type *typ; ssize_t count = 0; int i; -- 1.8.3.1