Merge commit '7e934d3acc051b7ee3ef0d11571fd1225800a607'
[unleashed.git] / kernel / zmod / zmod_subr.c
blob8dcbd5315253b417558de3046cdd5fb8ae773d00
1 /*
2 * CDDL HEADER START
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]
19 * CDDL HEADER END
23 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #include <sys/systm.h>
28 #include <sys/cmn_err.h>
29 #include <sys/kobj.h>
30 #include <sys/kobj_impl.h>
32 struct zchdr {
33 uint_t zch_magic;
34 uint_t zch_size;
37 #define ZCH_MAGIC 0x3cc13cc1
39 /*ARGSUSED*/
40 void *
41 zcalloc(void *opaque, uint_t items, uint_t size)
43 size_t nbytes = sizeof (struct zchdr) + items * size;
44 struct zchdr *z = kobj_zalloc(nbytes, KM_NOWAIT|KM_TMP);
46 if (z == NULL)
47 return (NULL);
49 z->zch_magic = ZCH_MAGIC;
50 z->zch_size = nbytes;
52 return (z + 1);
55 /*ARGSUSED*/
56 void
57 zcfree(void *opaque, void *ptr)
59 struct zchdr *z = ((struct zchdr *)ptr) - 1;
61 if (z->zch_magic != ZCH_MAGIC)
62 panic("zcfree region corrupt: hdr=%p ptr=%p", (void *)z, ptr);
64 kobj_free(z, z->zch_size);
67 void
68 zmemcpy(void *dest, const void *source, uint_t len)
70 bcopy(source, dest, len);
73 int
74 zmemcmp(const void *s1, const void *s2, uint_t len)
76 return (bcmp(s1, s2, len));
79 void
80 zmemzero(void *dest, uint_t len)
82 bzero(dest, len);