* Pack nvlist into contiguous memory */
| 2654 | * Pack nvlist into contiguous memory |
| 2655 | */ |
| 2656 | int |
| 2657 | nvlist_pack(nvlist_t *nvl, char **bufp, size_t *buflen, int encoding, |
| 2658 | int kmflag) |
| 2659 | { |
| 2660 | return (nvlist_xpack(nvl, bufp, buflen, encoding, |
| 2661 | nvlist_nv_alloc(kmflag))); |
| 2662 | } |
| 2663 | |
| 2664 | int |
| 2665 | nvlist_xpack(nvlist_t *nvl, char **bufp, size_t *buflen, int encoding, |