Skip to content
Snippets Groups Projects
Commit c3a20692 authored by Herbert Xu's avatar Herbert Xu Committed by David S. Miller
Browse files

[RPC]: Kill bogus kmap in krb5


While I was going through the crypto users recently, I noticed this
bogus kmap in sunrpc.  It's totally unnecessary since the crypto
layer will do its own kmap before touching the data.  Besides, the
kmap is throwing the return value away.

Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 14869c38
No related branches found
No related tags found
No related merge requests found
...@@ -185,9 +185,7 @@ make_checksum(s32 cksumtype, char *header, int hdrlen, struct xdr_buf *body, ...@@ -185,9 +185,7 @@ make_checksum(s32 cksumtype, char *header, int hdrlen, struct xdr_buf *body,
sg->page = body->pages[i]; sg->page = body->pages[i];
sg->offset = offset; sg->offset = offset;
sg->length = thislen; sg->length = thislen;
kmap(sg->page); /* XXX kmap_atomic? */
crypto_digest_update(tfm, sg, 1); crypto_digest_update(tfm, sg, 1);
kunmap(sg->page);
len -= thislen; len -= thislen;
i++; i++;
offset = 0; offset = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment