From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751211Ab1AEN4J (ORCPT ); Wed, 5 Jan 2011 08:56:09 -0500 Received: from mx2.fusionio.com ([64.244.102.31]:48253 "EHLO mx2.fusionio.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750854Ab1AEN4I (ORCPT ); Wed, 5 Jan 2011 08:56:08 -0500 X-ASG-Debug-ID: 1294235766-71f760120001-xx1T2L X-Barracuda-Envelope-From: JAxboe@fusionio.com Message-ID: <4D247867.9040502@fusionio.com> Date: Wed, 5 Jan 2011 14:55:51 +0100 From: Jens Axboe MIME-Version: 1.0 To: Greg KH CC: Jerome Marchand , Vivek Goyal , Satoru Takeuchi , Linus Torvalds , Yasuaki Ishimatsu , "linux-kernel@vger.kernel.org" Subject: Re: [PATCH 2/2] block: fix accounting bug on cross partition merges References: <20101210165553.GE31737@redhat.com> <4D07D2AC.6000500@fusionio.com> <4D0B68AF.80804@redhat.com> <4D0BB4A1.8080305@fusionio.com> <4D13664C.3020500@redhat.com> <20101223153915.GE9502@redhat.com> <4D13810B.8000304@redhat.com> <20101224192916.GB2082@redhat.com> <4D23423A.60707@redhat.com> <4D2342E1.8010405@redhat.com> <20110104210011.GB4180@kroah.com> X-ASG-Orig-Subj: Re: [PATCH 2/2] block: fix accounting bug on cross partition merges In-Reply-To: <20110104210011.GB4180@kroah.com> Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit X-Barracuda-Connect: mail1.int.fusionio.com[10.101.1.21] X-Barracuda-Start-Time: 1294235766 X-Barracuda-URL: http://10.101.1.181:8000/cgi-mod/mark.cgi X-Barracuda-Spam-Score: 0.41 X-Barracuda-Spam-Status: No, SCORE=0.41 using global scores of TAG_LEVEL=1000.0 QUARANTINE_LEVEL=1000.0 KILL_LEVEL=9.0 tests=SUBJECT_FUZZY_TION X-Barracuda-Spam-Report: Code version 3.2, rules version 3.2.2.51500 Rule breakdown below pts rule name description ---- ---------------------- -------------------------------------------------- 0.41 SUBJECT_FUZZY_TION Attempt to obfuscate words in Subject: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2011-01-04 22:00, Greg KH wrote: > On Tue, Jan 04, 2011 at 04:55:13PM +0100, Jerome Marchand wrote: >> Also add a refcount to struct hd_struct to keep the partition in >> memory as long as users exist. We use kref_test_and_get() to ensure >> we don't add a reference to a partition which is going away. > > No, don't do this, use a kref correctly and no such function should be > needed. > >> + } else { >> + part = disk_map_sector_rcu(rq->rq_disk, blk_rq_pos(rq)); > > That is the function that should properly increment the reference count > on the object. If the object is "being removed", then it will return > NULL and you need to check that. Do that and you do not need to add: It doesn't matter if you do it in there of after the fact, since the "lock" (RCU) is being held across the call. See my original suggestion here: https://lkml.org/lkml/2010/12/17/275 -- Jens Axboe