Don't double-zero buffers in fault management nvlists

This is a small cleanup for a trivial problem which happened to
be noticed while another issue was being investigated.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Paul Dagnelie <pcd@delphix.com>
Closes #13730
This commit is contained in:
Paul Dagnelie 2022-08-04 16:53:47 -07:00 committed by GitHub
parent 9681de4657
commit 673aa7e6cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -487,7 +487,7 @@ static void *
i_fm_alloc(nv_alloc_t *nva, size_t size)
{
(void) nva;
return (kmem_zalloc(size, KM_SLEEP));
return (kmem_alloc(size, KM_SLEEP));
}
static void