G/C data_alloc_arena

It is a leftover from illumos always set to NULL and introducing a
spurious difference between zio_buf and zio_data_buf.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Mateusz Guzik <mjguzik@gmail.com>
Closes #11188
This commit is contained in:
Mateusz Guzik 2020-11-12 02:11:32 +01:00 committed by Brian Behlendorf
parent 995b80fa3a
commit 87f01fc158

View File

@ -144,7 +144,6 @@ void
zio_init(void) zio_init(void)
{ {
size_t c; size_t c;
vmem_t *data_alloc_arena = NULL;
zio_cache = kmem_cache_create("zio_cache", zio_cache = kmem_cache_create("zio_cache",
sizeof (zio_t), 0, NULL, NULL, NULL, NULL, NULL, 0); sizeof (zio_t), 0, NULL, NULL, NULL, NULL, NULL, 0);
@ -213,8 +212,7 @@ zio_init(void)
(void) snprintf(name, sizeof (name), "zio_data_buf_%lu", (void) snprintf(name, sizeof (name), "zio_data_buf_%lu",
(ulong_t)size); (ulong_t)size);
zio_data_buf_cache[c] = kmem_cache_create(name, size, zio_data_buf_cache[c] = kmem_cache_create(name, size,
align, NULL, NULL, NULL, NULL, align, NULL, NULL, NULL, NULL, NULL, data_cflags);
data_alloc_arena, data_cflags);
} }
} }