Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751508AbZG3TO0 (ORCPT ); Thu, 30 Jul 2009 15:14:26 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750966AbZG3TOZ (ORCPT ); Thu, 30 Jul 2009 15:14:25 -0400 Received: from cmpxchg.org ([85.214.51.133]:46044 "EHLO cmpxchg.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750759AbZG3TOZ (ORCPT ); Thu, 30 Jul 2009 15:14:25 -0400 Date: Thu, 30 Jul 2009 21:12:14 +0200 From: Johannes Weiner To: =?utf-8?B?SsO2cm4=?= Engel Cc: Julia Lawall , linux-mm@kvack.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org Subject: Re: [PATCH 3/5] mm: Add kmalloc NULL tests Message-ID: <20090730191213.GA9471@cmpxchg.org> References: <20090730153658.GA22986@cmpxchg.org> <20090730183558.GA11763@logfs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20090730183558.GA11763@logfs.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1248 Lines: 31 On Thu, Jul 30, 2009 at 08:35:59PM +0200, Jörn Engel wrote: > On Thu, 30 July 2009 17:36:58 +0200, Johannes Weiner wrote: > > On Thu, Jul 30, 2009 at 04:10:22PM +0200, Julia Lawall wrote: > > > > > diff --git a/mm/slab.c b/mm/slab.c > > > index 7b5d4de..972e427 100644 > > > --- a/mm/slab.c > > > +++ b/mm/slab.c > > > @@ -1502,6 +1502,7 @@ void __init kmem_cache_init(void) > > > > > > ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT); > > > > > > + BUG_ON(!ptr); > > > BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache); > > > memcpy(ptr, cpu_cache_get(&cache_cache), > > > sizeof(struct arraycache_init)); > > > > This does not change the end result when the allocation fails: you get > > a stacktrace and a kernel panic. Leaving it as is saves a line of > > code. > > According to http://lwn.net/Articles/342420/, there may be a subtle > difference. You will probably have a hard time establishing a userspace mapping before slab is initializied :) -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/