Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'slab/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6

* 'slab/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6:
slub: Fix a crash during slabinfo -v

+2 -2
+2 -2
mm/slub.c
··· 3401 3401 3402 3402 for_each_free_object(p, s, page->freelist) { 3403 3403 set_bit(slab_index(p, s, addr), map); 3404 - if (!check_object(s, page, p, 0)) 3404 + if (!check_object(s, page, p, SLUB_RED_INACTIVE)) 3405 3405 return 0; 3406 3406 } 3407 3407 3408 3408 for_each_object(p, s, addr, page->objects) 3409 3409 if (!test_bit(slab_index(p, s, addr), map)) 3410 - if (!check_object(s, page, p, 1)) 3410 + if (!check_object(s, page, p, SLUB_RED_ACTIVE)) 3411 3411 return 0; 3412 3412 return 1; 3413 3413 }