2023-03-10 22:40:37

by Thomas Weißschuh

[permalink] [raw]
Subject: [PATCH v2 4/4] blk-integrity: drop integrity_kobj from gendisk

The previous patches made the integrity_kobj member in struct gendisk
superfluous, remove it.

Signed-off-by: Thomas Weißschuh <[email protected]>
---
include/linux/blkdev.h | 3 ---
1 file changed, 3 deletions(-)

diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
index d1aee08f8c18..b5bc85c3166f 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -163,9 +163,6 @@ struct gendisk {
struct timer_rand_state *random;
atomic_t sync_io; /* RAID */
struct disk_events *ev;
-#ifdef CONFIG_BLK_DEV_INTEGRITY
- struct kobject integrity_kobj;
-#endif /* CONFIG_BLK_DEV_INTEGRITY */

#ifdef CONFIG_BLK_DEV_ZONED
/*

--
2.39.2



2023-03-15 15:07:32

by Christoph Hellwig

[permalink] [raw]
Subject: Re: [PATCH v2 4/4] blk-integrity: drop integrity_kobj from gendisk

On Fri, Mar 10, 2023 at 10:40:05PM +0000, Thomas Wei?schuh wrote:
> The previous patches made the integrity_kobj member in struct gendisk
> superfluous, remove it.

Maybe fold this into the patch that removes the last use?