Lines Matching refs:first
70 * The slub allocator uses the first word to store the free
96 * The slub allocator will use the either the first word or
194 u8 *first;
197 first = kmalloc(512, GFP_KERNEL);
198 if (!first) {
199 pr_info("Unable to allocate 512 bytes the first time.\n");
203 memset(first, 0xAB, 512);
204 kfree(first);
211 if (val != first) {
226 u8 *first;
229 first = (u8 *)__get_free_page(GFP_KERNEL);
230 if (!first) {
231 pr_info("Unable to allocate first free page\n");
235 memset(first, 0xAB, PAGE_SIZE);
236 free_page((unsigned long)first);
244 if (val != first) {