PATCH 2.5.1.4: fix rd.c build

Jeff Garzik (jgarzik@mandrakesoft.com)
Thu, 29 Nov 2001 20:18:39 -0500


This is a multi-part message in MIME format.
--------------B671379D82C0D5E1AC21AF6C
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

...just a missed s/bio_size/foo->bi_size/ conversion. please apply.

-- 
Jeff Garzik      | Only so many songs can be sung
Building 1024    | with two lips, two lungs, and one tongue.
MandrakeSoft     |         - nomeansno
--------------B671379D82C0D5E1AC21AF6C
Content-Type: text/plain; charset=us-ascii;
 name="rd.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="rd.patch"

Index: drivers/block/rd.c =================================================================== RCS file: /cvsroot/gkernel/linux_2_5/drivers/block/rd.c,v retrieving revision 1.3 diff -u -r1.3 rd.c --- drivers/block/rd.c 2001/11/30 01:10:57 1.3 +++ drivers/block/rd.c 2001/11/30 01:17:24 @@ -239,7 +239,7 @@ index = sbh->bi_sector >> (PAGE_CACHE_SHIFT - 9); offset = (sbh->bi_sector << 9) & ~PAGE_CACHE_MASK; - size = bio_size(sbh); + size = sbh->bi_size; do { int count; @@ -323,7 +323,7 @@ goto fail; offset = sbh->bi_sector << 9; - len = bio_size(sbh); + len = sbh->bi_size; if ((offset + len) > rd_length[minor]) goto fail;

--------------B671379D82C0D5E1AC21AF6C--

- 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/