Lines Matching refs:tbmsg
87 struct netmsg_table *tbmsg = (struct netmsg_table *)nmsg; in table_create_dispatch() local
91 ioc_table = tbmsg->ioc_table; in table_create_dispatch()
120 struct netmsg_table *tbmsg = (struct netmsg_table *)nmsg; in table_delete_dispatch() local
125 ioc_tbl = tbmsg->ioc_table; in table_delete_dispatch()
139 struct netmsg_table *tbmsg = (struct netmsg_table *)nmsg; in table_append_dispatch() local
147 ioc_tbl = tbmsg->ioc_table; in table_append_dispatch()
193 struct netmsg_table *tbmsg = (struct netmsg_table *)nmsg; in table_remove_dispatch() local
203 ioc_tbl = tbmsg->ioc_table; in table_remove_dispatch()
236 struct netmsg_table *tbmsg = (struct netmsg_table *)nmsg; in table_flush_dispatch() local
242 ioc_tbl = tbmsg->ioc_table; in table_flush_dispatch()
258 struct netmsg_table *tbmsg = (struct netmsg_table *)nmsg; in table_rename_dispatch() local
263 ioc_tbl = tbmsg->ioc_table; in table_rename_dispatch()
304 struct netmsg_table tbmsg; in ip_fw3_ctl_table_remove() local
305 bzero(&tbmsg,sizeof(tbmsg)); in ip_fw3_ctl_table_remove()
306 tbmsg.ioc_table = sopt->sopt_val; in ip_fw3_ctl_table_remove()
307 netmsg_init(&tbmsg.base, NULL, &curthread->td_msgport, in ip_fw3_ctl_table_remove()
309 netisr_domsg(&tbmsg.base, 0); in ip_fw3_ctl_table_remove()
310 return tbmsg.retval; in ip_fw3_ctl_table_remove()
319 struct netmsg_table tbmsg; in ip_fw3_ctl_table_flush() local
320 bzero(&tbmsg,sizeof(tbmsg)); in ip_fw3_ctl_table_flush()
321 tbmsg.ioc_table = sopt->sopt_val; in ip_fw3_ctl_table_flush()
322 netmsg_init(&tbmsg.base, NULL, &curthread->td_msgport, in ip_fw3_ctl_table_flush()
324 netisr_domsg(&tbmsg.base, 0); in ip_fw3_ctl_table_flush()
325 return tbmsg.retval; in ip_fw3_ctl_table_flush()
466 struct netmsg_table tbmsg; in ip_fw3_ctl_table_create() local
467 bzero(&tbmsg,sizeof(tbmsg)); in ip_fw3_ctl_table_create()
468 tbmsg.ioc_table = sopt->sopt_val; in ip_fw3_ctl_table_create()
469 netmsg_init(&tbmsg.base, NULL, &curthread->td_msgport, in ip_fw3_ctl_table_create()
471 netisr_domsg(&tbmsg.base, 0); in ip_fw3_ctl_table_create()
472 return tbmsg.retval; in ip_fw3_ctl_table_create()
481 struct netmsg_table tbmsg; in ip_fw3_ctl_table_delete() local
482 bzero(&tbmsg,sizeof(tbmsg)); in ip_fw3_ctl_table_delete()
483 tbmsg.ioc_table = sopt->sopt_val; in ip_fw3_ctl_table_delete()
484 netmsg_init(&tbmsg.base, NULL, &curthread->td_msgport, in ip_fw3_ctl_table_delete()
486 netisr_domsg(&tbmsg.base, 0); in ip_fw3_ctl_table_delete()
487 return tbmsg.retval; in ip_fw3_ctl_table_delete()
496 struct netmsg_table tbmsg; in ip_fw3_ctl_table_append() local
497 bzero(&tbmsg,sizeof(tbmsg)); in ip_fw3_ctl_table_append()
498 tbmsg.ioc_table = sopt->sopt_val; in ip_fw3_ctl_table_append()
499 netmsg_init(&tbmsg.base, NULL, &curthread->td_msgport, in ip_fw3_ctl_table_append()
501 netisr_domsg(&tbmsg.base, 0); in ip_fw3_ctl_table_append()
502 return tbmsg.retval; in ip_fw3_ctl_table_append()
511 struct netmsg_table tbmsg; in ip_fw3_ctl_table_rename() local
512 bzero(&tbmsg,sizeof(tbmsg)); in ip_fw3_ctl_table_rename()
513 tbmsg.ioc_table = sopt->sopt_val; in ip_fw3_ctl_table_rename()
514 netmsg_init(&tbmsg.base, NULL, &curthread->td_msgport, in ip_fw3_ctl_table_rename()
516 netisr_domsg(&tbmsg.base, 0); in ip_fw3_ctl_table_rename()
517 return tbmsg.retval; in ip_fw3_ctl_table_rename()