batman_if->if_status = IF_INACTIVE;
        orig_hash_add_if(batman_if, bat_priv->num_ifaces);
 
+       batman_if->batman_adv_ptype.type = __constant_htons(ETH_P_BATMAN);
+       batman_if->batman_adv_ptype.func = batman_skb_recv;
+       batman_if->batman_adv_ptype.dev = batman_if->net_dev;
+       dev_add_pack(&batman_if->batman_adv_ptype);
+
        atomic_set(&batman_if->seqno, 1);
        atomic_set(&batman_if->frag_seqno, 1);
        bat_info(soft_device, "Adding interface: %s\n", batman_if->dev);
                return;
 
        bat_info(soft_device, "Removing interface: %s\n", batman_if->dev);
+       dev_remove_pack(&batman_if->batman_adv_ptype);
+
        bat_priv->num_ifaces--;
        orig_hash_del_if(batman_if, bat_priv->num_ifaces);
 
        struct batman_if *batman_if;
        int ret;
 
+       batman_if = container_of(ptype, struct batman_if, batman_adv_ptype);
        skb = skb_share_check(skb, GFP_ATOMIC);
 
        /* skb was released by skb_share_check() */
                                || !skb_mac_header(skb)))
                goto err_free;
 
-       batman_if = get_batman_if_by_netdev(skb->dev);
-       if (!batman_if)
-               goto err_free;
-
        /* discard frames on not active interfaces */
        if (batman_if->if_status != IF_ACTIVE)
                goto err_free;
 
 unsigned char broadcast_addr[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
 atomic_t module_state;
 
-static struct packet_type batman_adv_packet_type __read_mostly = {
-       .type = __constant_htons(ETH_P_BATMAN),
-       .func = batman_skb_recv,
-};
-
 struct workqueue_struct *bat_event_workqueue;
 
 static int __init batman_init(void)
                goto unreg_sysfs;
 
        register_netdevice_notifier(&hard_if_notifier);
-       dev_add_pack(&batman_adv_packet_type);
 
        pr_info("B.A.T.M.A.N. advanced %s%s (compatibility version %i) "
                "loaded\n", SOURCE_VERSION, REVISION_VERSION_STR,
                soft_device = NULL;
        }
 
-       dev_remove_pack(&batman_adv_packet_type);
-
        destroy_workqueue(bat_event_workqueue);
        bat_event_workqueue = NULL;
 }
 
        vis_quit();
 
-       /* TODO: unregister BATMAN pack */
-
        originator_free();
 
        hna_local_free();