diff options
| author | Heinz Mauelshagen <heinzm@redhat.com> | 2023-01-25 21:14:58 +0100 |
|---|---|---|
| committer | Mike Snitzer <snitzer@kernel.org> | 2023-02-14 14:23:06 -0500 |
| commit | 86a3238c7b9b759cb864f4f768ab2e24687dc0e6 (patch) | |
| tree | a85375c77a8a25923250d1dfe9b7b6a3d2594029 /drivers/md/persistent-data/dm-persistent-data-internal.h | |
| parent | 238d991f054a553e823d12b0ffd52aaeedd65f70 (diff) | |
| download | linux-next-86a3238c7b9b759cb864f4f768ab2e24687dc0e6.tar.gz linux-next-86a3238c7b9b759cb864f4f768ab2e24687dc0e6.zip | |
dm: change "unsigned" to "unsigned int"
Signed-off-by: Heinz Mauelshagen <heinzm@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
Diffstat (limited to 'drivers/md/persistent-data/dm-persistent-data-internal.h')
| -rw-r--r-- | drivers/md/persistent-data/dm-persistent-data-internal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/md/persistent-data/dm-persistent-data-internal.h b/drivers/md/persistent-data/dm-persistent-data-internal.h index 4cfc27a9f8af..c482434e566b 100644 --- a/drivers/md/persistent-data/dm-persistent-data-internal.h +++ b/drivers/md/persistent-data/dm-persistent-data-internal.h @@ -10,11 +10,11 @@ #include "dm-block-manager.h" -static inline unsigned dm_hash_block(dm_block_t b, unsigned hash_mask) +static inline unsigned int dm_hash_block(dm_block_t b, unsigned int hash_mask) { - const unsigned BIG_PRIME = 4294967291UL; + const unsigned int BIG_PRIME = 4294967291UL; - return (((unsigned) b) * BIG_PRIME) & hash_mask; + return (((unsigned int) b) * BIG_PRIME) & hash_mask; } #endif /* _PERSISTENT_DATA_INTERNAL_H */ |
