crypto: acomp - Count error stats differently
authorHerbert Xu <herbert@gondor.apana.org.au>
Thu, 16 Feb 2023 10:35:17 +0000 (18:35 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Tue, 14 Mar 2023 09:06:42 +0000 (17:06 +0800)
commit0a742389bcc00053d63b5271fefb00d3a338d512
treeedac516a4c4495ca15362e1fe7074c68647389de
parent42808e5dc602c12ef3eb42cf96cb416b55205fa4
crypto: acomp - Count error stats differently

Move all stat code specific to acomp into the acomp code.

While we're at it, change the stats so that bytes and counts
are always incremented even in case of error.  This allows the
reference counting to be removed as we can now increment the
counters prior to the operation.

After the operation we simply increase the error count if necessary.
This is safe as errors can only occur synchronously (or rather,
the existing code already ignored asynchronous errors which are
only visible to the callback function).

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/acompress.c
crypto/algapi.c
crypto/compress.h [new file with mode: 0644]
crypto/crypto_user_stat.c
crypto/scompress.c
include/crypto/acompress.h
include/crypto/internal/acompress.h
include/crypto/internal/scompress.h
include/linux/crypto.h