Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 109673
b: refs/heads/master
c: 51807e9
h: refs/heads/master
i:
  109671: 47805e2
v: v3
  • Loading branch information
Alexey Dobriyan authored and David S. Miller committed Sep 8, 2008
1 parent 2d0a1ed commit e4d8e28
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 887464a41fde7e9e1e11ca86748338033c502446
refs/heads/master: 51807e91a76a531d059ec7ce3395c435e4df52a8
8 changes: 4 additions & 4 deletions trunk/net/netfilter/nf_conntrack_proto_gre.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ static LIST_HEAD(gre_keymap_list);

void nf_ct_gre_keymap_flush(void)
{
struct list_head *pos, *n;
struct nf_ct_gre_keymap *km, *tmp;

write_lock_bh(&nf_ct_gre_lock);
list_for_each_safe(pos, n, &gre_keymap_list) {
list_del(pos);
kfree(pos);
list_for_each_entry_safe(km, tmp, &gre_keymap_list, list) {
list_del(&km->list);
kfree(km);
}
write_unlock_bh(&nf_ct_gre_lock);
}
Expand Down

0 comments on commit e4d8e28

Please sign in to comment.