loader.efi: use shift 16 in efipart as it is max ashift supported by zfs

This commit is contained in:
Toomas Soome 2019-08-31 06:24:09 +00:00
parent c2b600f98f
commit fd7e6079bc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=351637

View File

@ -255,12 +255,13 @@ efipart_inithandles(void)
/*
* We assume the block size 512 or greater power of 2.
* Also skip devices with block size > 32k.
* Also skip devices with block size > 64k (16 is max
* ashift supported by zfs).
* iPXE is known to insert stub BLOCK IO device with
* BlockSize 1.
*/
if (blkio->Media->BlockSize < 512 ||
blkio->Media->BlockSize > (1 << 15) ||
blkio->Media->BlockSize > (1 << 16) ||
!powerof2(blkio->Media->BlockSize)) {
continue;
}