summaryrefslogtreecommitdiffstats
path: root/crypto/algif_skcipher.c
diff options
context:
space:
mode:
authortadeusz.struk@intel.com2015-03-25 15:29:19 +0100
committerDavid S. Miller2015-03-25 16:44:18 +0100
commitac110f4954252b7bbe66268c78c8ece7ac2569b9 (patch)
tree922c536dd9270b9fdf1a343cc47526450df16d09 /crypto/algif_skcipher.c
parenttipc: fix a link reset issue due to retransmission failures (diff)
downloadkernel-qcow2-linux-ac110f4954252b7bbe66268c78c8ece7ac2569b9.tar.gz
kernel-qcow2-linux-ac110f4954252b7bbe66268c78c8ece7ac2569b9.tar.xz
kernel-qcow2-linux-ac110f4954252b7bbe66268c78c8ece7ac2569b9.zip
crypto: algif - fix warn: unsigned 'used' is never less than zero
Change type from unsigned long to int to fix an issue reported by kbuild robot: crypto/algif_skcipher.c:596 skcipher_recvmsg_async() warn: unsigned 'used' is never less than zero. Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'crypto/algif_skcipher.c')
-rw-r--r--crypto/algif_skcipher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/algif_skcipher.c b/crypto/algif_skcipher.c
index 8276f21ea7be..60496d405ebf 100644
--- a/crypto/algif_skcipher.c
+++ b/crypto/algif_skcipher.c
@@ -537,7 +537,7 @@ static int skcipher_recvmsg_async(struct socket *sock, struct msghdr *msg,
while (iov_iter_count(&msg->msg_iter)) {
struct skcipher_async_rsgl *rsgl;
- unsigned long used;
+ int used;
if (!ctx->used) {
err = skcipher_wait_for_data(sk, flags);