/net/wireless/ |
D | mesh.c | 104 struct mesh_setup *setup, in __cfg80211_join_mesh() argument 118 setup->is_secure) in __cfg80211_join_mesh() 124 if (!setup->mesh_id_len) in __cfg80211_join_mesh() 130 if (!setup->chandef.chan) { in __cfg80211_join_mesh() 132 setup->chandef = wdev->u.mesh.preset_chandef; in __cfg80211_join_mesh() 135 if (!setup->chandef.chan) { in __cfg80211_join_mesh() 154 setup->chandef.chan = chan; in __cfg80211_join_mesh() 158 if (setup->chandef.chan) in __cfg80211_join_mesh() 163 if (!setup->chandef.chan) in __cfg80211_join_mesh() 166 setup->chandef.width = NL80211_CHAN_WIDTH_20_NOHT; in __cfg80211_join_mesh() [all …]
|
D | ocb.c | 20 struct ocb_setup *setup) in __cfg80211_join_ocb() argument 33 if (WARN_ON(!setup->chandef.chan)) in __cfg80211_join_ocb() 36 err = rdev_join_ocb(rdev, dev, setup); in __cfg80211_join_ocb() 38 wdev->u.ocb.chandef = setup->chandef; in __cfg80211_join_ocb() 45 struct ocb_setup *setup) in cfg80211_join_ocb() argument 51 err = __cfg80211_join_ocb(rdev, dev, setup); in cfg80211_join_ocb()
|
D | core.h | 353 struct mesh_setup *setup, 366 struct ocb_setup *setup); 369 struct ocb_setup *setup);
|
D | core.c | 1552 struct mesh_setup setup; in cfg80211_netdev_notifier_call() local 1553 memcpy(&setup, &default_mesh_setup, in cfg80211_netdev_notifier_call() 1554 sizeof(setup)); in cfg80211_netdev_notifier_call() 1556 setup.mesh_id = wdev->u.mesh.id; in cfg80211_netdev_notifier_call() 1557 setup.mesh_id_len = wdev->u.mesh.id_up_len; in cfg80211_netdev_notifier_call() 1560 &setup, in cfg80211_netdev_notifier_call()
|
D | rdev-ops.h | 357 const struct mesh_setup *setup) in rdev_join_mesh() argument 360 trace_rdev_join_mesh(&rdev->wiphy, dev, conf, setup); in rdev_join_mesh() 361 ret = rdev->ops->join_mesh(&rdev->wiphy, dev, conf, setup); in rdev_join_mesh() 379 struct ocb_setup *setup) in rdev_join_ocb() argument 382 trace_rdev_join_ocb(&rdev->wiphy, dev, setup); in rdev_join_ocb() 383 ret = rdev->ops->join_ocb(&rdev->wiphy, dev, setup); in rdev_join_ocb()
|
D | nl80211.c | 8489 struct mesh_setup *setup) in nl80211_parse_mesh_setup() argument 8500 setup->sync_method = in nl80211_parse_mesh_setup() 8506 setup->path_sel_proto = in nl80211_parse_mesh_setup() 8512 setup->path_metric = in nl80211_parse_mesh_setup() 8520 setup->ie = nla_data(ieattr); in nl80211_parse_mesh_setup() 8521 setup->ie_len = nla_len(ieattr); in nl80211_parse_mesh_setup() 8526 setup->user_mpm = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_MPM]); in nl80211_parse_mesh_setup() 8527 setup->is_authenticated = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AUTH]); in nl80211_parse_mesh_setup() 8528 setup->is_secure = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AMPE]); in nl80211_parse_mesh_setup() 8529 if (setup->is_secure) in nl80211_parse_mesh_setup() [all …]
|
/net/netfilter/ |
D | nf_flow_table_inet.c | 71 .setup = nf_flow_table_offload_setup, 81 .setup = nf_flow_table_offload_setup, 91 .setup = nf_flow_table_offload_setup,
|
D | nf_conntrack_h323_main.c | 799 Setup_UUIE *setup) in process_setup() argument 810 if (setup->options & eSetup_UUIE_h245Address) { in process_setup() 812 &setup->h245Address); in process_setup() 818 if ((setup->options & eSetup_UUIE_destCallSignalAddress) && in process_setup() 821 get_h225_addr(ct, *data, &setup->destCallSignalAddress, in process_setup() 828 &setup->destCallSignalAddress, in process_setup() 835 if ((setup->options & eSetup_UUIE_sourceCallSignalAddress) && in process_setup() 838 get_h225_addr(ct, *data, &setup->sourceCallSignalAddress, in process_setup() 845 &setup->sourceCallSignalAddress, in process_setup() 852 if (setup->options & eSetup_UUIE_fastStart) { in process_setup() [all …]
|
/net/dsa/ |
D | dsa.c | 471 if (dp->setup) in dsa_port_setup() 533 dp->setup = true; in dsa_port_setup() 540 if (!dp->setup) in dsa_port_teardown() 566 dp->setup = false; in dsa_port_teardown() 632 if (ds->setup) in dsa_switch_setup() 652 err = ds->ops->setup(ds); in dsa_switch_setup() 679 ds->setup = true; in dsa_switch_setup() 697 if (!ds->setup) in dsa_switch_teardown() 717 ds->setup = false; in dsa_switch_teardown() 875 if (dst->setup) { in dsa_tree_setup() [all …]
|
/net/mac80211/ |
D | cfg.c | 2458 const struct mesh_setup *setup) in copy_mesh_setup() argument 2468 if (setup->ie_len) { in copy_mesh_setup() 2469 new_ie = kmemdup(setup->ie, setup->ie_len, in copy_mesh_setup() 2474 ifmsh->ie_len = setup->ie_len; in copy_mesh_setup() 2478 ifmsh->mesh_id_len = setup->mesh_id_len; in copy_mesh_setup() 2479 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len); in copy_mesh_setup() 2480 ifmsh->mesh_sp_id = setup->sync_method; in copy_mesh_setup() 2481 ifmsh->mesh_pp_id = setup->path_sel_proto; in copy_mesh_setup() 2482 ifmsh->mesh_pm_id = setup->path_metric; in copy_mesh_setup() 2483 ifmsh->user_mpm = setup->user_mpm; in copy_mesh_setup() [all …]
|
D | ocb.c | 171 struct ocb_setup *setup) in ieee80211_ocb_join() argument 186 err = ieee80211_link_use_channel(&sdata->deflink, &setup->chandef, in ieee80211_ocb_join()
|
/net/ieee802154/6lowpan/ |
D | core.c | 198 .setup = lowpan_setup,
|
/net/sunrpc/xprtrdma/ |
D | svc_rdma_backchannel.c | 286 .setup = xprt_setup_rdma_bc,
|
D | transport.c | 760 .setup = xprt_setup_rdma,
|
/net/8021q/ |
D | vlan_netlink.c | 296 .setup = vlan_setup,
|
/net/l2tp/ |
D | Kconfig | 31 and session setup). One such daemon is OpenL2TP
|
/net/ipv4/ |
D | ip_gre.c | 1615 .setup = ipgre_tunnel_setup, 1630 .setup = ipgre_tap_setup, 1645 .setup = erspan_setup,
|
D | ipip.c | 566 .setup = ipip_tunnel_setup,
|
D | ip_vti.c | 634 .setup = vti_tunnel_setup,
|
/net/tipc/ |
D | link.c | 847 bool setup = false; in tipc_link_timeout() local 878 setup = l->rst_cnt++ <= 4; in tipc_link_timeout() 879 setup |= !(l->rst_cnt % 16); in tipc_link_timeout() 883 setup = true; in tipc_link_timeout() 894 if (state || probe || setup) in tipc_link_timeout()
|
/net/hsr/ |
D | hsr_netlink.c | 159 .setup = hsr_dev_setup,
|
/net/caif/ |
D | chnl_net.c | 500 .setup = ipcaif_net_setup,
|
/net/sunrpc/ |
D | xprtsock.c | 3595 .setup = xs_setup_local, 3604 .setup = xs_setup_udp, 3613 .setup = xs_setup_tcp, 3622 .setup = xs_setup_tcp_tls, 3631 .setup = xs_setup_bc_tcp,
|
/net/nfc/nci/ |
D | core.c | 507 if (!rc && ndev->ops->setup) { in nci_open_device() 508 rc = ndev->ops->setup(ndev); in nci_open_device()
|
/net/ipv6/ |
D | ip6_gre.c | 2317 .setup = ip6gre_tunnel_setup, 2332 .setup = ip6gre_tap_setup, 2346 .setup = ip6erspan_tap_setup,
|