mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 20:48:49 +08:00
dm cache policy smq: use hash_32() instead of hash_32_generic()
Switch to using hash_32() because hash_32_generic() should only be used by the kernel's selftests. Signed-off-by: Mike Snitzer <snitzer@redhat.com>
This commit is contained in:
parent
027c431ccf
commit
e99dda8fc4
@ -1361,7 +1361,7 @@ static void smq_clear_dirty(struct dm_cache_policy *p, dm_oblock_t oblock)
|
||||
|
||||
static unsigned random_level(dm_cblock_t cblock)
|
||||
{
|
||||
return hash_32_generic(from_cblock(cblock), 9) & (NR_CACHE_LEVELS - 1);
|
||||
return hash_32(from_cblock(cblock), 9) & (NR_CACHE_LEVELS - 1);
|
||||
}
|
||||
|
||||
static int smq_load_mapping(struct dm_cache_policy *p,
|
||||
|
Loading…
Reference in New Issue
Block a user