/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 | 335 struct mesh_setup *setup, 348 struct ocb_setup *setup); 351 struct ocb_setup *setup);
|
D | core.c | 1499 struct mesh_setup setup; in cfg80211_netdev_notifier_call() local 1500 memcpy(&setup, &default_mesh_setup, in cfg80211_netdev_notifier_call() 1501 sizeof(setup)); in cfg80211_netdev_notifier_call() 1503 setup.mesh_id = wdev->u.mesh.id; in cfg80211_netdev_notifier_call() 1504 setup.mesh_id_len = wdev->u.mesh.id_up_len; in cfg80211_netdev_notifier_call() 1507 &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 | 8261 struct mesh_setup *setup) in nl80211_parse_mesh_setup() argument 8272 setup->sync_method = in nl80211_parse_mesh_setup() 8278 setup->path_sel_proto = in nl80211_parse_mesh_setup() 8284 setup->path_metric = in nl80211_parse_mesh_setup() 8292 setup->ie = nla_data(ieattr); in nl80211_parse_mesh_setup() 8293 setup->ie_len = nla_len(ieattr); in nl80211_parse_mesh_setup() 8298 setup->user_mpm = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_MPM]); in nl80211_parse_mesh_setup() 8299 setup->is_authenticated = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AUTH]); in nl80211_parse_mesh_setup() 8300 setup->is_secure = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AMPE]); in nl80211_parse_mesh_setup() 8301 if (setup->is_secure) in nl80211_parse_mesh_setup() [all …]
|
/net/dsa/ |
D | dsa2.c | 436 if (dp->setup) in dsa_port_setup() 496 dp->setup = true; in dsa_port_setup() 549 if (!dp->setup) in dsa_port_teardown() 586 dp->setup = false; in dsa_port_teardown() 833 if (ds->setup) in dsa_switch_setup() 874 err = ds->ops->setup(ds); in dsa_switch_setup() 898 ds->setup = true; in dsa_switch_setup() 926 if (!ds->setup) in dsa_switch_teardown() 949 ds->setup = false; in dsa_switch_teardown() 1065 if (dst->setup) { in dsa_tree_setup() [all …]
|
/net/netfilter/ |
D | nf_conntrack_h323_main.c | 845 Setup_UUIE *setup) in process_setup() argument 856 if (setup->options & eSetup_UUIE_h245Address) { in process_setup() 858 &setup->h245Address); in process_setup() 864 if ((setup->options & eSetup_UUIE_destCallSignalAddress) && in process_setup() 867 get_h225_addr(ct, *data, &setup->destCallSignalAddress, in process_setup() 874 &setup->destCallSignalAddress, in process_setup() 881 if ((setup->options & eSetup_UUIE_sourceCallSignalAddress) && in process_setup() 884 get_h225_addr(ct, *data, &setup->sourceCallSignalAddress, in process_setup() 891 &setup->sourceCallSignalAddress, in process_setup() 898 if (setup->options & eSetup_UUIE_fastStart) { in process_setup() [all …]
|
D | nf_flow_table_inet.c | 67 .setup = nf_flow_table_offload_setup,
|
/net/mac80211/ |
D | cfg.c | 2151 const struct mesh_setup *setup) in copy_mesh_setup() argument 2161 if (setup->ie_len) { in copy_mesh_setup() 2162 new_ie = kmemdup(setup->ie, setup->ie_len, in copy_mesh_setup() 2167 ifmsh->ie_len = setup->ie_len; in copy_mesh_setup() 2171 ifmsh->mesh_id_len = setup->mesh_id_len; in copy_mesh_setup() 2172 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len); in copy_mesh_setup() 2173 ifmsh->mesh_sp_id = setup->sync_method; in copy_mesh_setup() 2174 ifmsh->mesh_pp_id = setup->path_sel_proto; in copy_mesh_setup() 2175 ifmsh->mesh_pm_id = setup->path_metric; in copy_mesh_setup() 2176 ifmsh->user_mpm = setup->user_mpm; in copy_mesh_setup() [all …]
|
D | ocb.c | 173 struct ocb_setup *setup) in ieee80211_ocb_join() argument 188 err = ieee80211_vif_use_channel(sdata, &setup->chandef, in ieee80211_ocb_join()
|
/net/ipv6/netfilter/ |
D | nf_flow_table_ipv6.c | 13 .setup = nf_flow_table_offload_setup,
|
/net/ipv4/netfilter/ |
D | nf_flow_table_ipv4.c | 12 .setup = nf_flow_table_offload_setup,
|
/net/ieee802154/6lowpan/ |
D | core.c | 197 .setup = lowpan_setup,
|
/net/sunrpc/xprtrdma/ |
D | svc_rdma_backchannel.c | 292 .setup = xprt_setup_rdma_bc,
|
D | transport.c | 776 .setup = xprt_setup_rdma,
|
/net/8021q/ |
D | vlan_netlink.c | 292 .setup = vlan_setup,
|
/net/l2tp/ |
D | Kconfig | 31 and session setup). One such daemon is OpenL2TP
|
/net/ipv4/ |
D | ip_gre.c | 1614 .setup = ipgre_tunnel_setup, 1629 .setup = ipgre_tap_setup, 1644 .setup = erspan_setup,
|
D | ipip.c | 621 .setup = ipip_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/caif/ |
D | chnl_net.c | 500 .setup = ipcaif_net_setup,
|
/net/hsr/ |
D | hsr_netlink.c | 159 .setup = hsr_dev_setup,
|
/net/sunrpc/ |
D | xprtsock.c | 3127 .setup = xs_setup_local, 3136 .setup = xs_setup_udp, 3145 .setup = xs_setup_tcp, 3154 .setup = xs_setup_bc_tcp,
|
/net/nfc/nci/ |
D | core.c | 506 if (!rc && ndev->ops->setup) { in nci_open_device() 507 rc = ndev->ops->setup(ndev); in nci_open_device()
|