Re: [PATCH v2 18/18] scsi: target: iscsi: switch to using the crc32c library

2024-10-25 Thread Ard Biesheuvel
On Fri, 25 Oct 2024 at 21:20, Eric Biggers wrote: > > From: Eric Biggers > > Now that the crc32c() library function directly takes advantage of > architecture-specific optimizations, it is unnecessary to go through the > crypto API. Just use crc32c(). This is much simpler, and it improves > per

[PATCH v2 18/18] scsi: target: iscsi: switch to using the crc32c library

2024-10-25 Thread Eric Biggers
From: Eric Biggers Now that the crc32c() library function directly takes advantage of architecture-specific optimizations, it is unnecessary to go through the crypto API. Just use crc32c(). This is much simpler, and it improves performance due to eliminating the crypto API overhead. Signed-off