From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753219Ab0BVNgv (ORCPT ); Mon, 22 Feb 2010 08:36:51 -0500 Received: from ey-out-2122.google.com ([74.125.78.27]:26263 "EHLO ey-out-2122.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752872Ab0BVNgt (ORCPT ); Mon, 22 Feb 2010 08:36:49 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:mail-followup-to:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; b=qr7RBuVnjFMSciMdckv15e8j4Ri9Pf3QBFcN9WzphfFWXmdPvxiu4zYhM3o94wInEI 8sQvCZICVWmBGH8S70yd08vu5t4vlhuCDhUccz/6AHP1r73O2JU6MyhB4axgBJeG4R+I sO4VmsKZU7kkX02V1LUvWXJ+yASZj7YpqZlps= Date: Mon, 22 Feb 2010 16:36:29 +0300 From: Dan Carpenter To: Thomas Gleixner Cc: LKML , rt-users , Ingo Molnar , Steven Rostedt , Peter Zijlstra , Carsten Emde , Clark Williams , Frank Rowand , Robin Gareus , Gregory Haskins , Philippe Reynes , Fernando Lopez-Lezcano , Will Schmidt , Darren Hart , Jan Blunck , Sven-Thorsten Dietrich , Jon Masters , Mark Knecht , John Kacur , Nick Piggin Subject: Re: [ANNOUNCE] 2.6.33-rc8-rt1 Message-ID: <20100222133629.GD5416@bicker> Mail-Followup-To: Dan Carpenter , Thomas Gleixner , LKML , rt-users , Ingo Molnar , Steven Rostedt , Peter Zijlstra , Carsten Emde , Clark Williams , Frank Rowand , Robin Gareus , Gregory Haskins , Philippe Reynes , Fernando Lopez-Lezcano , Will Schmidt , Darren Hart , Jan Blunck , Sven-Thorsten Dietrich , Jon Masters , Mark Knecht , John Kacur , Nick Piggin References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org mm/slab.c 2117 kmem_freepages(cachep, addr, *this_cpu); 2118 if (OFF_SLAB(cachep)) { 2119 if (this_cpu) We already dereferenced "this_cpu" two lines earlier. 2120 __cache_free(cachep->slabp_cache, slabp, this_cpu); 2121 else 2122 kmem_cache_free(cachep->slabp_cache, slabp); regards, dan carpenter