• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/mm/

Lines Matching defs:batchcount

267 	unsigned int batchcount;
386 unsigned int batchcount;
669 .batchcount = 1,
943 int batchcount)
952 nc->batchcount = batchcount;
1196 cachep->batchcount + cachep->num;
1210 cachep->batchcount);
1215 cachep->shared * cachep->batchcount,
1302 l3->free_limit -= cachep->batchcount;
2080 cpu_cache_get(cachep)->batchcount = 1;
2082 cachep->batchcount = 1;
2924 int batchcount;
2934 batchcount = ac->batchcount;
2935 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
2941 batchcount = BATCHREFILL_LIMIT;
2949 if (l3->shared && transfer_objects(ac, l3->shared, batchcount))
2952 while (batchcount > 0) {
2975 while (slabp->inuse < cachep->num && batchcount--) {
3488 int batchcount;
3492 batchcount = ac->batchcount;
3494 BUG_ON(!batchcount || batchcount > ac->avail);
3503 if (batchcount > max)
3504 batchcount = max;
3506 ac->entry, sizeof(void *) * batchcount);
3507 shared_array->avail += batchcount;
3512 free_block(cachep, ac->entry, batchcount, node);
3533 ac->avail -= batchcount;
3534 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
3846 cachep->shared*cachep->batchcount,
3870 cachep->batchcount + cachep->num;
3889 cachep->batchcount + cachep->num;
3932 int batchcount, int shared)
3943 batchcount);
3956 cachep->batchcount = batchcount;
4014 * With debugging enabled, large batchcount lead to excessively long
4015 * periods with disabled local interrupts. Limit the batchcount
4140 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4241 cachep->limit, cachep->batchcount, cachep->shared);
4309 int limit, batchcount, shared, res;
4323 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4331 if (limit < 1 || batchcount < 1 ||
4332 batchcount > limit || shared < 0) {
4336 batchcount, shared);