Re: [PATCH 1/1] It needs to check offset array is NULL or not in async_xor_offs

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Thu, May 27, 2021 at 11:16 PM Xiao Ni <xni@xxxxxxxxxx> wrote:
>
> Now we support sharing one big page when PAGE_SIZE is not equal 4096.
> 4096 bytes is the default stripe size. To support this it adds a
> page offset array in raid5_percpu's scribble. It passes the page
> offset array to async_xor_offs. But there are some users that don't
> use the page offset array. In raid5-ppl.c, async_xor passes NULL to
> asynx_xor_offs. So it needs to check src_offs is NULL or not.
>
> Fixes: ceaf2966ab08(async_xor: increase src_offs when dropping destination page)
> Reported-by: Oleksandr Shchirskyi <oleksandr.shchirskyi@xxxxxxxxxxxxxxx>
> Signed-off-by: Xiao Ni <xni@xxxxxxxxxx>

Oleksandr,

Could you please verify this fixes the issue, and reply with your Tested-by?

Thanks,
Song

> ---
>  crypto/async_tx/async_xor.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/crypto/async_tx/async_xor.c b/crypto/async_tx/async_xor.c
> index 6cd7f70..d8a9152 100644
> --- a/crypto/async_tx/async_xor.c
> +++ b/crypto/async_tx/async_xor.c
> @@ -233,7 +233,8 @@ async_xor_offs(struct page *dest, unsigned int offset,
>                 if (submit->flags & ASYNC_TX_XOR_DROP_DST) {
>                         src_cnt--;
>                         src_list++;
> -                       src_offs++;
> +                       if (src_offs)
> +                               src_offs++;
>                 }
>
>                 /* wait for any prerequisite operations */
> --
> 2.7.5
>



[Index of Archives]     [Linux RAID Wiki]     [ATA RAID]     [Linux SCSI Target Infrastructure]     [Linux Block]     [Linux IDE]     [Linux SCSI]     [Linux Hams]     [Device Mapper]     [Device Mapper Cryptographics]     [Kernel]     [Linux Admin]     [Linux Net]     [GFS]     [RPM]     [git]     [Yosemite Forum]


  Powered by Linux