From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tejun Heo Subject: Re: [PATCH UPDATED block#for-2.6.31 2/3] block: set rq->resid_len to blk_rq_bytes() on issue Date: Sun, 17 May 2009 20:32:58 +0900 Message-ID: <4A0FF5EA.3020805@gmail.com> References: <4A0D86DB.9000203@kernel.org> <4A0D87D2.7090806@gmail.com> <4A0E0650.1020500@gmail.com> <4A0FCF52.7070406@panasas.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from rv-out-0506.google.com ([209.85.198.226]:6401 "EHLO rv-out-0506.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753993AbZEQLdD (ORCPT ); Sun, 17 May 2009 07:33:03 -0400 In-Reply-To: <4A0FCF52.7070406@panasas.com> Sender: linux-ide-owner@vger.kernel.org List-Id: linux-ide@vger.kernel.org To: Boaz Harrosh Cc: Jens Axboe , James Bottomley , Linux Kernel , linux-scsi , IDE/ATA development list , Bartlomiej Zolnierkiewicz , Borislav Petkov , Pete Zaitcev , Sergei Shtylyov , Eric Moore , "Darrick J. Wong" Hello, Boaz. Boaz Harrosh wrote: > Surly this is not enough. This is not the only place rq->__data_len > gets a value. Specifically it can be added to in blk_rq_append_bio. > You must then update all places that set rq->__data_len to also set > rq->resid_len. Right, nice spotting, but I think those are the only two places. You now see why I don't like that append thing. :-) > Alternatively you could do a single: > + rq->resid_len = blk_rq_bytes(rq); > > inside blk_fetch_request(q) or before the call to prep_fn, or even at > __elv_add_request(). I think I'll just add resid_len adjustment there right after __data_len manipulation. That code path should really go away eventually. Thanks. -- tejun