diff options
Diffstat (limited to 'net/netlabel')
-rw-r--r-- | net/netlabel/netlabel_domainhash.c | 2 | ||||
-rw-r--r-- | net/netlabel/netlabel_unlabeled.c | 8 |
2 files changed, 4 insertions, 6 deletions
diff --git a/net/netlabel/netlabel_domainhash.c b/net/netlabel/netlabel_domainhash.c index 7a10bbe02c13..c5d9f97ef217 100644 --- a/net/netlabel/netlabel_domainhash.c +++ b/net/netlabel/netlabel_domainhash.c | |||
@@ -682,7 +682,7 @@ struct netlbl_domaddr6_map *netlbl_domhsh_getentry_af6(const char *domain, | |||
682 | * buckets and @skip_chain entries. For each entry in the table call | 682 | * buckets and @skip_chain entries. For each entry in the table call |
683 | * @callback, if @callback returns a negative value stop 'walking' through the | 683 | * @callback, if @callback returns a negative value stop 'walking' through the |
684 | * table and return. Updates the values in @skip_bkt and @skip_chain on | 684 | * table and return. Updates the values in @skip_bkt and @skip_chain on |
685 | * return. Returns zero on succcess, negative values on failure. | 685 | * return. Returns zero on success, negative values on failure. |
686 | * | 686 | * |
687 | */ | 687 | */ |
688 | int netlbl_domhsh_walk(u32 *skip_bkt, | 688 | int netlbl_domhsh_walk(u32 *skip_bkt, |
diff --git a/net/netlabel/netlabel_unlabeled.c b/net/netlabel/netlabel_unlabeled.c index fb357f010189..98ed22ee2ff4 100644 --- a/net/netlabel/netlabel_unlabeled.c +++ b/net/netlabel/netlabel_unlabeled.c | |||
@@ -472,13 +472,12 @@ int netlbl_unlhsh_add(struct net *net, | |||
472 | 472 | ||
473 | rcu_read_lock(); | 473 | rcu_read_lock(); |
474 | if (dev_name != NULL) { | 474 | if (dev_name != NULL) { |
475 | dev = dev_get_by_name(net, dev_name); | 475 | dev = dev_get_by_name_rcu(net, dev_name); |
476 | if (dev == NULL) { | 476 | if (dev == NULL) { |
477 | ret_val = -ENODEV; | 477 | ret_val = -ENODEV; |
478 | goto unlhsh_add_return; | 478 | goto unlhsh_add_return; |
479 | } | 479 | } |
480 | ifindex = dev->ifindex; | 480 | ifindex = dev->ifindex; |
481 | dev_put(dev); | ||
482 | iface = netlbl_unlhsh_search_iface(ifindex); | 481 | iface = netlbl_unlhsh_search_iface(ifindex); |
483 | } else { | 482 | } else { |
484 | ifindex = 0; | 483 | ifindex = 0; |
@@ -737,13 +736,12 @@ int netlbl_unlhsh_remove(struct net *net, | |||
737 | 736 | ||
738 | rcu_read_lock(); | 737 | rcu_read_lock(); |
739 | if (dev_name != NULL) { | 738 | if (dev_name != NULL) { |
740 | dev = dev_get_by_name(net, dev_name); | 739 | dev = dev_get_by_name_rcu(net, dev_name); |
741 | if (dev == NULL) { | 740 | if (dev == NULL) { |
742 | ret_val = -ENODEV; | 741 | ret_val = -ENODEV; |
743 | goto unlhsh_remove_return; | 742 | goto unlhsh_remove_return; |
744 | } | 743 | } |
745 | iface = netlbl_unlhsh_search_iface(dev->ifindex); | 744 | iface = netlbl_unlhsh_search_iface(dev->ifindex); |
746 | dev_put(dev); | ||
747 | } else | 745 | } else |
748 | iface = rcu_dereference(netlbl_unlhsh_def); | 746 | iface = rcu_dereference(netlbl_unlhsh_def); |
749 | if (iface == NULL) { | 747 | if (iface == NULL) { |
@@ -1552,7 +1550,7 @@ int netlbl_unlabel_getattr(const struct sk_buff *skb, | |||
1552 | struct netlbl_unlhsh_iface *iface; | 1550 | struct netlbl_unlhsh_iface *iface; |
1553 | 1551 | ||
1554 | rcu_read_lock(); | 1552 | rcu_read_lock(); |
1555 | iface = netlbl_unlhsh_search_iface_def(skb->iif); | 1553 | iface = netlbl_unlhsh_search_iface_def(skb->skb_iif); |
1556 | if (iface == NULL) | 1554 | if (iface == NULL) |
1557 | goto unlabel_getattr_nolabel; | 1555 | goto unlabel_getattr_nolabel; |
1558 | switch (family) { | 1556 | switch (family) { |