2015-05-06 09:18:51

by Akinobu Mita

[permalink] [raw]
Subject: [PATCH -next] crct10dif: remove extra function call in crc_t10dif() and crc_t10dif_update()

Calling crypto_shash_import() in crc_t10dif() and crc_t10dif_update()
is overkill as the existing crct10dif modules (crct10dif-generic and
crct10dif-pclmul) don't require.

We also do the same thing with crc32c() in lib/libcrc32.c.

Signed-off-by: Akinobu Mita <[email protected]>
Cc: Tim Chen <[email protected]>
Cc: Herbert Xu <[email protected]>
Cc: "David S. Miller" <[email protected]>
Cc: [email protected]
Cc: Nicholas Bellinger <[email protected]>
Cc: Sagi Grimberg <[email protected]>
Cc: "Martin K. Petersen" <[email protected]>
Cc: Christoph Hellwig <[email protected]>
Cc: "James E.J. Bottomley" <[email protected]>
Cc: [email protected]
Cc: [email protected]
---
lib/crc-t10dif.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/crc-t10dif.c b/lib/crc-t10dif.c
index d775737..1ad33e5 100644
--- a/lib/crc-t10dif.c
+++ b/lib/crc-t10dif.c
@@ -32,9 +32,8 @@ __u16 crc_t10dif_update(__u16 crc, const unsigned char *buffer, size_t len)

desc.shash.tfm = crct10dif_tfm;
desc.shash.flags = 0;
+ *(__u16 *)desc.ctx = crc;

- err = crypto_shash_import(&desc.shash, &crc);
- BUG_ON(err);
err = crypto_shash_update(&desc.shash, buffer, len);
BUG_ON(err);

--
1.9.1



2015-05-08 05:11:18

by Nicholas A. Bellinger

[permalink] [raw]
Subject: Re: [PATCH -next] crct10dif: remove extra function call in crc_t10dif() and crc_t10dif_update()

On Wed, 2015-05-06 at 18:18 +0900, Akinobu Mita wrote:
> Calling crypto_shash_import() in crc_t10dif() and crc_t10dif_update()
> is overkill as the existing crct10dif modules (crct10dif-generic and
> crct10dif-pclmul) don't require.
>
> We also do the same thing with crc32c() in lib/libcrc32.c.
>
> Signed-off-by: Akinobu Mita <[email protected]>
> Cc: Tim Chen <[email protected]>
> Cc: Herbert Xu <[email protected]>
> Cc: "David S. Miller" <[email protected]>
> Cc: [email protected]
> Cc: Nicholas Bellinger <[email protected]>
> Cc: Sagi Grimberg <[email protected]>
> Cc: "Martin K. Petersen" <[email protected]>
> Cc: Christoph Hellwig <[email protected]>
> Cc: "James E.J. Bottomley" <[email protected]>
> Cc: [email protected]
> Cc: [email protected]
> ---
> lib/crc-t10dif.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/lib/crc-t10dif.c b/lib/crc-t10dif.c
> index d775737..1ad33e5 100644
> --- a/lib/crc-t10dif.c
> +++ b/lib/crc-t10dif.c
> @@ -32,9 +32,8 @@ __u16 crc_t10dif_update(__u16 crc, const unsigned char *buffer, size_t len)
>
> desc.shash.tfm = crct10dif_tfm;
> desc.shash.flags = 0;
> + *(__u16 *)desc.ctx = crc;
>
> - err = crypto_shash_import(&desc.shash, &crc);
> - BUG_ON(err);
> err = crypto_shash_update(&desc.shash, buffer, len);
> BUG_ON(err);
>

Applied + squashed into the original commit in target-pending/for-next:

lib: introduce crc_t10dif_update()

Please let me know if anything else needs to be applied.

Thanks Akinobu + Tim + Herbert!

--nab