Lines Matching full:with
10 or you can directly request pages from the page allocator with
18 Diversity of the allocation APIs combined with the numerous GFP flags
82 with limited addressing capabilities. So unless you are writing a
83 driver for a device with such restrictions, avoid using these flags.
84 And even with hardware with restrictions it is preferable to use
96 The maximal size of a chunk that can be allocated with `kmalloc` is
101 The address of a chunk allocated with `kmalloc` is aligned to at least
112 derivatives. It will try to allocate memory with `kmalloc` and if the
113 allocation fails it will be retried with `vmalloc`. There are
114 restrictions on which GFP flags can be used with `kvmalloc`; please
119 cache allocator. The cache should be set up with
127 can use :c:func:`kvfree` for the memory allocated with `kmalloc`,
128 `vmalloc` and `kvmalloc`. The slab caches should be freed with
129 :c:func:`kmem_cache_free`. And don't forget to destroy the cache with