mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-25 19:57:43 +03:00
Optimize small random numbers generation
In all places except two spa_get_random() is used for small values, and the consumers do not require well seeded high quality values. Switch those two exceptions directly to random_get_pseudo_bytes() and optimize spa_get_random(), renaming it to random_in_range(), since it is not related to SPA or ZFS in general. On FreeBSD directly map random_in_range() to new prng32_bounded() KPI added in FreeBSD 13. On Linux and in user-space just reduce the type used to uint32_t to avoid more expensive 64bit division. Reviewed-by: Ryan Moeller <ryan@iXsystems.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Alexander Motin <mav@FreeBSD.org> Sponsored-By: iXsystems, Inc. Closes #12183
This commit is contained in:
+4
-2
@@ -205,8 +205,10 @@ zil_init_log_chain(zilog_t *zilog, blkptr_t *bp)
|
||||
{
|
||||
zio_cksum_t *zc = &bp->blk_cksum;
|
||||
|
||||
zc->zc_word[ZIL_ZC_GUID_0] = spa_get_random(-1ULL);
|
||||
zc->zc_word[ZIL_ZC_GUID_1] = spa_get_random(-1ULL);
|
||||
(void) random_get_pseudo_bytes((void *)&zc->zc_word[ZIL_ZC_GUID_0],
|
||||
sizeof (zc->zc_word[ZIL_ZC_GUID_0]));
|
||||
(void) random_get_pseudo_bytes((void *)&zc->zc_word[ZIL_ZC_GUID_1],
|
||||
sizeof (zc->zc_word[ZIL_ZC_GUID_1]));
|
||||
zc->zc_word[ZIL_ZC_OBJSET] = dmu_objset_id(zilog->zl_os);
|
||||
zc->zc_word[ZIL_ZC_SEQ] = 1ULL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user