On Wed, 17 Aug 2011, Jeff Layton wrote:
The crash is happening in the bowels of the slab allocator. Specifically, it looks like it's hitting this: /* * The slab was either on partial or free list so * there must be at least one object available for * allocation. */ BUG_ON(slabp->inuse >= cachep->num); ...which looks like maybe the accounting of in-use objects is off. This really sounds like some sort of memory corruption. I've not been able to reproduce this so far, but I also had someone report panic here that might be related: https://bugzilla.redhat.com/show_bug.cgi?id=731278 One thing that might be helpful is turning on page poisoning and redoing this test, that might make it crash sooner and point out the source of the corruption. Even better would be a bisect to track down the cause...
Hi Jeff, root@acerlw:/usr/src/linux# grep CONFIG_PAGE_POISONING .config root@acerlw:/usr/src/linux# ls -l ../linux lrwxrwxrwx 1 root root 13 Aug 17 14:41 ../linux -> linux-3.1-rc2/ root@acerlw:/usr/src/linux# In what kernel is that feature available, or, how do I enable it? Justin. -- To unsubscribe from this list: send the line "unsubscribe linux-cifs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html