xref: /dragonfly/share/man/man9/kmalloc.9 (revision 52f9f0d9)
1.\"
2.\" Copyright (c) 1996 The NetBSD Foundation, Inc.
3.\" All rights reserved.
4.\"
5.\" This code is derived from software contributed to The NetBSD Foundation
6.\" by Paul Kranenburg.
7.\"
8.\" Redistribution and use in source and binary forms, with or without
9.\" modification, are permitted provided that the following conditions
10.\" are met:
11.\" 1. Redistributions of source code must retain the above copyright
12.\"    notice, this list of conditions and the following disclaimer.
13.\" 2. Redistributions in binary form must reproduce the above copyright
14.\"    notice, this list of conditions and the following disclaimer in the
15.\"    documentation and/or other materials provided with the distribution.
16.\" 3. All advertising materials mentioning features or use of this software
17.\"    must display the following acknowledgement:
18.\"        This product includes software developed by the NetBSD
19.\"        Foundation, Inc. and its contributors.
20.\" 4. Neither the name of The NetBSD Foundation nor the names of its
21.\"    contributors may be used to endorse or promote products derived
22.\"    from this software without specific prior written permission.
23.\"
24.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
25.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
26.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
27.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
28.\" LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34.\" POSSIBILITY OF SUCH DAMAGE.
35.\"
36.\" $NetBSD: malloc.9,v 1.3 1996/11/11 00:05:11 lukem Exp $
37.\" $FreeBSD: src/share/man/man9/malloc.9,v 1.42 2005/02/22 17:20:20 brueffer Exp $
38.\"
39.Dd January 15, 2010
40.Dt KMALLOC 9
41.Os
42.Sh NAME
43.Nm kmalloc ,
44.Nm kfree ,
45.Nm krealloc ,
46.Nm MALLOC_DEFINE ,
47.Nm MALLOC_DECLARE
48.Nd kernel memory management routines
49.Sh SYNOPSIS
50.In sys/types.h
51.In sys/malloc.h
52.Ft void *
53.Fn kmalloc "unsigned long size" "struct malloc_type *type" "int flags"
54.Ft void
55.Fn kfree "void *addr" "struct malloc_type *type"
56.Ft void *
57.Fn krealloc "void *addr" "unsigned long size" "struct malloc_type *type" "int flags"
58.Fn MALLOC_DECLARE type
59.In sys/param.h
60.In sys/malloc.h
61.In sys/kernel.h
62.Fn MALLOC_DEFINE type shortdesc longdesc
63.Sh DESCRIPTION
64The
65.Fn kmalloc
66function allocates uninitialized memory in kernel address space for an
67object whose size is specified by
68.Fa size .
69.Pp
70The
71.Fn kfree
72function releases memory at address
73.Fa addr
74that was previously allocated by
75.Fn kmalloc
76for re-use.
77The memory is not zeroed.
78The kernel implementation of
79.Fn kfree
80does not allow
81.Fa addr
82to be
83.Dv NULL .
84.Pp
85The
86.Fn krealloc
87function changes the size of the previously allocated memory referenced by
88.Fa addr
89to
90.Fa size
91bytes.
92The contents of the memory are unchanged up to the lesser of the new and
93old sizes.
94Note that the returned value may differ from
95.Fa addr .
96If the requested memory cannot be allocated,
97.Dv NULL
98is returned and the memory referenced by
99.Fa addr
100is valid and unchanged.
101If
102.Fa addr
103is
104.Dv NULL ,
105the
106.Fn krealloc
107function behaves identically to
108.Fn kmalloc
109for the specified size.
110.Pp
111Unlike its standard C library counterpart
112.Pq Xr malloc 3 ,
113the kernel version takes two more arguments.
114The
115.Fa flags
116argument further qualifies
117.Fn kmalloc Ns 's
118operational characteristics as follows:
119.Bl -tag -width indent
120.It Dv M_ZERO
121Causes the allocated memory to be set to all zeros.
122.It Dv M_NOWAIT
123Causes
124.Fn kmalloc
125and
126.Fn krealloc ,
127to return
128.Dv NULL
129if the request cannot be immediately fulfilled due to resource shortage.
130Note that
131.Dv M_NOWAIT
132is required when running in an interrupt context.
133.It Dv M_WAITOK
134Indicates that it is OK to wait for resources.
135If the request cannot be immediately fulfilled, the current process is put
136to sleep to wait for resources to be released by other processes.
137The
138.Fn kmalloc
139and
140.Fn krealloc ,
141functions cannot return
142.Dv NULL
143if
144.Dv M_WAITOK
145is specified.
146.It Dv M_INTWAIT
147Indicates
148.Fn kmalloc
149to dig into the system's reserved free pages looking for enough room to
150perform the allocation.
151This is typically used in interrupts where you cannot afford
152.Fn kmalloc
153to fail.
154.It Dv M_USE_RESERVE
155Indicates that the system can dig into its reserve in order to obtain the
156requested memory.
157This option used to be called
158.Dv M_KERNEL
159but has been renamed to something more obvious.
160This option has been deprecated and is slowly being removed from the kernel,
161and so should not be used with any new code.
162.El
163.Pp
164Exactly one of either
165.Dv M_WAITOK
166or
167.Dv M_NOWAIT
168must be specified.
169.Pp
170The
171.Fa type
172argument is used to perform statistics on memory usage, and for
173basic sanity checks.
174It can be used to identify multiple allocations.
175The statistics can be examined by
176.Sq vmstat -m .
177.Pp
178A
179.Fa type
180is defined using the
181.Va malloc_type_t
182typedef via the
183.Fn MALLOC_DECLARE
184and
185.Fn MALLOC_DEFINE
186macros.
187.Bd -literal -offset indent
188/* sys/something/foo_extern.h */
189
190MALLOC_DECLARE(M_FOOBUF);
191
192/* sys/something/foo_main.c */
193
194MALLOC_DEFINE(M_FOOBUF, "foobuffers", "Buffers to foo data into the ether");
195
196/* sys/something/foo_subr.c */
197
198\&...
199buf = kmalloc(sizeof *buf, M_FOOBUF, M_NOWAIT);
200
201.Ed
202.Sh IMPLEMENTATION NOTES
203The memory allocator allocates memory in chunks that have size a power
204of two for requests up to the size of a page of memory.
205For larger requests, one or more pages is allocated.
206While it should not be relied upon, this information may be useful for
207optimizing the efficiency of memory use.
208.Sh RETURN VALUES
209The
210.Fn kmalloc
211and
212.Fn krealloc ,
213functions return a kernel virtual address that is suitably aligned for
214storage of any type of object, or
215.Dv NULL
216if the request could not be satisfied (implying that
217.Dv M_NOWAIT
218was set).
219.Sh DIAGNOSTICS
220A kernel compiled with the
221.Dv INVARIANTS
222configuration option attempts to detect memory corruption caused by
223such things as writing outside the allocated area and imbalanced calls to the
224.Fn kmalloc
225and
226.Fn kfree
227functions.
228Failing consistency checks will cause a panic or a system console
229message.
230.Sh SEE ALSO
231.Xr vmstat 8 ,
232.Xr contigmalloc 9 ,
233.Xr memory 9 ,
234.Xr vnode 9
235