[<prev] [next>] [day] [month] [year] [list]
Message-Id: <200904141636.47759.knikanth@suse.de>
Date: Tue, 14 Apr 2009 16:36:47 +0530
From: Nikanth Karthikesan <knikanth@...e.de>
To: Jens Axboe <jens.axboe@...cle.com>
Cc: linux-kernel@...r.kernel.org,
Andrew Morton <akpm@...ux-foundation.org>
Subject: [PATCH 6/6] Handle possible bio_alloc failure in bounce buffer
Handle possible bio_alloc failure in bounce buffer.
Signed-off-by: Nikanth Karthikesan <knikanth@...e.de>
---
Index: linux-2.6/mm/bounce.c
===================================================================
--- linux-2.6.orig/mm/bounce.c
+++ linux-2.6/mm/bounce.c
@@ -202,6 +202,9 @@ static void __blk_queue_bounce(struct re
unsigned int cnt = (*bio_orig)->bi_vcnt;
bio = bio_alloc(GFP_NOIO, cnt);
+ if (unlikely(!bio))
+ panic("Unable to allocate bios\n");
+
memset(bio->bi_io_vec, 0, cnt * sizeof(struct bio_vec));
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists