Add fix-get-configs branch
This commit is contained in:
parent
34dc7c2f25
commit
f2eebd3377
|
@ -0,0 +1,8 @@
|
|||
From: Brian Behlendorf <behlendorf1@llnl.gov>
|
||||
Subject: [PATCH] fix get configs size
|
||||
|
||||
Increase nvlist *_GET_CONFIGS size
|
||||
|
||||
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
|
||||
|
||||
---
|
|
@ -123,7 +123,7 @@ namespace_reload(libzfs_handle_t *hdl)
|
|||
return (no_memory(hdl));
|
||||
}
|
||||
|
||||
if (zcmd_alloc_dst_nvlist(hdl, &zc, 0) != 0)
|
||||
if (zcmd_alloc_dst_nvlist(hdl, &zc, 32768) != 0)
|
||||
return (-1);
|
||||
|
||||
for (;;) {
|
||||
|
|
Loading…
Reference in New Issue