mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 03:09:34 +03:00
Allocate the ioctl "output" nvlist with KM_PUSHPAGE.
Some ZFS errors such as certain snapshot failures can occur in the sync task context. Because they may require additional memory allocations, the initial nvlist must be allocated with KM_PUSHPAGE. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Issue #1746 Issue #1737
This commit is contained in:
parent
c5322236ec
commit
8769db3966
@ -5660,7 +5660,7 @@ zfsdev_ioctl(struct file *filp, unsigned cmd, unsigned long arg)
|
||||
}
|
||||
}
|
||||
|
||||
outnvl = fnvlist_alloc();
|
||||
VERIFY0(nvlist_alloc(&outnvl, NV_UNIQUE_NAME, KM_PUSHPAGE));
|
||||
error = vec->zvec_func(zc->zc_name, innvl, outnvl);
|
||||
|
||||
if (error == 0 && vec->zvec_allow_log &&
|
||||
|
Loading…
Reference in New Issue
Block a user