projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ed0e7e0
)
[IPSEC]: Fix scatterlist handling in skb_icv_walk().
author
David S. Miller
<davem@sunset.davemloft.net>
Fri, 26 Oct 2007 07:39:27 +0000
(
00:39
-0700)
committer
David S. Miller
<davem@sunset.davemloft.net>
Fri, 26 Oct 2007 07:39:27 +0000
(
00:39
-0700)
Use sg_init_one() and sg_init_table() as needed.
Signed-off-by: David S. Miller <davem@davemloft.net>
net/xfrm/xfrm_algo.c
patch
|
blob
|
history
diff --git
a/net/xfrm/xfrm_algo.c
b/net/xfrm/xfrm_algo.c
index
fa45989
..
0426388
100644
(file)
--- a/
net/xfrm/xfrm_algo.c
+++ b/
net/xfrm/xfrm_algo.c
@@
-553,7
+553,7
@@
int skb_icv_walk(const struct sk_buff *skb, struct hash_desc *desc,
if (copy > len)
copy = len;
- sg_
set_buf
(&sg, skb->data + offset, copy);
+ sg_
init_one
(&sg, skb->data + offset, copy);
err = icv_update(desc, &sg, copy);
if (unlikely(err))
@@
-576,8
+576,9
@@
int skb_icv_walk(const struct sk_buff *skb, struct hash_desc *desc,
if (copy > len)
copy = len;
+ sg_init_table(&sg, 1);
sg_set_page(&sg, frag->page, copy,
-
frag->page_offset + offset-start);
+ frag->page_offset + offset-start);
err = icv_update(desc, &sg, copy);
if (unlikely(err))