From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756091AbYDGWoR (ORCPT ); Mon, 7 Apr 2008 18:44:17 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752113AbYDGWoF (ORCPT ); Mon, 7 Apr 2008 18:44:05 -0400 Received: from courier.cs.helsinki.fi ([128.214.9.1]:53240 "EHLO mail.cs.helsinki.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752111AbYDGWoD (ORCPT ); Mon, 7 Apr 2008 18:44:03 -0400 Message-ID: <47FAA354.6000704@cs.helsinki.fi> Date: Tue, 08 Apr 2008 01:42:28 +0300 From: Pekka Enberg User-Agent: Thunderbird 2.0.0.12 (Macintosh/20080213) MIME-Version: 1.0 To: Linus Torvalds CC: Hugh Dickins , Peter Zijlstra , Christoph Lameter , James Bottomley , Andrew Morton , FUJITA Tomonori , Jens Axboe , "Rafael J. Wysocki" , linux-kernel@vger.kernel.org Subject: Re: [PATCH] scsi: fix sense_slab/bio swapping livelock References: <1207598115.29991.23.camel@lappy> <47FA8B5A.5090104@cs.helsinki.fi> <47FA8CB0.6070106@cs.helsinki.fi> <47FA937E.6000009@cs.helsinki.fi> <47FA94AE.4070803@cs.helsinki.fi> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 8 Apr 2008, Pekka J Enberg wrote: >> So something like the following (totally untested) patch modulo the >> pre-allocation bits. Linus Torvalds wrote: > Hmm. I didn't check, but won't this cause problems on the freeing path > when we call kmem_cache_free() on the result but with the wrong "struct > kmem_cache" pointer? Aah, yes. I was thinking of kmalloc() here for which it works as expected because kfree() will return the page to the proper cache. But we can relax the rules of kmem_cache_free() a bit to make this work (but perhaps add a WARN_ON() there if cache doesn't match page->slab). Pekka