From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751426Ab1JLJ1l (ORCPT ); Wed, 12 Oct 2011 05:27:41 -0400 Received: from mx1.redhat.com ([209.132.183.28]:46023 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751119Ab1JLJ1k convert rfc822-to-8bit (ORCPT ); Wed, 12 Oct 2011 05:27:40 -0400 Organization: Red Hat UK Ltd. Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SI4 1TE, United Kingdom. Registered in England and Wales under Company Registration No. 3798903 From: David Howells In-Reply-To: References: <2150.1314882260@redhat.com> <5149.1317036720@redhat.com> <6324.1317308270@redhat.com> <12748.1317313818@redhat.com> <18003.1317336244@redhat.com> <6261.1317385734@redhat.com> <8905.1317984176@redhat.com> <1448.1318338420@redhat.com> To: Mark Moseley Cc: dhowells@redhat.com, Linux filesystem caching discussion list , linux-kernel@vger.kernel.org Subject: Re: [Linux-cachefs] 3.0.3 64-bit Crash running fscache/cachefilesd MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8BIT Date: Wed, 12 Oct 2011 10:26:30 +0100 Message-ID: <8997.1318411590@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Mark Moseley wrote: > >> [37818.485559] kernel BUG at fs/fscache/object-list.c:64! > > > > Hmmm...  An object is being added to the object list twice.  It may > > indicate a free before an object is finished with.  Do you have slab > > debugging turned on? > > It's compiled in but not currently enabled. Should I do so? It can't be turned on or off dynamically. If CONFIG_DEBUG_SLAB is enabled, then it's switched on. > And anything I should be looking for in it? The BUG that you encountered would suggest a piece of memory is still in use as far as parts of fscache is concerned - but it's just been produced by the slab allocator again. This is the sort of thing the slab debugger might catch. David