summaryrefslogtreecommitdiffstats
path: root/block/blk-integrity.c
diff options
context:
space:
mode:
authorThomas Weißschuh <linux@weissschuh.net>2023-02-08 04:01:22 +0000
committerJens Axboe <axboe@kernel.dk>2023-02-09 09:38:16 -0700
commit5f6224175fbe4c2b91e303c17af4d4eb5e3a60a7 (patch)
tree8fc6f64b728435566204bb7c34ef900d5bae82c8 /block/blk-integrity.c
parent23f3e3272e7a4d9fb870485cd6df1e4f9539282c (diff)
downloadlinux-5f6224175fbe4c2b91e303c17af4d4eb5e3a60a7.tar.gz
linux-5f6224175fbe4c2b91e303c17af4d4eb5e3a60a7.tar.bz2
linux-5f6224175fbe4c2b91e303c17af4d4eb5e3a60a7.zip
block: make kobj_type structures constant
Since commit ee6d3dd4ed48 ("driver core: make kobj_type constant.") the driver core allows the usage of const struct kobj_type. Take advantage of this to constify the structure definitions to prevent modification at runtime. Signed-off-by: Thomas Weißschuh <linux@weissschuh.net> Link: https://lore.kernel.org/r/20230208-kobj_type-block-v1-1-0b3eafd7d983@weissschuh.net Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-integrity.c')
-rw-r--r--block/blk-integrity.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-integrity.c b/block/blk-integrity.c
index 69eed260a823..8f01d786f5cb 100644
--- a/block/blk-integrity.c
+++ b/block/blk-integrity.c
@@ -356,7 +356,7 @@ static const struct sysfs_ops integrity_ops = {
.store = &integrity_attr_store,
};
-static struct kobj_type integrity_ktype = {
+static const struct kobj_type integrity_ktype = {
.default_groups = integrity_groups,
.sysfs_ops = &integrity_ops,
};