Commit 374916ed authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'md-3.5-fixes' of git://neil.brown.name/md

Pull two md fixes from NeilBrown:
 "One sparse-warning fix, one bugfix for 3.4-stable"

* tag 'md-3.5-fixes' of git://neil.brown.name/md:
  md: raid1/raid10: fix problem with merge_bvec_fn
  lib/raid6: fix sparse warnings in recovery functions
parents 9e68447f aba336bd
...@@ -2550,6 +2550,7 @@ static struct r1conf *setup_conf(struct mddev *mddev) ...@@ -2550,6 +2550,7 @@ static struct r1conf *setup_conf(struct mddev *mddev)
err = -EINVAL; err = -EINVAL;
spin_lock_init(&conf->device_lock); spin_lock_init(&conf->device_lock);
rdev_for_each(rdev, mddev) { rdev_for_each(rdev, mddev) {
struct request_queue *q;
int disk_idx = rdev->raid_disk; int disk_idx = rdev->raid_disk;
if (disk_idx >= mddev->raid_disks if (disk_idx >= mddev->raid_disks
|| disk_idx < 0) || disk_idx < 0)
...@@ -2562,6 +2563,9 @@ static struct r1conf *setup_conf(struct mddev *mddev) ...@@ -2562,6 +2563,9 @@ static struct r1conf *setup_conf(struct mddev *mddev)
if (disk->rdev) if (disk->rdev)
goto abort; goto abort;
disk->rdev = rdev; disk->rdev = rdev;
q = bdev_get_queue(rdev->bdev);
if (q->merge_bvec_fn)
mddev->merge_check_needed = 1;
disk->head_position = 0; disk->head_position = 0;
} }
......
...@@ -3475,6 +3475,7 @@ static int run(struct mddev *mddev) ...@@ -3475,6 +3475,7 @@ static int run(struct mddev *mddev)
rdev_for_each(rdev, mddev) { rdev_for_each(rdev, mddev) {
long long diff; long long diff;
struct request_queue *q;
disk_idx = rdev->raid_disk; disk_idx = rdev->raid_disk;
if (disk_idx < 0) if (disk_idx < 0)
...@@ -3493,6 +3494,9 @@ static int run(struct mddev *mddev) ...@@ -3493,6 +3494,9 @@ static int run(struct mddev *mddev)
goto out_free_conf; goto out_free_conf;
disk->rdev = rdev; disk->rdev = rdev;
} }
q = bdev_get_queue(rdev->bdev);
if (q->merge_bvec_fn)
mddev->merge_check_needed = 1;
diff = (rdev->new_data_offset - rdev->data_offset); diff = (rdev->new_data_offset - rdev->data_offset);
if (!mddev->reshape_backwards) if (!mddev->reshape_backwards)
diff = -diff; diff = -diff;
......
...@@ -22,8 +22,8 @@ ...@@ -22,8 +22,8 @@
#include <linux/raid/pq.h> #include <linux/raid/pq.h>
/* Recover two failed data blocks. */ /* Recover two failed data blocks. */
void raid6_2data_recov_intx1(int disks, size_t bytes, int faila, int failb, static void raid6_2data_recov_intx1(int disks, size_t bytes, int faila,
void **ptrs) int failb, void **ptrs)
{ {
u8 *p, *q, *dp, *dq; u8 *p, *q, *dp, *dq;
u8 px, qx, db; u8 px, qx, db;
...@@ -66,7 +66,8 @@ void raid6_2data_recov_intx1(int disks, size_t bytes, int faila, int failb, ...@@ -66,7 +66,8 @@ void raid6_2data_recov_intx1(int disks, size_t bytes, int faila, int failb,
} }
/* Recover failure of one data block plus the P block */ /* Recover failure of one data block plus the P block */
void raid6_datap_recov_intx1(int disks, size_t bytes, int faila, void **ptrs) static void raid6_datap_recov_intx1(int disks, size_t bytes, int faila,
void **ptrs)
{ {
u8 *p, *q, *dq; u8 *p, *q, *dq;
const u8 *qmul; /* Q multiplier table */ const u8 *qmul; /* Q multiplier table */
......
...@@ -19,8 +19,8 @@ static int raid6_has_ssse3(void) ...@@ -19,8 +19,8 @@ static int raid6_has_ssse3(void)
boot_cpu_has(X86_FEATURE_SSSE3); boot_cpu_has(X86_FEATURE_SSSE3);
} }
void raid6_2data_recov_ssse3(int disks, size_t bytes, int faila, int failb, static void raid6_2data_recov_ssse3(int disks, size_t bytes, int faila,
void **ptrs) int failb, void **ptrs)
{ {
u8 *p, *q, *dp, *dq; u8 *p, *q, *dp, *dq;
const u8 *pbmul; /* P multiplier table for B data */ const u8 *pbmul; /* P multiplier table for B data */
...@@ -194,7 +194,8 @@ void raid6_2data_recov_ssse3(int disks, size_t bytes, int faila, int failb, ...@@ -194,7 +194,8 @@ void raid6_2data_recov_ssse3(int disks, size_t bytes, int faila, int failb,
} }
void raid6_datap_recov_ssse3(int disks, size_t bytes, int faila, void **ptrs) static void raid6_datap_recov_ssse3(int disks, size_t bytes, int faila,
void **ptrs)
{ {
u8 *p, *q, *dq; u8 *p, *q, *dq;
const u8 *qmul; /* Q multiplier table */ const u8 *qmul; /* Q multiplier table */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment