Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965248Ab2B1PAG (ORCPT ); Tue, 28 Feb 2012 10:00:06 -0500 Received: from bedivere.hansenpartnership.com ([66.63.167.143]:43421 "EHLO bedivere.hansenpartnership.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S964997Ab2B1PAE (ORCPT ); Tue, 28 Feb 2012 10:00:04 -0500 Message-ID: <1330441201.2822.126.camel@dabdike.int.hansenpartnership.com> Subject: Re: [PATCH] [SCSI] sr: fix multi-drive performance, remove BKL replacement From: James Bottomley To: Stefan Richter Cc: Jens Axboe , linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org, Arnd Bergmann Date: Tue, 28 Feb 2012 09:00:01 -0600 In-Reply-To: <20120228153244.70413d34@stein> References: <20120228153244.70413d34@stein> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.2.1 Content-Transfer-Encoding: 7bit Mime-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1915 Lines: 40 On Tue, 2012-02-28 at 15:32 +0100, Stefan Richter wrote: > Commit 2a48fc0ab242 "block: autoconvert trivial BKL users to private > mutex" and other commits at the time mechanically swapped BKL for > per-driver global mutexes. If the sr driver is any indication, these > replacements have still not been checked by anybody for their > necessessity, removed where possible, or the sections they serialize > reduced to a necessary minimum. > > The sr_mutex in particular very noticably degraded performance of > CD-DA ripping with multiple drives in parallel. When several > instances of "grip" are used with two or more drives, their GUIs > became laggier, as did the KDE file manager GUI, and drive utilization > was reduced. (During ripping, drive lights flicker instead of staying > on most of the time.) IOW time to rip a stack of CDs was increased. > I didn't measure this but it is highly noticeable. > > On the other hand, I don't see what state sr_mutex would protect. > So I removed it entirely and that works fine for me. > I'm afraid you can't do that: The problem is that we have an entangled set of reference counts that need to be taken and released atomically. If we don't surround them with a mutex you get undefined results from racing last release with new acquire. You can see this usage in sd.c. The sr.c use case looks like bd_mutex would mediate ... but that's because it doesn't use driver shutdown and has no power management functions ... I think I have vague memories that someone is working on pm for cdroms? I don't think the mutex needs to be on the ioctls, though, which is what's causing your performance problems, right? James -- 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/