diff options
author | Jens Axboe <axboe@kernel.dk> | 2024-04-25 13:53:54 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2024-04-25 13:53:54 -0600 |
commit | bf4f776d9f906c36acb473b3e449e97b3938fc55 (patch) | |
tree | e04dfdfd321c9d9057d3e9b01388262c1d2b95b2 /include/linux/blkdev.h | |
parent | 57787fa42f9fc12fe18938eefc2acb2dc2bde9ae (diff) | |
parent | 9d1110f99c253ccef82e480bfe9f38a12eb797a7 (diff) |
Merge tag 'md-6.10-20240425' of https://git.kernel.org/pub/scm/linux/kernel/git/song/md into for-6.10/block
Pull MD fixes from Song:
"These changes contain various fixes by Yu Kuai, Li Nan, and
Florian-Ewald Mueller."
* tag 'md-6.10-20240425' of https://git.kernel.org/pub/scm/linux/kernel/git/song/md:
md: don't account sync_io if iostats of the disk is disabled
md: Fix overflow in is_mddev_idle
md: add check for sleepers in md_wakeup_thread()
md/raid5: fix deadlock that raid5d() wait for itself to clear MD_SB_CHANGE_PENDING
Diffstat (limited to 'include/linux/blkdev.h')
-rw-r--r-- | include/linux/blkdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index d22eb41a05b8..040a22e0eda0 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -172,7 +172,7 @@ struct gendisk { struct list_head slave_bdevs; #endif struct timer_rand_state *random; - atomic_t sync_io; /* RAID */ + atomic64_t sync_io; /* RAID */ struct disk_events *ev; #ifdef CONFIG_BLK_DEV_ZONED |