Lines Matching refs:appl
530 const struct mrp_application *appl,
535 port->applicants[appl->type]);
555 const struct mrp_application *appl,
560 port->applicants[appl->type]);
786 struct mrp_application *appl = container_of(pt, struct mrp_application,
805 app = rcu_dereference(port->applicants[appl->type]);
854 int mrp_init_applicant(struct net_device *dev, struct mrp_application *appl)
872 err = dev_mc_add(dev, appl->group_address);
877 app->app = appl;
882 rcu_assign_pointer(dev->mrp_port->applicants[appl->type], app);
898 void mrp_uninit_applicant(struct net_device *dev, struct mrp_application *appl)
902 port->applicants[appl->type]);
906 RCU_INIT_POINTER(port->applicants[appl->type], NULL);
925 dev_mc_del(dev, appl->group_address);
931 int mrp_register_application(struct mrp_application *appl)
933 appl->pkttype.func = mrp_rcv;
934 dev_add_pack(&appl->pkttype);
939 void mrp_unregister_application(struct mrp_application *appl)
941 dev_remove_pack(&appl->pkttype);