diff options
author | Dan Williams <dan.j.williams@intel.com> | 2009-04-08 17:28:37 -0400 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2009-04-08 17:28:37 -0400 |
commit | 099f53cb50e45ef617a9f1d63ceec799e489418b (patch) | |
tree | fd57f259f58bcf615fe2b17734ed0cbec612782d /drivers/md/raid5.c | |
parent | fd74ea65883c7e6903e9b652795f72b723a2be69 (diff) |
async_tx: rename zero_sum to val
'zero_sum' does not properly describe the operation of generating parity
and checking that it validates against an existing buffer. Change the
name of the operation to 'val' (for 'validate'). This is in
anticipation of the p+q case where it is a requirement to identify the
target parity buffers separately from the source buffers, because the
target parity buffers will not have corresponding pq coefficients.
Reviewed-by: Andre Noll <maan@systemlinux.org>
Acked-by: Maciej Sosnowski <maciej.sosnowski@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/md/raid5.c')
-rw-r--r-- | drivers/md/raid5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index 3bbc6d647044..f8d2d35ed298 100644 --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c | |||
@@ -854,7 +854,7 @@ static void ops_run_check(struct stripe_head *sh) | |||
854 | xor_srcs[count++] = dev->page; | 854 | xor_srcs[count++] = dev->page; |
855 | } | 855 | } |
856 | 856 | ||
857 | tx = async_xor_zero_sum(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, | 857 | tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, |
858 | &sh->ops.zero_sum_result, 0, NULL, NULL, NULL); | 858 | &sh->ops.zero_sum_result, 0, NULL, NULL, NULL); |
859 | 859 | ||
860 | atomic_inc(&sh->count); | 860 | atomic_inc(&sh->count); |