[<prev] [next>] [day] [month] [year] [list]
Message-Id: <200904151035.04657.knikanth@suse.de>
Date: Wed, 15 Apr 2009 10:35:04 +0530
From: Nikanth Karthikesan <knikanth@...e.de>
To: Jens Axboe <jens.axboe@...cle.com>
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH 1/7] Document that bio_alloc with __GFP_WAIT cannot fail
Document that bio_alloc with __GFP_WAIT cannot fail.
Signed-off-by: Nikanth Karthikesan <knikanth@...e.de>
---
diff --git a/fs/bio.c b/fs/bio.c
index e0c9e54..5b5dfdd 100644
--- a/fs/bio.c
+++ b/fs/bio.c
@@ -348,6 +348,10 @@ err:
return NULL;
}
+/*
+ * This will not fail as long as __GFP_WAIT is specified
+ * in the gfp_mask, as mempool backing is used.
+ */
struct bio *bio_alloc(gfp_t gfp_mask, int nr_iovecs)
{
struct bio *bio = bio_alloc_bioset(gfp_mask, nr_iovecs, fs_bio_set);
--
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