Make ZFS more picky to GEOM stripe sizes and offsets.
Use of misaligned or non-power-of-2 stripes is not really useful for ZFS, since increased ashift won't help to avoid read-modify-write cycles, and only reduce pool space efficiency and compression rates.
This commit is contained in:
parent
04b03bf206
commit
9ba6cd4eb0
@ -811,7 +811,8 @@ vdev_geom_open(vdev_t *vd, uint64_t *psize, uint64_t *max_psize,
|
||||
*/
|
||||
*logical_ashift = highbit(MAX(pp->sectorsize, SPA_MINBLOCKSIZE)) - 1;
|
||||
*physical_ashift = 0;
|
||||
if (pp->stripesize)
|
||||
if (pp->stripesize > (1 << *logical_ashift) && ISP2(pp->stripesize) &&
|
||||
pp->stripeoffset == 0)
|
||||
*physical_ashift = highbit(pp->stripesize) - 1;
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user