4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 #pragma ident "%Z%%M% %I% %E% SMI"
35 #include "zpool_util.h"
38 * Utility function to guarantee malloc() success.
41 safe_malloc(size_t size
)
45 if ((data
= calloc(1, size
)) == NULL
) {
46 (void) fprintf(stderr
, "internal error: out of memory\n");
54 * Same as above, but for strdup()
57 safe_strdup(const char *str
)
61 if ((ret
= strdup(str
)) == NULL
) {
62 (void) fprintf(stderr
, "internal error: out of memory\n");
70 * Display an out of memory error message and abort the current program.
75 assert(errno
== ENOMEM
);
76 (void) fprintf(stderr
,
77 gettext("internal error: out of memory\n"));
82 * Return the number of logs in supplied nvlist
85 num_logs(nvlist_t
*nv
)
91 if (nvlist_lookup_nvlist_array(nv
, ZPOOL_CONFIG_CHILDREN
,
92 &child
, &children
) != 0)
95 for (c
= 0; c
< children
; c
++) {
96 uint64_t is_log
= B_FALSE
;
98 (void) nvlist_lookup_uint64(child
[c
], ZPOOL_CONFIG_IS_LOG
,