Lines Matching refs:be
5 Large contiguous memory allocations can be unreliable in the Linux kernel.
8 memory from vmalloc() must be mapped into a relatively small address space;
15 In many cases, the need for memory from vmalloc() can be eliminated by
22 allocation failures should be relatively rare. The down sides are that the
23 arrays cannot be indexed directly, individual object size cannot exceed the
38 maximum number of objects which can be stored in the array. The flags
48 element size and total will be checked for validity at compile time.
56 indicated by element_nr (which must be less than the maximum specified when
57 the array was created). If any memory allocations must be performed, flags
58 will be used. The return value is zero on success, a negative error code
61 There might possibly be a need to store data into a flexible array while
63 memory allocator would be a bad thing. That can be avoided by using
89 Note that, if array elements are allocated with __GFP_ZERO, they will be
92 Individual elements in the array can be cleared with:
104 The return value will be the number of pages of memory actually freed.
106 FLEX_ARRAY_FREE bytes, so (1) it can be expensive, and (2) it will not work
120 that will probably be fixed when somebody comes up with a need for it.