From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Wed, 30 Apr 2003 23:31:43 -0700 From: Andrew Morton Subject: Re: [BUG] 2.5.68-mm2 and list.h Message-Id: <20030430233143.575d7af1.akpm@digeo.com> In-Reply-To: <873cjznq7v.fsf@lapper.ihatent.com> References: <20030423012046.0535e4fd.akpm@digeo.com> <873cjznq7v.fsf@lapper.ihatent.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org Return-Path: To: Alexander Hoogerhuis Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org List-ID: Alexander Hoogerhuis wrote: > > kernel BUG at include/linux/list.h:140! > Call Trace: > [] devfs_d_revalidate_wait+0x181/0x18d Yes. Apparently, devfs has some programming flaws. For now, please just delete the new debug tests in include/linux/list.h:list_del(): #include /* BUG_ON */ static inline void list_del(struct list_head *entry) { BUG_ON(entry->prev->next != entry); BUG_ON(entry->next->prev != entry); __list_del(entry->prev, entry->next); } Those BUG_ON's. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: aart@kvack.org