• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/mm/

Lines Matching defs:objsize

460 	print_section("Object", p, min_t(unsigned long, s->objsize, PAGE_SIZE));
463 print_section("Redzone", p + s->objsize,
464 s->inuse - s->objsize);
506 memset(p, POISON_FREE, s->objsize - 1);
507 p[s->objsize - 1] = POISON_END;
511 memset(p + s->objsize,
513 s->inuse - s->objsize);
569 * object + s->objsize
572 * objsize == inuse.
591 * If slabcaches are merged then the objsize and inuse boundaries are mostly
651 u8 *endobject = object + s->objsize;
658 endobject, red, s->inuse - s->objsize))
661 if ((s->flags & SLAB_POISON) && s->objsize < s->inuse) {
663 endobject, POISON_INUSE, s->inuse - s->objsize);
670 POISON_FREE, s->objsize - 1) ||
672 p + s->objsize - 1, POISON_END, 1)))
792 print_section("Object", (void *)object, s->objsize);
1027 static unsigned long kmem_cache_flags(unsigned long objsize,
1055 static inline unsigned long kmem_cache_flags(unsigned long objsize,
1565 "default order: %d, min order: %d\n", s->name, s->objsize,
1568 if (oo_order(s->min) > get_order(s->objsize))
1707 if (should_failslab(s->objsize, gfpflags, s->flags))
1724 memset(object, 0, s->objsize);
1726 kmemcheck_slab_alloc(s, gfpflags, object, s->objsize);
1727 kmemleak_alloc_recursive(object, s->objsize, 1, s->flags, gfpflags);
1736 trace_kmem_cache_alloc(_RET_IP_, ret, s->objsize, s->size, gfpflags);
1756 s->objsize, s->size, gfpflags, node);
1860 kmemcheck_slab_free(s, object, s->objsize);
1861 debug_check_no_locks_freed(object, s->objsize);
1863 debug_check_no_obj_freed(object, s->objsize);
2202 unsigned long size = s->objsize;
2231 if ((flags & SLAB_RED_ZONE) && size == s->objsize)
2279 align = calculate_alignment(flags, align, s->objsize);
2327 s->objsize = size;
2338 if (get_order(s->size) > get_order(s->objsize)) {
2405 return s->objsize;
2621 realsize = kmalloc_caches[index].objsize;
2808 return s->objsize;
3225 s->objsize = max(s->objsize, (int)size);
3877 return sprintf(buf, "%d\n", s->objsize);
4590 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "