Lines Matching defs:scribble
1551 /* return a pointer to the address conversion region of the scribble buffer */
1554 return percpu->scribble + i * percpu->scribble_obj_size;
1557 /* return a pointer to the address conversion region of the scribble buffer */
2457 * scribble_alloc - allocate percpu scribble buffer for required size
2458 * of the scribble region
2461 * @cnt: scribble objs count for required size of the scribble region
2463 * The scribble buffer size must be enough to contain:
2479 void *scribble;
2486 scribble = kvmalloc_array(cnt, obj_size, GFP_KERNEL);
2487 if (!scribble)
2490 kvfree(percpu->scribble);
2492 percpu->scribble = scribble;
2635 * conf->disks and the scribble region
7362 kvfree(percpu->scribble);
7363 percpu->scribble = NULL;