Lines Matching defs:scribble
1473 /* return a pointer to the address conversion region of the scribble buffer */
1476 return percpu->scribble + i * percpu->scribble_obj_size;
1479 /* return a pointer to the address conversion region of the scribble buffer */
2386 * scribble_alloc - allocate percpu scribble buffer for required size
2387 * of the scribble region
2390 * @cnt: scribble objs count for required size of the scribble region
2392 * The scribble buffer size must be enough to contain:
2408 void *scribble;
2415 scribble = kvmalloc_array(cnt, obj_size, GFP_KERNEL);
2416 if (!scribble)
2419 kvfree(percpu->scribble);
2421 percpu->scribble = scribble;
2564 * conf->disks and the scribble region
7027 kvfree(percpu->scribble);
7028 percpu->scribble = NULL;