Lines Matching full:use
11 `alloc_pages`. It is also possible to use more specialized allocators,
14 Most of the memory allocation APIs use GFP flags to express how that
20 answer, although very likely you should use
41 many other allocations types can use ``GFP_KERNEL``. Note, that
46 handler, use ``GFP_NOWAIT``. This flag prevents direct reclaim and
51 will be stressed unless allocation succeeds, you may use ``GFP_ATOMIC``.
56 * Userspace allocations should use either of the ``GFP_USER``,
77 use new scope APIs described in
84 And even with hardware with restrictions it is preferable to use
134 The most straightforward way to allocate memory is to use a function
135 from the kmalloc() family. And, to be on the safe side it's best to use
143 configuration, but it is a good practice to use `kmalloc` for objects
154 For large allocations you can use vmalloc() and vzalloc(), or directly
159 `kmalloc`, it is possible to use kvmalloc() and its derivatives. It will
166 If you need to allocate many identical objects you can use the slab
174 use kvfree() for the memory allocated with `kmalloc`, `vmalloc` and