Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030461AbVKPTzk (ORCPT ); Wed, 16 Nov 2005 14:55:40 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1030476AbVKPTzk (ORCPT ); Wed, 16 Nov 2005 14:55:40 -0500 Received: from nproxy.gmail.com ([64.233.182.201]:17768 "EHLO nproxy.gmail.com") by vger.kernel.org with ESMTP id S1030461AbVKPTzh convert rfc822-to-8bit (ORCPT ); Wed, 16 Nov 2005 14:55:37 -0500 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=uBVP2wAyY/EVlCK8xeuQunZG3Dk/V4H7+vvB/3w3JszTc4lDBEeqGzoj8cfh0uW8Gy/+InKfkFjEy5NtqALuiHwGSdIXIT3oeVlVEd2BQxQe1KrkAEPc2PlI9LIao0KXKQUzG6ADxS5g9dwweBxDs/PX/IhdgDPJeXt15PQjqbs= Message-ID: <58cb370e0511161155m1b260895t173c843e7a016f78@mail.gmail.com> Date: Wed, 16 Nov 2005 20:55:36 +0100 From: Bartlomiej Zolnierkiewicz To: Jens Axboe Subject: Re: [PATCH] libata error handling fixes (ATAPI) Cc: Mike Christie , Jeff Garzik , Tejun Heo , linux-ide@vger.kernel.org, lkml , SCSI Mailing List In-Reply-To: <58cb370e0511161146j4e85ae69y9aad4c9d4e6972e4@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Content-Disposition: inline References: <4379C062.3010302@pobox.com> <20051115184131.GJ7787@suse.de> <20051116124035.GX7787@suse.de> <58cb370e0511160704w4803a085h7bd6ab352d8c94e6@mail.gmail.com> <20051116153119.GN7787@suse.de> <58cb370e0511160806t1defd373w981e213d1cdeb2b3@mail.gmail.com> <20051116171051.GP7787@suse.de> <58cb370e0511161111u7e99c74ufe0bb9019619d5d0@mail.gmail.com> <20051116192205.GR7787@suse.de> <58cb370e0511161146j4e85ae69y9aad4c9d4e6972e4@mail.gmail.com> Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3241 Lines: 76 On 11/16/05, Bartlomiej Zolnierkiewicz wrote: > On 11/16/05, Jens Axboe wrote: > > On Wed, Nov 16 2005, Bartlomiej Zolnierkiewicz wrote: > > > On 11/16/05, Jens Axboe wrote: > > > > On Wed, Nov 16 2005, Bartlomiej Zolnierkiewicz wrote: > > > > > On 11/16/05, Jens Axboe wrote: > > > > > > On Wed, Nov 16 2005, Bartlomiej Zolnierkiewicz wrote: > > > > > > > On 11/16/05, Jens Axboe wrote: > > > > > > > > > > > > > > > I updated that patch, and converted IDE and SCSI to use it. See the > > > > > > > > results here: > > > > > > > > > > > > > > > > http://brick.kernel.dk/git/?p=linux-2.6-block.git;a=shortlog;h=blk-softirq > > > > > > > > > > > > > > I like it but: > > > > > > > > > > > > > > * "we know it's either an FS or PC request" assumption in > > > > > > > ide_softirq_done() is really wrong > > > > > > > > > > > > It used to be correct :-) > > > > > > > > > > Sorry but it has been always like that, > > > > > other requests also pass through ide_end_request() > > > > > (which of course needs fixing). > > > > > > > > You misunderstand, for calls to blk_complete_request() it wasn't true > > > > initially since it always obyed rq_all_done() (which returns 0 for > > > > non-fs and non-pc requests). > > > > > > from blk_complete_request() [ the only user of rq_all_done() ]: > > > > > > + /* > > > + * for partial completions, fall back to normal end io handling. > > > + */ > > > + if (unlikely(!partial_ok && !rq_all_done(req, nbytes))) > > > + if (end_that_request_chunk(req, uptodate, nbytes)) > > > + return 1; > > > > > > We still will end up with using ide_softirq_done() for !rq_all_done() > > > case (non FS/PC request) because majority of them (all?) don't use > > > partial completions. > > > > Yes, that's what it looks like now... Note I wrote "wasn't", it used to > > look like this: > > > > if (!rq_all_done(req, nbytes)) { > > end_that_request_chunk(..); > > return; > > } > > > > which of course didn't work, so it was changed to the above which then > > broke the assumption of what type of requests we expect to see in > > ide_softirq_done(). We can't generically handle this case, so it's > > probably best to just add this logic to __ide_end_request() - it's just > > another case for _not_ using the blk_complete_request() path, just like > > the partial case. > > Sounds better but I honestly think that you simply cannot obtain > reliable nr_sectors to complete for FS/PC requests just from the > request type. Two examples are: failed disk flush requests and > cd noretry requests (both are of FS type). first example is bad :-) > IMO the best way to fix it is to actually move more (not less!) of > the logic from driver->end_request() paths to ide_softirq_done(). Your latest patch is also a good way to fix it (now the only thing left is rq->errors/rq->retries discussed earlier). Bartlomiej - 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/