aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma
diff options
context:
space:
mode:
authorDan Williams <dan.j.williams@intel.com>2010-02-28 22:20:18 -0700
committerDan Williams <dan.j.williams@intel.com>2010-02-28 22:20:18 -0700
commit67b9124f734b22b30d9adf18c39fe795e2901070 (patch)
tree209e80992ca7722a1ddc82dde8dda1a5e119c666 /drivers/dma
parentdmatest: correct raid6 PQ test (diff)
downloadlinux-dev-67b9124f734b22b30d9adf18c39fe795e2901070.tar.xz
linux-dev-67b9124f734b22b30d9adf18c39fe795e2901070.zip
dmatest: fix handling of an even number of xor_sources
Just like commit ac5d73fc, we need to be careful to use 'src_cnt' as it contains the fixed up number of xor sources (forced odd) to meet dmatest's data verification scheme. Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r--drivers/dma/dmatest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/dmatest.c b/drivers/dma/dmatest.c
index cc0f3294a766..8e409fb50fc0 100644
--- a/drivers/dma/dmatest.c
+++ b/drivers/dma/dmatest.c
@@ -347,7 +347,7 @@ static int dmatest_func(void *data)
else if (thread->type == DMA_XOR)
tx = dev->device_prep_dma_xor(chan,
dma_dsts[0] + dst_off,
- dma_srcs, xor_sources,
+ dma_srcs, src_cnt,
len, flags);
else if (thread->type == DMA_PQ) {
dma_addr_t dma_pq[dst_cnt];