OSDN Git Service

tls: rx: fix return value for async crypto
authorJakub Kicinski <kuba@kernel.org>
Mon, 27 Feb 2023 18:12:01 +0000 (10:12 -0800)
committerJakub Kicinski <kuba@kernel.org>
Tue, 28 Feb 2023 22:27:18 +0000 (14:27 -0800)
commit4d42cd6bc2ac1b9be50ade13771daec90c9d18b1
tree20ac947a51498dffa039e15477ab0191ff09f1c2
parentca643ccf933a10732d29f77089736334179577a5
tls: rx: fix return value for async crypto

Gaurav reports that TLS Rx is broken with async crypto
accelerators. The commit under fixes missed updating
the retval byte counting logic when updating how records
are stored. Even tho both before and after the change
'decrypted' was updated inside the main loop, it was
completely overwritten when processing the async
completions. Now that the rx_list only holds
non-zero-copy records we need to add, not overwrite.

Reported-and-bisected-by: Gaurav Jain <gaurav.jain@nxp.com>
Fixes: cbbdee9918a2 ("tls: rx: async: don't put async zc on the list")
Link: https://bugzilla.kernel.org/show_bug.cgi?id=217064
Tested-by: Gaurav Jain <gaurav.jain@nxp.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Link: https://lore.kernel.org/r/20230227181201.1793772-1-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/tls/tls_sw.c