aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/md/raid1.c2
-rw-r--r--drivers/md/raid10.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c
index 3362cfc8073c..40f58d3b67ff 100644
--- a/drivers/md/raid1.c
+++ b/drivers/md/raid1.c
@@ -100,7 +100,7 @@ static void * r1buf_pool_alloc(gfp_t gfp_flags, void *data)
100 * Allocate bios : 1 for reading, n-1 for writing 100 * Allocate bios : 1 for reading, n-1 for writing
101 */ 101 */
102 for (j = pi->raid_disks ; j-- ; ) { 102 for (j = pi->raid_disks ; j-- ; ) {
103 bio = bio_alloc(gfp_flags, RESYNC_PAGES); 103 bio = bio_kmalloc(gfp_flags, RESYNC_PAGES);
104 if (!bio) 104 if (!bio)
105 goto out_free_bio; 105 goto out_free_bio;
106 r1_bio->bios[j] = bio; 106 r1_bio->bios[j] = bio;
diff --git a/drivers/md/raid10.c b/drivers/md/raid10.c
index 8f5543a62416..6709cb255200 100644
--- a/drivers/md/raid10.c
+++ b/drivers/md/raid10.c
@@ -120,7 +120,7 @@ static void * r10buf_pool_alloc(gfp_t gfp_flags, void *data)
120 * Allocate bios. 120 * Allocate bios.
121 */ 121 */
122 for (j = nalloc ; j-- ; ) { 122 for (j = nalloc ; j-- ; ) {
123 bio = bio_alloc(gfp_flags, RESYNC_PAGES); 123 bio = bio_kmalloc(gfp_flags, RESYNC_PAGES);
124 if (!bio) 124 if (!bio)
125 goto out_free_bio; 125 goto out_free_bio;
126 r10_bio->devs[j].bio = bio; 126 r10_bio->devs[j].bio = bio;