Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 33514
b: refs/heads/master
c: 3d8f3f3
h: refs/heads/master
v: v3
  • Loading branch information
Heiko Carstens authored and Jeff Garzik committed Aug 19, 2006
1 parent a9c544e commit d71db15
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: 239e44e1f05e2163ee066c07a753f9fb445979b2
refs/heads/master: 3d8f3f3c3697a7603a802427c9226f5dfe6d67ad
8 changes: 4 additions & 4 deletions trunk/drivers/s390/net/qeth_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -8510,9 +8510,9 @@ static int
qeth_ipv6_init(void)
{
qeth_old_arp_constructor = arp_tbl.constructor;
write_lock(&arp_tbl.lock);
write_lock_bh(&arp_tbl.lock);
arp_tbl.constructor = qeth_arp_constructor;
write_unlock(&arp_tbl.lock);
write_unlock_bh(&arp_tbl.lock);

arp_direct_ops = (struct neigh_ops*)
kmalloc(sizeof(struct neigh_ops), GFP_KERNEL);
Expand All @@ -8528,9 +8528,9 @@ qeth_ipv6_init(void)
static void
qeth_ipv6_uninit(void)
{
write_lock(&arp_tbl.lock);
write_lock_bh(&arp_tbl.lock);
arp_tbl.constructor = qeth_old_arp_constructor;
write_unlock(&arp_tbl.lock);
write_unlock_bh(&arp_tbl.lock);
kfree(arp_direct_ops);
}
#endif /* CONFIG_QETH_IPV6 */
Expand Down

0 comments on commit d71db15

Please sign in to comment.