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 2008 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
27 #include <gmem_util.h>
32 #include <fm/fmd_api.h>
33 #include <sys/fm/protocol.h>
36 gmem_set_errno(int err
)
43 gmem_buf_read(fmd_hdl_t
*hdl
, fmd_case_t
*cp
, const char *bufname
, size_t bufsz
)
48 if ((sz
= fmd_buf_size(hdl
, cp
, bufname
)) == 0) {
49 (void) gmem_set_errno(ENOENT
);
51 } else if (sz
!= bufsz
) {
52 (void) gmem_set_errno(EINVAL
);
56 buf
= fmd_hdl_alloc(hdl
, bufsz
, FMD_SLEEP
);
57 fmd_buf_read(hdl
, cp
, bufname
, buf
, bufsz
);
63 gmem_vbufname(char *buf
, size_t bufsz
, const char *fmt
, va_list ap
)
67 (void) vsnprintf(buf
, bufsz
, fmt
, ap
);
69 for (c
= buf
; *c
!= '\0'; c
++) {
70 if (*c
== ' ' || *c
== '/' || *c
== ':')
76 gmem_bufname(char *buf
, size_t bufsz
, const char *fmt
, ...)
81 gmem_vbufname(buf
, bufsz
, fmt
, ap
);
86 gmem_list_append(gmem_list_t
*lp
, void *new)
88 gmem_list_t
*p
= lp
->l_prev
; /* p = tail list element */
89 gmem_list_t
*q
= new; /* q = new list element */
102 gmem_list_prepend(gmem_list_t
*lp
, void *new)
104 gmem_list_t
*p
= new; /* p = new list element */
105 gmem_list_t
*q
= lp
->l_next
; /* q = head list element */
118 gmem_list_insert_before(gmem_list_t
*lp
, void *before_me
, void *new)
120 gmem_list_t
*p
= before_me
;
121 gmem_list_t
*q
= new;
123 if (p
== NULL
|| p
->l_prev
== NULL
) {
124 gmem_list_prepend(lp
, new);
128 q
->l_prev
= p
->l_prev
;
131 q
->l_prev
->l_next
= q
;
135 gmem_list_insert_after(gmem_list_t
*lp
, void *after_me
, void *new)
137 gmem_list_t
*p
= after_me
;
138 gmem_list_t
*q
= new;
140 if (p
== NULL
|| p
->l_next
== NULL
) {
141 gmem_list_append(lp
, new);
145 q
->l_next
= p
->l_next
;
148 q
->l_next
->l_prev
= q
;
152 gmem_list_delete(gmem_list_t
*lp
, void *existing
)
154 gmem_list_t
*p
= existing
;
156 if (p
->l_prev
!= NULL
)
157 p
->l_prev
->l_next
= p
->l_next
;
159 lp
->l_next
= p
->l_next
;
161 if (p
->l_next
!= NULL
)
162 p
->l_next
->l_prev
= p
->l_prev
;
164 lp
->l_prev
= p
->l_prev
;