Lines Matching full:allocated
15 memory should be allocated. The GFP acronym stands for "get free
60 ``GFP_HIGHUSER_MOVABLE`` does not require that allocated memory
64 ``GFP_HIGHUSER`` means that the allocated memory is not movable,
69 ``GFP_USER`` means that the allocated memory is not movable and it
81 used to ensure that the allocated memory is accessible by hardware
141 The maximal size of a chunk that can be allocated with `kmalloc` is
146 The address of a chunk allocated with `kmalloc` is aligned to at least
150 Chunks allocated with kmalloc() can be resized with krealloc(). Similarly
155 request pages from the page allocator. The memory allocated by `vmalloc`
173 When the allocated memory is no longer needed it must be freed.
175 Objects allocated by `kmalloc` can be freed by `kfree` or `kvfree`. Objects
176 allocated by `kmem_cache_alloc` can be freed with `kmem_cache_free`, `kfree`
182 Memory allocated by `vmalloc` can be freed with `vfree` or `kvfree`.
183 Memory allocated by `kvmalloc` can be freed with `kvfree`.
185 `kmem_cache_destroy` only after freeing all the allocated objects first.