diff options
| author | Ming Lei <[email protected]> | 2020-05-08 16:17:56 +0800 |
|---|---|---|
| committer | Jens Axboe <[email protected]> | 2020-05-12 20:31:39 -0600 |
| commit | 07c4e1e834f8e7c991aa6dcb5ee0b7f2842e495d (patch) | |
| tree | 0c1fd4194b7af7d096e73834fde80cce5bb4ba64 /include/linux | |
| parent | b7d6c30333239f77f8e51423064a623acc7fd127 (diff) | |
block: only define 'nr_sects_seq' in hd_part for 32bit SMP
The seqcount of 'nr_sects_seq' is only needed in case of 32bit SMP,
so define it just for 32bit SMP.
Signed-off-by: Ming Lei <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Cc: Yufen Yu <[email protected]>
Cc: Christoph Hellwig <[email protected]>
Cc: Hou Tao <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/genhd.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/genhd.h b/include/linux/genhd.h index f9c226f9546a..b4744035ae58 100644 --- a/include/linux/genhd.h +++ b/include/linux/genhd.h @@ -68,7 +68,9 @@ struct hd_struct { * can be non-atomic on 32bit machines with 64bit sector_t. */ sector_t nr_sects; +#if BITS_PER_LONG==32 && defined(CONFIG_SMP) seqcount_t nr_sects_seq; +#endif sector_t alignment_offset; unsigned int discard_alignment; struct device __dev; @@ -274,6 +276,13 @@ static inline void disk_put_part(struct hd_struct *part) put_device(part_to_dev(part)); } +static inline void hd_sects_seq_init(struct hd_struct *p) +{ +#if BITS_PER_LONG==32 && defined(CONFIG_SMP) + seqcount_init(&p->nr_sects_seq); +#endif +} + /* * Smarter partition iterator without context limits. */ |