Skip to content

Commit 5f62241

Browse files
t-8chaxboe
authored andcommitted
block: make kobj_type structures constant
Since commit ee6d3dd ("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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jens Axboe <[email protected]>
1 parent 23f3e32 commit 5f62241

6 files changed

+10
-10
lines changed

block/blk-crypto-sysfs.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ static void blk_crypto_release(struct kobject *kobj)
116116
kfree(container_of(kobj, struct blk_crypto_kobj, kobj));
117117
}
118118

119-
static struct kobj_type blk_crypto_ktype = {
119+
static const struct kobj_type blk_crypto_ktype = {
120120
.default_groups = blk_crypto_attr_groups,
121121
.sysfs_ops = &blk_crypto_attr_ops,
122122
.release = blk_crypto_release,

block/blk-ia-ranges.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ static void blk_ia_range_sysfs_nop_release(struct kobject *kobj)
7575
{
7676
}
7777

78-
static struct kobj_type blk_ia_range_ktype = {
78+
static const struct kobj_type blk_ia_range_ktype = {
7979
.sysfs_ops = &blk_ia_range_sysfs_ops,
8080
.default_groups = blk_ia_range_groups,
8181
.release = blk_ia_range_sysfs_nop_release,
@@ -94,7 +94,7 @@ static void blk_ia_ranges_sysfs_release(struct kobject *kobj)
9494
kfree(iars);
9595
}
9696

97-
static struct kobj_type blk_ia_ranges_ktype = {
97+
static const struct kobj_type blk_ia_ranges_ktype = {
9898
.release = blk_ia_ranges_sysfs_release,
9999
};
100100

block/blk-integrity.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ static const struct sysfs_ops integrity_ops = {
356356
.store = &integrity_attr_store,
357357
};
358358

359-
static struct kobj_type integrity_ktype = {
359+
static const struct kobj_type integrity_ktype = {
360360
.default_groups = integrity_groups,
361361
.sysfs_ops = &integrity_ops,
362362
};

block/blk-mq-sysfs.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -129,15 +129,15 @@ static const struct sysfs_ops blk_mq_hw_sysfs_ops = {
129129
.show = blk_mq_hw_sysfs_show,
130130
};
131131

132-
static struct kobj_type blk_mq_ktype = {
132+
static const struct kobj_type blk_mq_ktype = {
133133
.release = blk_mq_sysfs_release,
134134
};
135135

136-
static struct kobj_type blk_mq_ctx_ktype = {
136+
static const struct kobj_type blk_mq_ctx_ktype = {
137137
.release = blk_mq_ctx_sysfs_release,
138138
};
139139

140-
static struct kobj_type blk_mq_hw_ktype = {
140+
static const struct kobj_type blk_mq_hw_ktype = {
141141
.sysfs_ops = &blk_mq_hw_sysfs_ops,
142142
.default_groups = default_hw_ctx_groups,
143143
.release = blk_mq_hw_sysfs_release,

block/blk-sysfs.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ static void blk_queue_release(struct kobject *kobj)
765765
/* nothing to do here, all data is associated with the parent gendisk */
766766
}
767767

768-
static struct kobj_type blk_queue_ktype = {
768+
static const struct kobj_type blk_queue_ktype = {
769769
.default_groups = blk_queue_attr_groups,
770770
.sysfs_ops = &queue_sysfs_ops,
771771
.release = blk_queue_release,

block/elevator.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ static struct elevator_type *elevator_find_get(struct request_queue *q,
126126
return e;
127127
}
128128

129-
static struct kobj_type elv_ktype;
129+
static const struct kobj_type elv_ktype;
130130

131131
struct elevator_queue *elevator_alloc(struct request_queue *q,
132132
struct elevator_type *e)
@@ -455,7 +455,7 @@ static const struct sysfs_ops elv_sysfs_ops = {
455455
.store = elv_attr_store,
456456
};
457457

458-
static struct kobj_type elv_ktype = {
458+
static const struct kobj_type elv_ktype = {
459459
.sysfs_ops = &elv_sysfs_ops,
460460
.release = elevator_release,
461461
};

0 commit comments

Comments
 (0)