X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=module%2Fnvpair%2Fnvpair_alloc_fixed.c;h=0d4e12b972bb88788658850db001bef91e725854;hb=56d8d8ace4724bde16145be25b75d8f551961813;hp=e3ac12938defeb1ed66bed920b2a4b7e05fb0467;hpb=48ac22d8559313b2a33a80b9690aeea9acb9976c;p=mirror_zfs.git diff --git a/module/nvpair/nvpair_alloc_fixed.c b/module/nvpair/nvpair_alloc_fixed.c index e3ac12938..0d4e12b97 100644 --- a/module/nvpair/nvpair_alloc_fixed.c +++ b/module/nvpair/nvpair_alloc_fixed.c @@ -110,11 +110,11 @@ nv_fixed_reset(nv_alloc_t *nva) } const nv_alloc_ops_t nv_fixed_ops_def = { - nv_fixed_init, /* nv_ao_init() */ - NULL, /* nv_ao_fini() */ - nv_fixed_alloc, /* nv_ao_alloc() */ - nv_fixed_free, /* nv_ao_free() */ - nv_fixed_reset /* nv_ao_reset() */ + .nv_ao_init = nv_fixed_init, + .nv_ao_fini = NULL, + .nv_ao_alloc = nv_fixed_alloc, + .nv_ao_free = nv_fixed_free, + .nv_ao_reset = nv_fixed_reset }; const nv_alloc_ops_t *nv_fixed_ops = &nv_fixed_ops_def;