Home
last modified time | relevance | path

Searched refs:network (Results 1 – 200 of 624) sorted by relevance

1234

/linux-4.4.14/drivers/tty/ipwireless/
Dnetwork.c68 struct ipw_network *network = callback_data; in notify_packet_sent() local
71 spin_lock_irqsave(&network->lock, flags); in notify_packet_sent()
72 network->outgoing_packets_queued--; in notify_packet_sent()
73 if (network->ppp_channel != NULL) { in notify_packet_sent()
74 if (network->ppp_blocked) { in notify_packet_sent()
75 network->ppp_blocked = 0; in notify_packet_sent()
76 spin_unlock_irqrestore(&network->lock, flags); in notify_packet_sent()
77 ppp_output_wakeup(network->ppp_channel); in notify_packet_sent()
82 spin_unlock_irqrestore(&network->lock, flags); in notify_packet_sent()
84 spin_unlock_irqrestore(&network->lock, flags); in notify_packet_sent()
[all …]
Dtty.c52 struct ipw_network *network; member
106 ipwireless_ppp_open(tty->network); in ipw_open()
125 ipwireless_ppp_close(tty->network); in do_ipw_close()
411 tty->network); in ipw_ioctl()
423 tty->network); in ipw_ioctl()
449 struct ipw_network *network, int channel_idx, in add_tty() argument
459 ttys[j]->network = network; in add_tty()
465 ipwireless_associate_network_tty(network, channel_idx, ttys[j]); in add_tty()
468 ipwireless_associate_network_tty(network, in add_tty()
481 struct ipw_network *network) in ipwireless_tty_create() argument
[all …]
Dmain.c195 ipw->network = ipwireless_network_create(ipw->hardware); in config_ipwireless()
196 if (!ipw->network) in config_ipwireless()
199 ipw->tty = ipwireless_tty_create(ipw->hardware, ipw->network); in config_ipwireless()
299 if (ipw->network != NULL) in ipwireless_detach()
300 ipwireless_network_free(ipw->network); in ipwireless_detach()
DMakefile7 ipwireless-y := hardware.o main.o network.o tty.o
Dmain.h57 struct ipw_network *network; member
/linux-4.4.14/drivers/staging/rtl8192u/ieee80211/
Dieee80211_rx.c1499 struct ieee80211_network *network) in ieee80211_parse_qos_info_param_IE() argument
1508 network->qos_data.param_count = qos_info_element.ac_info & 0x0F; in ieee80211_parse_qos_info_param_IE()
1509 network->flags |= NETWORK_HAS_QOS_INFORMATION; in ieee80211_parse_qos_info_param_IE()
1516 qos_param = &(network->qos_data.parameters); in ieee80211_parse_qos_info_param_IE()
1519 network->flags |= NETWORK_HAS_QOS_PARAMETERS; in ieee80211_parse_qos_info_param_IE()
1520 network->qos_data.param_count = in ieee80211_parse_qos_info_param_IE()
1527 network->qos_data.supported = 1; in ieee80211_parse_qos_info_param_IE()
1574 struct ieee80211_network *network, in ieee80211_extract_country_ie() argument
1582 memcpy(network->CountryIeBuf, info_element->data, info_element->len); in ieee80211_extract_country_ie()
1583 network->CountryIeLen = info_element->len; in ieee80211_extract_country_ie()
[all …]
Dieee80211_wx.c56 struct ieee80211_network *network, in rtl819x_translate_scan() argument
71 memcpy(iwe.u.ap_addr.sa_data, network->bssid, ETH_ALEN); in rtl819x_translate_scan()
79 if (network->ssid_len == 0) { in rtl819x_translate_scan()
83 iwe.u.data.length = min(network->ssid_len, (u8)32); in rtl819x_translate_scan()
84 start = iwe_stream_add_point(info, start, stop, &iwe, network->ssid); in rtl819x_translate_scan()
89 if(network->mode&(1<<i)) { in rtl819x_translate_scan()
99 if (network->capability & in rtl819x_translate_scan()
101 if (network->capability & WLAN_CAPABILITY_BSS) in rtl819x_translate_scan()
112 iwe.u.freq.m = network->channel; in rtl819x_translate_scan()
118 if (network->capability & WLAN_CAPABILITY_PRIVACY) in rtl819x_translate_scan()
[all …]
/linux-4.4.14/drivers/net/wireless/ipw2x00/
Dlibipw_rx.c1047 struct libipw_network *network) in libipw_parse_qos_info_param_IE() argument
1056 network->qos_data.param_count = qos_info_element.ac_info & 0x0F; in libipw_parse_qos_info_param_IE()
1057 network->flags |= NETWORK_HAS_QOS_INFORMATION; in libipw_parse_qos_info_param_IE()
1064 qos_param = &(network->qos_data.parameters); in libipw_parse_qos_info_param_IE()
1067 network->flags |= NETWORK_HAS_QOS_PARAMETERS; in libipw_parse_qos_info_param_IE()
1068 network->qos_data.param_count = in libipw_parse_qos_info_param_IE()
1075 network->qos_data.supported = 1; in libipw_parse_qos_info_param_IE()
1119 struct libipw_network *network) in libipw_parse_info_param() argument
1143 network->ssid_len = min(info_element->len, in libipw_parse_info_param()
1145 memcpy(network->ssid, info_element->data, in libipw_parse_info_param()
[all …]
Dlibipw_wx.c61 struct libipw_network *network, in libipw_translate_scan() argument
74 memcpy(iwe.u.ap_addr.sa_data, network->bssid, ETH_ALEN); in libipw_translate_scan()
82 iwe.u.data.length = min(network->ssid_len, (u8) 32); in libipw_translate_scan()
84 &iwe, network->ssid); in libipw_translate_scan()
89 libipw_modes[network->mode]); in libipw_translate_scan()
94 if (network->capability & (WLAN_CAPABILITY_ESS | WLAN_CAPABILITY_IBSS)) { in libipw_translate_scan()
95 if (network->capability & WLAN_CAPABILITY_ESS) in libipw_translate_scan()
107 iwe.u.freq.m = libipw_channel_to_freq(ieee, network->channel); in libipw_translate_scan()
114 if (network->capability & WLAN_CAPABILITY_PRIVACY) in libipw_translate_scan()
120 &iwe, network->ssid); in libipw_translate_scan()
[all …]
Dipw2200.c3009 struct libipw_network *network = NULL; in ipw_remove_current_network() local
3014 network = list_entry(element, struct libipw_network, list); in ipw_remove_current_network()
3015 if (ether_addr_equal(network->bssid, priv->bssid)) { in ipw_remove_current_network()
3017 list_add_tail(&network->list, in ipw_remove_current_network()
5368 const struct libipw_network *network, in ipw_compatible_rates() argument
5374 num_rates = min(network->rates_len, (u8) IPW_MAX_RATES); in ipw_compatible_rates()
5377 if (!ipw_is_rate_in_mask(priv, network->mode, in ipw_compatible_rates()
5378 network->rates[i])) { in ipw_compatible_rates()
5380 if (network->rates[i] & LIBIPW_BASIC_RATE_MASK) { in ipw_compatible_rates()
5383 network->rates[i]); in ipw_compatible_rates()
[all …]
Dlibipw_module.c98 struct libipw_network *network = NULL; in libipw_networks_age() local
103 list_for_each_entry(network, &ieee->network_list, list) { in libipw_networks_age()
104 network->last_scanned -= age_jiffies; in libipw_networks_age()
/linux-4.4.14/drivers/staging/rtl8192e/
Drtllib_rx.c1714 struct rtllib_network *network) in rtllib_parse_qos_info_param_IE() argument
1722 network->qos_data.param_count = qos_info_element.ac_info & 0x0F; in rtllib_parse_qos_info_param_IE()
1723 network->flags |= NETWORK_HAS_QOS_INFORMATION; in rtllib_parse_qos_info_param_IE()
1731 &(network->qos_data)); in rtllib_parse_qos_info_param_IE()
1732 network->flags |= NETWORK_HAS_QOS_PARAMETERS; in rtllib_parse_qos_info_param_IE()
1733 network->qos_data.param_count = in rtllib_parse_qos_info_param_IE()
1740 network->qos_data.supported = 1; in rtllib_parse_qos_info_param_IE()
1808 struct rtllib_network *network, in rtllib_extract_country_ie() argument
1813 memcpy(network->CountryIeBuf, info_element->data, in rtllib_extract_country_ie()
1815 network->CountryIeLen = info_element->len; in rtllib_extract_country_ie()
[all …]
Drtllib_wx.c49 struct rtllib_network *network, in rtl819x_translate_scan() argument
64 ether_addr_copy(iwe.u.ap_addr.sa_data, network->bssid); in rtl819x_translate_scan()
72 if (network->ssid_len > 0) { in rtl819x_translate_scan()
73 iwe.u.data.length = min_t(u8, network->ssid_len, 32); in rtl819x_translate_scan()
75 network->ssid); in rtl819x_translate_scan()
76 } else if (network->hidden_ssid_len == 0) { in rtl819x_translate_scan()
81 iwe.u.data.length = min_t(u8, network->hidden_ssid_len, 32); in rtl819x_translate_scan()
83 network->hidden_ssid); in rtl819x_translate_scan()
88 if (network->mode&(1<<i)) { in rtl819x_translate_scan()
100 if (network->capability & in rtl819x_translate_scan()
[all …]
/linux-4.4.14/drivers/staging/rtl8712/
Drtl871x_mlme.c55 pmlmepriv->cur_network.network.InfrastructureMode = in _init_mlme_priv()
161 if (!memcmp(addr, pnetwork->network.MacAddress, ETH_ALEN)) in _r8712_find_network()
269 (pnetwork->network.Privacy == 0)) in r8712_is_same_ibss()
272 (pnetwork->network.Privacy == 1)) in r8712_is_same_ibss()
333 is_same_network(&(padapter->mlmepriv.cur_network.network), src)) { in update_network()
369 if (is_same_network(&(pmlmepriv->cur_network.network), pnetwork)) { in update_current_network()
370 update_network(&(pmlmepriv->cur_network.network), in update_current_network()
373 (pmlmepriv->cur_network.network.IEs) + in update_current_network()
375 pmlmepriv->cur_network.network.IELength); in update_current_network()
401 if (is_same_network(&pnetwork->network, target)) in update_scanned_network()
[all …]
Drtl871x_ioctl_linux.c81 memcpy(wrqu.ap_addr.sa_data, pmlmepriv->cur_network.network.MacAddress, in r8712_indicate_wx_assoc_event()
153 if ((pnetwork->network.Configuration.DSConfig < 1) || in translate_scan()
154 (pnetwork->network.Configuration.DSConfig > 14)) { in translate_scan()
155 if (pnetwork->network.Configuration.DSConfig < 1) in translate_scan()
156 pnetwork->network.Configuration.DSConfig = 1; in translate_scan()
158 pnetwork->network.Configuration.DSConfig = 14; in translate_scan()
163 ether_addr_copy(iwe.u.ap_addr.sa_data, pnetwork->network.MacAddress); in translate_scan()
168 iwe.u.data.length = min_t(u32, pnetwork->network.Ssid.SsidLength, 32); in translate_scan()
170 pnetwork->network.Ssid.Ssid); in translate_scan()
172 p = r8712_get_ie(&pnetwork->network.IEs[12], _HT_CAPABILITY_IE_, in translate_scan()
[all …]
Drtl871x_cmd.c480 network.InfrastructureMode; in r8712_joinbss_cmd()
508 memcpy(psecnetwork, &pnetwork->network, sizeof(*psecnetwork)); in r8712_joinbss_cmd()
524 &pnetwork->network.MacAddress[0]); in r8712_joinbss_cmd()
526 &pnetwork->network.IEs[0], in r8712_joinbss_cmd()
528 pnetwork->network.IELength); in r8712_joinbss_cmd()
534 &pnetwork->network.IEs[0], in r8712_joinbss_cmd()
536 pnetwork->network.IELength, in r8712_joinbss_cmd()
554 &pnetwork->network.IEs[0], in r8712_joinbss_cmd()
556 pnetwork->network.IELength, in r8712_joinbss_cmd()
951 memcpy(&(pwlan->network), pnetwork, pnetwork->Length); in r8712_createbss_cmd_callback()
[all …]
Drtl871x_event.h59 struct wlan_network network; member
/linux-4.4.14/drivers/staging/rtl8723au/core/
Drtw_mlme.c57 pmlmepriv->cur_network.network.ifmode = NL80211_IFTYPE_UNSPECIFIED; in rtw_init_mlme_priv23a()
156 if (ether_addr_equal(addr, pnetwork->network.MacAddress)) in rtw_find_network23a()
241 pnetwork->network.Ssid.ssid, in _rtw_roaming()
242 pnetwork->network.MacAddress, in _rtw_roaming()
243 pnetwork->network.Ssid.ssid_len); in _rtw_roaming()
244 memcpy(&pmlmepriv->assoc_ssid, &pnetwork->network.Ssid, in _rtw_roaming()
295 pnetwork->network.Privacy == 0) in rtw_is_same_ibss23a()
298 pnetwork->network.Privacy == 1) in rtw_is_same_ibss23a()
375 is_same_network23a(&padapter->mlmepriv.cur_network.network, src)) { in update_network23a()
420 is_same_network23a(&pmlmepriv->cur_network.network, pnetwork)) { in update_current_network()
[all …]
Drtw_wlan_util.c661 struct wlan_bssid_ex *cur_network = &pmlmeinfo->network; in bwmode_update_check()
872 if (!ether_addr_equal(cur_network->network.MacAddress, mgmt->bssid)) { in rtw_check_bcn_info23a()
875 cur_network->network.MacAddress); in rtw_check_bcn_info23a()
924 __func__, ssid, ssid_len, cur_network->network.Ssid.ssid, in rtw_check_bcn_info23a()
925 cur_network->network.Ssid.ssid_len); in rtw_check_bcn_info23a()
927 if (ssid_len != cur_network->network.Ssid.ssid_len || ssid_len > 32 || in rtw_check_bcn_info23a()
929 memcmp(ssid, cur_network->network.Ssid.ssid, ssid_len))) { in rtw_check_bcn_info23a()
944 __func__, cur_network->network.Privacy, privacy); in rtw_check_bcn_info23a()
945 if (cur_network->network.Privacy != privacy) { in rtw_check_bcn_info23a()
1043 struct wlan_bssid_ex *cur_network = &pmlmeinfo->network; in is_ap_in_tkip23a()
[all …]
Drtw_mlme_ext.c728 struct wlan_bssid_ex *cur = &pmlmeinfo->network; in OnProbeReq23a()
822 get_my_bssid23a(&pmlmeinfo->network))) in OnBeacon23a()
830 update_network23a(&pmlmepriv->cur_network.network, pbss, in OnBeacon23a()
858 receive_disconnect23a(padapter, pmlmeinfo->network.MacAddress, 65535); in OnBeacon23a()
1335 struct wlan_bssid_ex *cur = &pmlmeinfo->network; in OnAssocReq23a()
1852 UpdateBrateTbl23a(padapter, pmlmeinfo->network.SupportedRates); in OnAssocRsp23a()
1882 get_my_bssid23a(&pmlmeinfo->network))) in OnDeAuth23a()
1938 get_my_bssid23a(&pmlmeinfo->network))) in OnDisassoc23a()
2361 struct wlan_bssid_ex *cur_network = &pmlmeinfo->network; in issue_beacon23a()
2516 struct wlan_bssid_ex *cur_network = &pmlmeinfo->network; in issue_probersp()
[all …]
Drtw_cmd.c459 ifmode = pnetwork->network.ifmode; in rtw_joinbss_cmd23a()
506 memcpy(psecnetwork, &pnetwork->network, in rtw_joinbss_cmd23a()
507 get_wlan_bssid_ex_sz(&pnetwork->network)); in rtw_joinbss_cmd23a()
518 &pnetwork->network.MacAddress[0]); in rtw_joinbss_cmd23a()
521 rtw_restruct_sec_ie23a(padapter, &pnetwork->network.IEs[0], in rtw_joinbss_cmd23a()
523 pnetwork->network.IELength); in rtw_joinbss_cmd23a()
531 &pnetwork->network.IEs[0], in rtw_joinbss_cmd23a()
533 pnetwork->network.IELength, in rtw_joinbss_cmd23a()
558 &pnetwork->network.IEs[0], in rtw_joinbss_cmd23a()
560 pnetwork->network.IELength, in rtw_joinbss_cmd23a()
[all …]
Drtw_ieee80211.c694 pie = pnetwork->network.IEs; in rtw_get_cipher_info()
695 plen = pnetwork->network.IELength; in rtw_get_cipher_info()
752 if (pnetwork->network.capability & WLAN_CAPABILITY_PRIVACY) { in rtw_get_bcn_info23a()
754 pnetwork->network.Privacy = 1; in rtw_get_bcn_info23a()
759 "%s: ssid =%s\n", __func__, pnetwork->network.Ssid.ssid); in rtw_get_bcn_info23a()
761 pie = pnetwork->network.IEs; in rtw_get_bcn_info23a()
762 pie_len = pnetwork->network.IELength; in rtw_get_bcn_info23a()
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-class-net-statistics6 Indicates the number of collisions seen by this network device.
15 network device.
22 Indicates the number of bytes received by this network device.
23 See the network driver for the exact meaning of when this
32 network device. This value might only be relevant for interfaces
41 by this network device. Note that the specific meaning might
49 Indicates the number of packets received by the network device
51 packet processing. See the network driver for the exact
60 network device. See the network driver for the exact
70 on the MAC layer protocol used. See the network driver for
[all …]
Dsysfs-class-net-queues8 network device queue. Possible values depend on the number
17 processed by this particular network device receive queue.
25 network interface transmit queue.
42 network device transmit queue. Possible vaules depend on the
51 of this particular network device transmit queue.
60 network device transmit queue.
68 on this network device transmit queue. This value is clamped
77 queued on this network device transmit queue. See
86 queued on this network device transmit queue. Default value is
Dconfigfs-usb-gadget-phonet7 It contains the network interface name assigned during
8 network device registration.
Dconfigfs-usb-gadget-ncm7 ifname - network device interface name associated with
Dconfigfs-usb-gadget-eem7 ifname - network device interface name associated with
Dconfigfs-usb-gadget-subset7 ifname - network device interface name associated with
Dconfigfs-usb-gadget-ecm7 ifname - network device interface name associated with
Dconfigfs-usb-gadget-rndis7 ifname - network device interface name associated with
/linux-4.4.14/drivers/staging/rtl8188eu/core/
Drtw_mlme.c53 pmlmepriv->cur_network.network.InfrastructureMode = Ndis802_11AutoUnknown; in rtw_init_mlme_priv()
224 if (!memcmp(addr, pnetwork->network.MacAddress, ETH_ALEN)) in rtw_find_network()
323 (pnetwork->network.Privacy == 0)) in rtw_is_same_ibss()
326 (pnetwork->network.Privacy == 1)) in rtw_is_same_ibss()
398 …dapter->mlmepriv, _FW_LINKED) && is_same_network(&(padapter->mlmepriv.cur_network.network), src)) { in update_network()
432 (is_same_network(&(pmlmepriv->cur_network.network), pnetwork))) { in update_current_network()
433 update_network(&(pmlmepriv->cur_network.network), pnetwork, adapter, true); in update_current_network()
434 …rtw_update_protection(adapter, (pmlmepriv->cur_network.network.IEs) + sizeof(struct ndis_802_11_fi… in update_current_network()
435 pmlmepriv->cur_network.network.IELength); in update_current_network()
458 if (is_same_network(&(pnetwork->network), target)) in rtw_update_scanned_network()
[all …]
Drtw_wlan_util.c693 struct wlan_bssid_ex *cur_network = &(pmlmeinfo->network); in bwmode_update_check()
896 if (!memcmp(cur_network->network.MacAddress, pbssid, 6) == false) { in rtw_check_bcn_info()
898 (pbssid), (cur_network->network.MacAddress)); in rtw_check_bcn_info()
980 bssid->Ssid.SsidLength, cur_network->network.Ssid.Ssid, in rtw_check_bcn_info()
981 cur_network->network.Ssid.SsidLength)); in rtw_check_bcn_info()
983 if (memcmp(bssid->Ssid.Ssid, cur_network->network.Ssid.Ssid, 32) || in rtw_check_bcn_info()
984 bssid->Ssid.SsidLength != cur_network->network.Ssid.SsidLength) { in rtw_check_bcn_info()
1001 __func__, cur_network->network.Privacy, bssid->Privacy)); in rtw_check_bcn_info()
1002 if (cur_network->network.Privacy != bssid->Privacy) { in rtw_check_bcn_info()
1100 struct wlan_bssid_ex *cur_network = &(pmlmeinfo->network); in is_ap_in_tkip()
[all …]
Drtw_mlme_ext.c334 struct wlan_bssid_ex *cur_network = &(pmlmeinfo->network); in issue_beacon()
479 struct wlan_bssid_ex *cur_network = &(pmlmeinfo->network); in issue_probersp()
769 struct wlan_bssid_ex *pnetwork = &(pmlmeinfo->network); in issue_auth()
913 struct wlan_bssid_ex *pnetwork = &(pmlmeinfo->network); in issue_asocrsp()
1044 struct wlan_bssid_ex *pnetwork = &(pmlmeinfo->network); in issue_assocreq()
1073 memcpy(pframe, rtw_get_capability_from_ie(pmlmeinfo->network.IEs), 2); in issue_assocreq()
1086 …pframe = rtw_set_ie(pframe, _SSID_IE_, pmlmeinfo->network.Ssid.SsidLength, pmlmeinfo->network.Ssi… in issue_assocreq()
1097 if (pmlmeinfo->network.SupportedRates[i] == 0) in issue_assocreq()
1099 DBG_88E("network.SupportedRates[%d]=%02X\n", i, pmlmeinfo->network.SupportedRates[i]); in issue_assocreq()
1103 if (pmlmeinfo->network.SupportedRates[i] == 0) in issue_assocreq()
[all …]
Drtw_ieee80211.c1191 pbuf = rtw_get_wpa_ie(&pnetwork->network.IEs[12], &wpa_ielen, pnetwork->network.IELength-12); in rtw_get_cipher_info()
1204 pbuf = rtw_get_wpa2_ie(&pnetwork->network.IEs[12], &wpa_ielen, pnetwork->network.IELength-12); in rtw_get_cipher_info()
1235 memcpy(&le_tmp, rtw_get_capability_from_ie(pnetwork->network.IEs), 2); in rtw_get_bcn_info()
1239 pnetwork->network.Privacy = 1; in rtw_get_bcn_info()
1243 rtw_get_sec_ie(pnetwork->network.IEs, pnetwork->network.IELength, NULL, &rsn_len, NULL, &wpa_len); in rtw_get_bcn_info()
1244 …RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_, ("rtw_get_bcn_info: ssid =%s\n", pnetwork->network.S… in rtw_get_bcn_info()
1246 …RT_TRACE(_module_rtl871x_mlme_c_, _drv_info_, ("rtw_get_bcn_info: ssid =%s\n", pnetwork->network.S… in rtw_get_bcn_info()
1265 …p = rtw_get_ie(pnetwork->network.IEs + _FIXED_IE_LENGTH_, _HT_CAPABILITY_IE_, &len, pnetwork->netw… in rtw_get_bcn_info()
1273 …p = rtw_get_ie(pnetwork->network.IEs + _FIXED_IE_LENGTH_, _HT_ADD_INFO_IE_, &len, pnetwork->networ… in rtw_get_bcn_info()
Drtw_cmd.c397 enum ndis_802_11_network_infra ndis_network_mode = pnetwork->network.InfrastructureMode; in rtw_joinbss_cmd()
448 memcpy(psecnetwork, &pnetwork->network, get_wlan_bssid_ex_sz(&pnetwork->network)); in rtw_joinbss_cmd()
464 memcpy(&pmlmepriv->assoc_bssid[0], &pnetwork->network.MacAddress[0], ETH_ALEN); in rtw_joinbss_cmd()
466 …ength = rtw_restruct_sec_ie(padapter, &pnetwork->network.IEs[0], &psecnetwork->IEs[0], pnetwork->n… in rtw_joinbss_cmd()
474 …p_len = rtw_restruct_wmm_ie(padapter, &pnetwork->network.IEs[0], &psecnetwork->IEs[0], pnetwork->n… in rtw_joinbss_cmd()
496 rtw_restructure_ht_ie(padapter, &pnetwork->network.IEs[0], &psecnetwork->IEs[0], in rtw_joinbss_cmd()
497 pnetwork->network.IELength, &psecnetwork->IELength); in rtw_joinbss_cmd()
501 pmlmeinfo->assoc_AP_vendor = check_assoc_AP(pnetwork->network.IEs, pnetwork->network.IELength); in rtw_joinbss_cmd()
1334 memcpy(&(pwlan->network), pnetwork, pnetwork->Length); in rtw_createbss_cmd_callback()
1336 memcpy(&tgt_network->network, pnetwork, (get_wlan_bssid_ex_sz(pnetwork))); in rtw_createbss_cmd_callback()
/linux-4.4.14/net/ipx/
DKconfig23 <ftp://ibiblio.org/pub/Linux/system/network/daemons/> or
31 network, say N.
34 bool "IPX: Full internal IPX network"
37 Every IPX network has an address that identifies it. Sometimes it is
38 useful to give an IPX "network" address to your Linux box as well
42 "network" inside your box and to assign an IPX address to this
43 network. Say Y here if you want to do this; read the IPX-HOWTO at
46 The full internal IPX network enables you to allocate sockets on
47 different virtual nodes of the internal network. This is done by
50 to 0 when binding a socket on the primary network. In this case the
[all …]
Dipx_route.c48 int ipxrtr_add_route(__be32 network, struct ipx_interface *intrfc, in ipxrtr_add_route() argument
55 rt = ipxrtr_lookup(network); in ipxrtr_add_route()
73 rt->ir_net = network; in ipxrtr_add_route()
/linux-4.4.14/arch/um/
DKconfig.net7 bool "Virtual network device"
11 provide one or more virtual network devices through which the UML
28 The Ethertap User-Mode Linux network transport allows a single
33 Ethernet network, it's in fact communicating over a point-to-point
45 If you'd like to set up an IP network with the host and/or the
55 The UML TUN/TAP network transport allows a UML instance to exchange
67 The slip User-Mode Linux network transport allows a running UML to
68 network with its host over a point-to-point link. Unlike Ethertap,
81 choose the Multicast transport (to network multiple UMLs on
82 multiple hosts), Ethertap (to network with the host and the
[all …]
/linux-4.4.14/Documentation/isdn/
DREADME.concap4 The "concap" interface is intended to be used by network device
6 It is assumed that the protocol interacts with a linux network device by
12 also be useful to other kinds of network devices. Thus, if you want
29 user space utility (isdnctrl). The isdn network interface code then
33 In contrast, LAN network interfaces always used a single encapsulation
36 traditional linux network device drivers used to process the
44 makes isdn network interfaces more flexible, but also much more
45 complex than traditional lan network interfaces.
54 than encapsulation protocols for lan devices. Thus, network interface
59 isdn network interfaces I could have introduced yet another branch to
[all …]
DsyncPPP.FAQ9 Q06: can I use asynchronous PPP encapsulation with network devices
28 to the network layer and all PPP protocol
30 So, the ipppd is a simple external network
39 syncPPP machine .. use the network device part
43 isdn4linux manual on how to configure a network device.
104 over the network interface of isdn4linux ..
132 A: you must bind a network interface explicitly to
142 trigger a network packet. (e.g gethostbyname()).
144 fully started) we can't handle this network request.
148 isdn/ippp network-interface.
[all …]
DREADME.x2532 The ITU-T (former CCITT) X.25 network protocol layer has been implemented
62 - You might want to access a public X.25 data network from your Linux box.
68 access to PSPDN [packet switched public data network]).
82 (DTE-DTE mode) network layer protocol. ISO-8208 is essentially the
88 To use the X.25 protocol on top of isdn, just create an isdn network
115 To access an X.25 network switch via isdn (your linux box is the DTE), use
119 To mimic an X.25 network switch (DCE side of the connection), use
128 probably work if you access a public X.25 network as long as the
156 ifconfig the network interfaces up and add X.25-routes to them. Use
167 "01" to be routed to your created isdn network interface.
[all …]
DREADME.syncppp2 connection using network interfaces.
40 for the negotiation from the attached network-interface.
/linux-4.4.14/Documentation/networking/dsa/
Ddsa.txt21 they configured/queried a switch port network device or a regular network
38 For each front-panel port, DSA will create specialized network devices which are
40 stack. These specialized network interfaces are referred to as "slave" network
56 Note that DSA does not currently create network interfaces for the "cpu" and
64 cannot really be used as proper network interfaces either, only the
84 Master network devices
87 Master network devices are regular, unmodified Linux network device drivers for
92 drivers. Such network devices are also often referred to as conduit network
106 Master network device (e.g.: e1000e):
133 -> locate per-port network device
[all …]
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/
DKconfig21 wireless network adapters.
32 wireless network adapters.
43 wireless network adapters.
56 wireless network adapters.
69 wireless network adapters.
80 wireless network adapters.
92 wireless network adapters.
104 wireless network adapters.
116 wireless network adapters.
/linux-4.4.14/drivers/net/hippi/
DKconfig2 # HIPPI network device configuration
10 1600Mbit/sec dual-simplex switched or point-to-point network. HIPPI
13 connect to super computers. If you are connected to a HIPPI network
14 and have a HIPPI network card in your computer that you want to use
24 Say Y here if this is your PCI HIPPI network card.
/linux-4.4.14/drivers/net/ethernet/tile/
DKconfig2 # Tilera network device configuration
6 tristate "Tilera GBE/XGBE network driver support"
14 This is a standard Linux network device driver for the
/linux-4.4.14/net/x25/
DKconfig8 X.25 is a set of standardized network protocols, similar in scope to
9 frame relay; the one physical line from your box to the X.25 network
12 network. Governments, banks, and other organizations tend to use it
25 One connects to an X.25 network either with a dedicated network card
/linux-4.4.14/drivers/net/ethernet/nvidia/
DKconfig2 # NVIDIA network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
23 If you have a network (Ethernet) controller of this type, say Y here.
/linux-4.4.14/drivers/net/ethernet/intel/
DKconfig2 # Intel network device configuration
9 If you have a network (Ethernet) card belonging to this class, say Y.
30 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
34 For the latest Intel PRO/100 network driver for Linux, see:
36 <http://www.intel.com/p/en_US/support/highlights/network/pro100plus>
52 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
76 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
97 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
138 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
160 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
[all …]
/linux-4.4.14/drivers/net/ethernet/hp/
DKconfig2 # HP network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
23 If you have a network (Ethernet) card of this type, say Y here.
/linux-4.4.14/drivers/net/appletalk/
DKconfig9 on a network. If your Linux box is connected to such a network and you
16 network using serial links. EtherTalk and LocalTalk are fully
36 on a network. If your Linux box is connected to such a network, and wish
38 connect to the AppleTalk network, say Y.
85 box is stuck on an AppleTalk only network) or decapsulate (e.g. if
107 is stuck on an AppleTalk network (which hopefully contains a
/linux-4.4.14/net/batman-adv/
DKconfig36 mesh networks. If you think that your network does not need
44 This option enables network coding, a mechanism that aims to
45 increase the overall network throughput by fusing multiple
49 network coding work.
50 If you think that your network does not need this feature you
/linux-4.4.14/drivers/staging/fsl-mc/
DREADME.txt23 DPAA2 is a hardware architecture designed for high-speeed network
34 network ports to create functional objects/devices such as network
64 | -network interface -DPNI |
82 the objects involved in creating a network interfaces.
141 functions, and are used together by software to provide Ethernet network
146 network interface configuration on a system with 2 CPUs.
183 network interface configuration, and rx buffer pool configuration
231 A network interface requires a 'buffer pool' (DPBP
235 the network interface.
326 -DPMCPs to send MC commands, to configure network interfaces
[all …]
/linux-4.4.14/drivers/net/hyperv/
DKconfig2 tristate "Microsoft Hyper-V virtual network driver"
5 Select this option to enable the Hyper-V virtual network driver.
/linux-4.4.14/drivers/net/ethernet/marvell/
DKconfig10 If you have a network (Ethernet) card belonging to this class, say Y.
37 This driver supports the MDIO interface found in the network
44 tristate "Marvell Armada 370/38x/XP network interface support"
49 This driver supports the network interface units in the
57 tristate "Marvell Armada 375 network interface support"
61 This driver supports the network interface units in the
84 It does not support the link failover and network management
/linux-4.4.14/drivers/net/ethernet/adaptec/
DKconfig2 # Adaptec network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
25 Say Y here if you have an Adaptec Starfire (or DuraLAN) PCI network
/linux-4.4.14/drivers/net/ethernet/seeq/
DKconfig10 If you have a network (Ethernet) card belonging to this class, say Y.
23 If you have an Acorn system with one of these network cards, you
30 Say Y here if you have an Seeq based Ethernet network card. This is
/linux-4.4.14/Documentation/networking/
Dtuntap.txt20 corresponding ioctl() to register a network device with the kernel. A network
22 the program closes the file descriptor, the network device and all
31 two network interfaces.
44 since CAP_NET_ADMIN is required for creating network devices or for
45 connecting to network devices which aren't owned by the user in question.
68 "tun%d"), but (as far as I can see) this can be any valid network device name.
201 3. How does Virtual network device actually work ?
202 Virtual network device can be viewed as a simple Point-to-Point or
222 network interface. It does not provide a virtual network interface.
223 A TUN/TAP driver does provide a virtual network interface and it is possible
Dray_cs.txt7 802.11 compatible wireless network connectivity at 1 and 2 megabits/second.
51 class "network" module "misc/ray_cs"
61 To join an existing network with
62 different parameters, contact the network administrator for the
87 essid string ESS ID - network name to join
100 net_type integer 0 (default) = adhoc network,
119 network traffic using tcpdump or similar,
120 but no normal network use is allowed.
Dbonding.txt22 multiple network interfaces into a single logical "bonded" interface.
155 arp_ip_target parameters be specified, otherwise serious network
357 active slave. It is possible that some switch or network
367 Validation is useful in network configurations in which multiple
389 Filtering is useful in network configurations in which significant
455 the network must be updated via gratuitous ARP,
562 externally visible on only one port (network adapter)
823 it may be that your network device driver does not support
848 network peer on the same slave.
870 network peer on the same slave. For non-IP traffic,
[all …]
Dphy.txt8 Most network devices consist of set of registers which provide an interface
11 partner on the other side of the network connection (typically, an ethernet
15 While these devices are distinct from the network devices, and conform to a
17 the PHY management code with the network driver. This has resulted in large
28 3) Speed development time for new network drivers, and for new systems
31 allows network driver writers to write as little code as possible, while
36 Most network devices are connected to a PHY by means of a management bus.
70 Sometime during startup, the network driver needs to establish a connection
71 between the PHY device, and the network device. At this time, the PHY's bus
75 1) The PAL handles everything, and only calls the network driver when
[all …]
Dskfp.txt27 network adapter.
29 Chapter 2: Contains a list of all network adapters that are supported by
46 The network driver 'skfp' supports the following network adapters:
74 of network adapters.
86 'FDDI network controller: SysKonnect SK-FDDI-PCI ...'
125 The functionality of the LED's on the FDDI network adapters was
Dnetdevices.txt8 network devices.
19 private data which gets freed when the network device is freed. If
20 separately allocated data is attached to the network device
25 Each network device has a Maximum Transfer Unit. The MTU does not
40 the MTU. A network device may use the MTU as mechanism to size receive
Ddl2k.txt52 located at /etc/sysconfig/network-scripts or create it manually.
101 to a protocol stack in order to establish network connectivity. To load a
131 script that contains the necessary network information. A sample will be
141 to see the current network configuration.
156 1. Copy dl2k.o to the network modules directory, typically
167 3. Locate the network configuration scripts, normally the
168 /etc/sysconfig/network-scripts directory, and create a configuration
169 script named ifcfg-ethx that contains network information.
226 has been a bottleneck for high speed network.
235 high speed network card. Default is 16.
De1000e.txt28 http://support.intel.com/support/go/network/adapter/idguide.htm
30 For the latest Intel network drivers for Linux, refer to the following
34 http://support.intel.com/support/go/network/adapter/home.htm
45 http://www.intel.com/design/network/applnots/ap450.htm
133 properly tuned for specific network traffic. Increasing this value adds
140 hang (stop transmitting) under certain network conditions. If
143 restoring the network connection. To eliminate the potential
155 along with RxIntDelay, may improve traffic throughput in specific network
165 efficiency if properly tuned for specific network traffic. If the
179 network conditions.
[all …]
De100.txt42 http://support.intel.com/support/network/adapter/pro100/21397.htm
44 For the latest Intel network drivers for Linux, refer to the following
57 structure that describes a receive buffer and its attributes to the network
66 structure that describes a transmit buffer and its attributes to the network
95 Configuring a network driver to load properly when the system is started is
100 proper way to configure a network device for your system, refer to your
133 http://ftp.kernel.org/pub/software/network/ethtool/
Dcdc_mbim.txt53 - configure network connection settings
54 - connect to network
159 wwanY network device
162 network device of the "wwan" type. This network device is initially
185 The driver will automatically map the "wwan0.3" network device to MBIM
207 The network device ABI requires a dummy ethernet header for every DSS
234 directly to the master network device, using the received VLAN tags to
265 network device.
271 - no IPS or DSS session can be in the up state unless the network
292 relationship between VLAN tags on the wwanY network device and MBIM
D00-INDEX24 - info on using alias network devices.
142 - HOWTO for multiqueue network device support.
144 - The network console module netconsole.ko: configuration and notes.
150 - info on network device driver functions exported to the kernel.
152 - Design of the network interface message level setting (NETIF_MSG_*).
162 - Overview of network interface operational states.
190 - Explanation of network scaling techniques: RSS, RPS, RFS, aRFS, XPS.
206 - overview of network packet timestamping variants.
Dgeneric-hdlc.txt25 create a number of "hdlc" (hdlc0 etc) network devices, one for each
83 dce - Frame Relay DCE (network) side LMI instead of default DTE (user).
86 t392 - polling verification timer (in seconds) - network
88 n392 - error threshold - both user and network
89 n393 - monitored events count - both user and network
Dipddp.txt14 IP over an AppleTalk network or you can provide IP gatewaying functions
53 This software expects there to be an AppleTalk-IP gateway on the network.
65 network to use IP. It should work equally well if you are stuck on an
66 EtherTalk only network.
D3c509.txt72 AUI and 10base2 network cabling is physically incapable of full-duplex
84 limited than that provide by more modern network interface cards. Although
85 at the physical layer of the network it fully supports full-duplex operation,
94 negotiation and forcing the duplex mode of a network interface card or switch
152 likely have an unterminated network or the incorrect media transceiver selected.
198 host is incorrectly set to full duplex on a half duplex network.
201 16 collisions. This typically occurs when the network is exceptionally busy
206 Both of these errors are the result of network problems that should be
Dcan.txt16 3.3 network problem notifications
42 6 CAN network drivers
47 6.5 The CAN network device driver interface
50 6.5.3 Starting and stopping the CAN network device
68 socket API, the Linux network stack and implements the CAN device
69 drivers as network interfaces. The CAN socket API has been designed
71 familiar with network programming, to easily learn how to use CAN
94 to user space applications and which builds upon the Linux network
97 network layer as a network device, so that CAN frames from the
98 controller can be passed up to the network layer and on to the CAN
[all …]
Dphonet.txt37 The next 7 bytes are part of the network-layer header.
42 network layer with 6 bits of address space and 10 bits for transport
55 perspective. Each Phonet network device shall prepend and set the media
58 media type according to the network device hardware address.
60 Linux Phonet network interfaces support a dedicated link layer packets
200 interface index of the network interface created by PNPIPE_ENCAP,
De1000.txt22 http://support.intel.com/support/go/network/adapter/idguide.htm
24 For the latest Intel network drivers for Linux, refer to the following
28 http://support.intel.com/support/go/network/adapter/home.htm
43 http://www.intel.com/design/network/applnots/ap450.htm
146 under certain network conditions. If this occurs a NETDEV
149 the network connection. To eliminate the potential for the
194 properly tuned for specific network traffic. Increasing this value adds
201 hang (stop transmitting) under certain network conditions. If
204 restoring the network connection. To eliminate the potential
217 along with RxIntDelay, may improve traffic throughput in specific network
[all …]
Dipvlan.txt11 driver in conjuntion with network namespaces and not sure if there is use case
60 (c) If the slave device is to be put into the hostile / untrusted network
81 (a) Create two network namespaces - ns0, ns1
89 (c) Assign slaves to the respective network namespaces
Dcxgb.txt35 settings to achieve the highest performance during various types of network
76 to offload portions of outbound TCP processing to a network interface card
210 On a system with multiple CPUs, the interrupt (IRQ) for the network
239 2. After running insmod, the driver is loaded and the incorrect network
245 the script also attempts to automatically bring up a network interface
247 the ifcfg-eth# config files in /etc/sysconfig/network-scripts, looking
253 network card, your new interface will have incorrect IP address and
254 network settings.
257 interface config file of your network controller.
261 this does not work for network devices because the net.agent script
Digbvf.txt47 http://support.intel.com/support/go/network/adapter/idguide.htm
49 For the latest Intel network drivers for Linux, refer to the following
65 http://ftp.kernel.org/pub/software/network/ethtool/
Ddctcp.txt6 the data center network to provide multi-bit feedback to the end hosts.
13 All switches in the data center network running DCTCP must support ECN
Ddecnet.txt35 network protocols.
37 As soon as your network card is brought into the UP state, DECnet should
91 or something similar, to /etc/sysconfig/network-scripts/ifcfg-eth0 or
92 wherever your network card's configuration lives. Setting the MAC address
149 - If you have any DECnet routers on your network, they should appear
162 network, and see if you can obtain the same results.
178 - Was the network congested ?
191 Ethernet cards are designed to normally only pass received network frames
199 network (see the NAPI documentation for a longer explanation of these
Dixgb.txt51 The following Intel network adapters are compatible with the drivers in this
63 http://support.intel.com/support/network/sb/CS-012904.htm
146 efficiency if properly tuned for specific network traffic. Increasing
177 tuning your network performance.
195 echo "configuring network performance , edit this file to change the interface
214 # several network benchmark tests, your mileage may vary
256 the network stack buffers as large as they need to be to support high UDP
266 will increase the amount of memory used by the network stack for receives, and
275 Configuring a network driver to load properly when the system is started is
280 configure a network device for your system, refer to your distribution
[all …]
Dbatman-adv.txt9 virtual network switch of all nodes participating. Therefore all
11 cols won't be affected by any changes within the network. You can
17 network driver, and can be used on wifi as well as ethernet lan,
82 ing the mesh network. For example, you can view the table of
140 When investigating problems with your mesh network it is some-
DREADME.ipw2200148 for and associate to a network until it has been configured with
149 one or more properties for the target network, for example configuring
150 the network SSID. Default is 0 (do not auto-associate)
155 Set to 0 to disable the auto creation of an Ad-Hoc network
156 matching the channel and network name parameters provided.
195 (typically eth1, customized via one of the various network interface
351 When using a device in an Ad-Hoc network, it is useful to understand the
357 Ad-Hoc network.
362 The easiest way to get onto an Ad-Hoc network is to join one that
Digb.txt17 This driver supports all 82575, 82576 and 82580-based Intel (R) gigabit network
23 http://support.intel.com/support/go/network/adapter/idguide.htm
66 http://ftp.kernel.org/pub/software/network/ethtool/
Darcnet.txt36 include the type of card(s) you're using, software, size of network, and
90 Performance Technologies makes various network software that supports
110 (be sure to choose ARCnet in the network devices
271 the cards are Ethernet, and confuse everyone else on the network.
282 style network drivers (NDIS) or Novell drivers (ODI) to handle your
287 hybrid network that uses both encapsulation types.
308 "virtual network device":
325 network operations will not function properly. The Linux
352 can set up your network then:
357 This is the simplest way to configure your network: use just one of the
[all …]
/linux-4.4.14/drivers/net/ethernet/cirrus/
DKconfig2 # Cirrus network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
24 network (Ethernet) card of this type, say Y and read the file
54 Nubus or LC-PDS network (Ethernet) card of this type, say Y here.
/linux-4.4.14/arch/powerpc/boot/dts/
Dmpc885ads.dts101 device_type = "network";
109 linux,network-index = <0>;
113 device_type = "network";
121 linux,network-index = <1>;
204 device_type = "network";
213 linux,network-index = <2>;
Dmgcoge.dts151 device_type = "network";
158 linux,network-index = <0>;
193 device_type = "network";
200 linux,network-index = <1>;
206 device_type = "network";
213 linux,network-index = <2>;
Dadder875-redboot.dts98 device_type = "network";
106 linux,network-index = <0>;
110 device_type = "network";
118 linux,network-index = <1>;
Dadder875-uboot.dts97 device_type = "network";
105 linux,network-index = <0>;
109 device_type = "network";
117 linux,network-index = <1>;
Dmpc866ads.dts81 device_type = "network";
89 linux,network-index = <0>;
163 device_type = "network";
171 linux,network-index = <1>;
Dep8248e.dts159 device_type = "network";
167 linux,network-index = <0>;
172 device_type = "network";
180 linux,network-index = <1>;
Dtqm8xx.dts114 device_type = "network";
121 linux,network-index = <1>;
184 device_type = "network";
191 linux,network-index = <0>;
Dep88xc.dts96 device_type = "network";
104 linux,network-index = <0>;
108 device_type = "network";
116 linux,network-index = <1>;
Dmpc7448hpc2.dts91 linux,network-index = <0>;
93 device_type = "network";
104 linux,network-index = <1>;
107 device_type = "network";
Dkmeter1.dts320 device_type = "network";
336 device_type = "network";
352 device_type = "network";
368 device_type = "network";
384 device_type = "network";
400 device_type = "network";
416 device_type = "network";
Dpq2fads.dts176 device_type = "network";
183 linux,network-index = <0>;
188 device_type = "network";
195 linux,network-index = <1>;
Dmpc8272ads.dts208 device_type = "network";
216 linux,network-index = <0>;
221 device_type = "network";
229 linux,network-index = <1>;
Dasp834x-redboot.dts188 device_type = "network";
198 linux,network-index = <0>;
229 device_type = "network";
239 linux,network-index = <1>;
Dhotfoot.dts160 linux,network-index = <0x0>;
161 device_type = "network";
181 linux,network-index = <0x1>;
182 device_type = "network";
Dsam440ep.dts218 linux,network-index = <0>;
219 device_type = "network";
239 linux,network-index = <1>;
240 device_type = "network";
Dsbc8349.dts154 device_type = "network";
164 linux,network-index = <0>;
195 device_type = "network";
205 linux,network-index = <1>;
Dobs600.dts245 linux,network-index = <0x0>;
246 device_type = "network";
275 linux,network-index = <0x1>;
276 device_type = "network";
/linux-4.4.14/drivers/net/
DKconfig13 You'll have to say Y if your computer contains a network card that
141 on the MAC-VLAN network interface, called macvtap. A macvtap device
175 to tunnel virtual network infrastructure in virtualized environments.
189 to tunnel virtual network infrastructure in virtualized environments.
199 If you want to log kernel messages over the network, enable this.
283 tristate "Virtio network driver"
286 This is the virtual network driver for virtio. It can be used with
373 tristate "Xen network device frontend driver"
378 This driver provides support for Xen paravirtual network
379 devices exported by a Xen network driver domain (often
[all …]
/linux-4.4.14/Documentation/filesystems/
Dsysfs-tagging.txt7 The problem. Network devices show up in sysfs and with the network
11 To avoid that problem and allow existing applications in network
15 By using the network namespace pointers as tags to separate out the
18 the network devices.
/linux-4.4.14/Documentation/netlabel/
Dintroduction.txt10 security attributes to outgoing network packets generated from user space
11 applications and read security attributes from incoming network packets. It
18 network packet's security attributes. If any translation between the network
Dlsm_interface.txt10 network packets. It is intended to be used by LSM developers who want to make
37 Depending on the exact configuration, translation between the network packet
44 identifier with the network packet's label. This means that in the future
Ddraft-ietf-cipso-ipsecurity-01.txt89 transmitted in network byte order. The format of this option is as follows:
149 are defined to be transmitted in network byte order. Like the DOI
443 the host or network security policy. In addition, a CIPSO gateway or router
445 adequate protection or may violate the network's security policy. To
475 all datagrams that may exit a particular network interface port. All
479 parameter does not apply to CIPSO hosts that support only one network port.
482 all datagrams that may exit a particular network interface port. All
486 This parameter does not apply to CIPSO hosts that support only one network
490 particular network interface port. All CIPSO labels within datagrams
496 particular IP network address. All CIPSO labels within datagrams destined
[all …]
/linux-4.4.14/drivers/staging/rtl8723au/hal/
Drtl8723a_cmd.c191 struct wlan_bssid_ex *cur_network = &pmlmeinfo->network; in ConstructBeacon()
294 memcpy(pwlanhdr->addr1, get_my_bssid23a(&pmlmeinfo->network), ETH_ALEN); in ConstructPSPoll()
322 switch (cur_network->network.ifmode) { in ConstructNullFunctionData()
327 get_my_bssid23a(&pmlmeinfo->network), ETH_ALEN); in ConstructNullFunctionData()
337 get_my_bssid23a(&pmlmeinfo->network), ETH_ALEN); in ConstructNullFunctionData()
346 get_my_bssid23a(&pmlmeinfo->network), ETH_ALEN); in ConstructNullFunctionData()
382 struct wlan_bssid_ex *cur_network = &pmlmeinfo->network; in ConstructProbeRsp()
490 get_my_bssid23a(&pmlmeinfo->network), in SetFwRsvdPagePkt()
507 get_my_bssid23a(&pmlmeinfo->network), in SetFwRsvdPagePkt()
522 get_my_bssid23a(&pmlmeinfo->network), in SetFwRsvdPagePkt()
[all …]
/linux-4.4.14/net/
DKconfig92 This enables security marking of network packets, similar
103 This allows timestamping of network packets by PHYs with
112 Netfilter is a framework for filtering and mangling network packets
116 a firewall protecting a local network from the Internet. The type of
118 filter", which means that it can reject individual network packets
121 bothersome to set up; it inspects the network traffic much more
130 the gateway to the Internet for a local network of machines without
132 of the computers on your local network wants to send something to
141 run globally visible servers from within a masqueraded local network
146 the local network tries to connect to an outside host, your Linux
[all …]
/linux-4.4.14/drivers/net/ethernet/cavium/
DKconfig10 Select this option if you want enable Cavium network support.
12 If you have a Cavium SoC or network adapter, say Y.
23 move network traffic to/from the memory. The NIC
/linux-4.4.14/Documentation/rapidio/
Drapidio.txt27 A typical RapidIO network is a combination of endpoints and switches.
50 A RapidIO device is any endpoint (other than mport) or switch in the network.
52 structure. Devices form one global device list and per-network device lists
70 A RapidIO network is a combination of interconnected endpoint and switch devices.
71 Each RapidIO network known to the system is represented by corresponding rio_net
73 ports that form the same network. It also contains a pointer to the default
74 master port that is used to communicate with devices within the network.
79 intended to support specific RapidIO devices attached to the RapidIO network.
96 register at least one master port within the RapidIO network. To register mport
132 expires the discovery process is terminated without obtaining RapidIO network
[all …]
/linux-4.4.14/drivers/net/ethernet/3com/
DKconfig10 If you have a network (Ethernet) card belonging to this class, say Y.
23 If you have a network (Ethernet) card belonging to the 3Com
38 network card, say Y here.
69 10/100Mbps EISA, PCI and Cardbus 3Com network cards:
94 If you have a network (Ethernet) card of this type, say Y here.
/linux-4.4.14/Documentation/sysctl/
Dnet.txt56 The default queuing discipline to use for network devices. This allows
136 occur because of problems on the network like duplicate address or bad
237 The fields indicate the DDP type, the local address (in network:node format)
243 shows the name of the interface, its Appletalk address, the network range on
244 that address (or network number for phase 1 networks), and the status of the
247 /proc/net/atalk_route lists each known network route. It lists the target
248 (network) that the route leads to, the router (may be directly connected), the
259 network:node:port). In accordance with the strange Novell tradition,
267 it gives the network number, the node number, and indicates if the network is
268 the primary network. It also indicates which device it is bound to (or
[all …]
/linux-4.4.14/drivers/net/ethernet/sun/
DKconfig2 # Sun network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
14 the questions about Sun network interfaces. If you say Y, you will be
76 Support for virtual network devices under Sun Logical Domains.
/linux-4.4.14/drivers/staging/unisys/visornic/
DKconfig9 The Unisys Visornic driver provides support for s-Par network
11 to visorbus to create a network device, the probe function of
/linux-4.4.14/Documentation/arm/
DIXP4xx10 Intel's IXP4xx network processor is a highly integrated SOC that
11 is targeted for network applications, though it has become popular
14 that support different network offload functions such as encryption,
21 http://developer.intel.com/design/network/products/npfamily/ixp4xx.htm
24 stripped of much of the network intelligence.
48 http://developer.intel.com/design/network/products/npfamily/ixp425.htm
122 http://www.intel.com/design/network/products/npfamily/ixdpg425.htm
129 http://www.intel.com/design/network/products/npfamily/ixdp465.htm
/linux-4.4.14/drivers/infiniband/ulp/srpt/
DKconfig8 a block storage device on another host (target) over a network
10 supported by InfiniBand and by iWarp network hardware. More
/linux-4.4.14/drivers/net/ethernet/dec/tulip/
DKconfig2 # Tulip family network device configuration
9 This selects the "Tulip" family of EISA/PCI network cards.
23 cards, below. However, most people with a network card of this type
51 cards, above. However, most people with a network card of this type
114 you have a network card of this type, say Y. More specific
130 <http://www.scyld.com/network/drivers.html>.
138 Davicom (<http://www.davicom.com.tw/>). If you have such a network
/linux-4.4.14/drivers/net/ethernet/emulex/benet/
DKconfig6 10Gbps network adapter - BladeEngine.
15 be2net network adapter.
/linux-4.4.14/net/packet/
DKconfig9 directly with network devices without an intermediate network
/linux-4.4.14/drivers/net/ethernet/dec/
DKconfig2 # Digital Equipment Inc network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
/linux-4.4.14/drivers/net/ethernet/tehuti/
DKconfig2 # Tehuti network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
/linux-4.4.14/drivers/net/ethernet/via/
DKconfig9 If you have a network (Ethernet) card belonging to this class, say Y.
25 If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A),
51 If you have a VIA "Velocity" based network card say Y here.
/linux-4.4.14/drivers/net/ethernet/sis/
DKconfig10 If you have a network (Ethernet) card belonging to this class, say Y.
25 This is a driver for the Fast Ethernet PCI network cards based on
30 your phone line as a network cable.
/linux-4.4.14/Documentation/filesystems/cifs/
Dcifs.txt6 CIFS VFS module. CIFS is fully supported by network
10 this network filesystem client can mount to a wide variety of
13 The intent of this module is to provide the most advanced network
/linux-4.4.14/drivers/net/ethernet/micrel/
DKconfig11 If you have a network (Ethernet) card belonging to this class, say Y.
43 SPI driver for Micrel KS8851 SPI attached network chip.
51 multiplexed network chip.
/linux-4.4.14/drivers/net/ethernet/toshiba/
DKconfig2 # Toshiba network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
24 This driver supports the network device on the PS3 game
/linux-4.4.14/drivers/net/fddi/
DKconfig2 # FDDI network device configuration
9 Fiber Distributed Data Interface is a high speed local area network
11 run over copper or fiber. If you are connected to such a network and
24 to a local FDDI network.
/linux-4.4.14/drivers/staging/rtl8723au/os_dep/
Dioctl_cfg80211.c257 channel = pnetwork->network.DSConfig; in rtw_cfg80211_inform_bss()
267 notify_ie = pnetwork->network.IEs; in rtw_cfg80211_inform_bss()
268 notify_ielen = pnetwork->network.IELength; in rtw_cfg80211_inform_bss()
274 is_same_network23a(&pmlmepriv->cur_network.network, in rtw_cfg80211_inform_bss()
275 &pnetwork->network)) { in rtw_cfg80211_inform_bss()
279 pnetwork->network.SignalStrength); /* dbm */ in rtw_cfg80211_inform_bss()
284 pnetwork->network.MacAddress, in rtw_cfg80211_inform_bss()
285 pnetwork->network.tsf, in rtw_cfg80211_inform_bss()
286 pnetwork->network.capability, in rtw_cfg80211_inform_bss()
287 pnetwork->network.beacon_interval, in rtw_cfg80211_inform_bss()
[all …]
/linux-4.4.14/drivers/net/ethernet/synopsys/
DKconfig2 # Synopsys network device configuration
9 If you have a network (Ethernet) device belonging to this class, say Y.
/linux-4.4.14/drivers/staging/rtl8188eu/os_dep/
Dioctl_linux.c86 memcpy(wrqu.ap_addr.sa_data, pmlmepriv->cur_network.network.MacAddress, ETH_ALEN); in rtw_indicate_wx_assoc_event()
127 memcpy(iwe.u.ap_addr.sa_data, pnetwork->network.MacAddress, ETH_ALEN); in translate_scan()
133 iwe.u.data.length = min_t(u16, pnetwork->network.Ssid.SsidLength, 32); in translate_scan()
134 start = iwe_stream_add_point(info, start, stop, &iwe, pnetwork->network.Ssid.Ssid); in translate_scan()
137 …p = rtw_get_ie(&pnetwork->network.IEs[12], _HT_CAPABILITY_IE_, &ht_ielen, pnetwork->network.IELeng… in translate_scan()
150 if ((rtw_is_cckratesonly_included((u8 *)&pnetwork->network.SupportedRates))) { in translate_scan()
155 } else if ((rtw_is_cckrates_included((u8 *)&pnetwork->network.SupportedRates))) { in translate_scan()
161 if (pnetwork->network.Configuration.DSConfig > 14) { in translate_scan()
178 memcpy(&le_tmp, rtw_get_capability_from_ie(pnetwork->network.IEs), 2); in translate_scan()
191 if (pnetwork->network.Configuration.DSConfig < 1) in translate_scan()
[all …]
/linux-4.4.14/net/netfilter/ipset/
DKconfig32 can store IPv4 addresses (or network addresse) from a range.
59 can store arbitrary IPv4 or IPv6 addresses (or network addresses)
98 network address/prefix triples in a set.
125 one can store IPv4/IPv6 network address/prefix elements in a set.
134 one can store IPv4/IPv6 network address/prefix pairs in a set.
143 one can store IPv4/IPv6 network address/prefix and
153 one can store IPv4/IPv6 network address/prefix and
/linux-4.4.14/drivers/net/ethernet/ezchip/
DKconfig2 # EZchip network device configuration
9 If you have a network (Ethernet) device belonging to this class, say Y.
/linux-4.4.14/drivers/net/ethernet/qualcomm/
DKconfig2 # Qualcomm network device configuration
9 If you have a network (Ethernet) card belonging to this class, say Y.
/linux-4.4.14/drivers/net/ethernet/nuvoton/
DKconfig2 # Nuvoton network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
/linux-4.4.14/arch/cris/boot/dts/
Ddev88.dts56 network {
57 label = "network";
Dp1343.dts50 label = "network:green";
55 label = "network:red";
/linux-4.4.14/net/atm/
DKconfig13 In order to participate in an ATM network, your Linux box needs an
27 network, you will typically either say Y here or to "LAN Emulation
45 network. Besides operating as a normal ATM end station client, Linux
56 enhancing overall network performance.
/linux-4.4.14/drivers/net/ethernet/hisilicon/
DKconfig11 If you have a network (Ethernet) card belonging to this class, say Y.
24 This selects the hix5hd2 mac family network device.
54 This selects the DSAF (Distributed System Area Frabric) network
/linux-4.4.14/drivers/net/ethernet/pasemi/
DKconfig2 # PA Semi network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
/linux-4.4.14/drivers/net/ethernet/sgi/
DKconfig10 If you have a network (Ethernet) card belonging to this class, say Y.
25 If you have a network (Ethernet) card of this type, say Y here.
/linux-4.4.14/drivers/net/ethernet/tundra/
DKconfig2 # Tundra network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
/linux-4.4.14/drivers/net/ethernet/i825xx/
DKconfig2 # Intel 82596/82593/82596 network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
23 If you have an Acorn system with one of these (AKA25) network cards,
/linux-4.4.14/drivers/net/ethernet/8390/
DKconfig10 If you have a network (Ethernet) card belonging to this class, say Y.
63 If you have an Acorn system with one of these network cards, you
84 If you have one of these boards and want to use the network interface
94 If you have a network (Ethernet) card of this type, say Y here.
111 support" below). If you have a PCI NE2000 network (Ethernet) card,
161 If you have a network (Ethernet) card of this type, say Y here.
178 If you have a network (Ethernet) card of this type, say Y here.
/linux-4.4.14/drivers/net/ethernet/hisilicon/hns/
Dhns_enet.c229 unsigned char *network; in hns_nic_get_headlen() local
237 network = data; in hns_nic_get_headlen()
240 network += ETH_HLEN; in hns_nic_get_headlen()
245 if ((typeof(max_size))(network - data) > (max_size - VLAN_HLEN)) in hns_nic_get_headlen()
248 network += VLAN_HLEN; in hns_nic_get_headlen()
254 if ((typeof(max_size))(network - data) > in hns_nic_get_headlen()
259 hlen = (network[0] & 0x0F) << 2; in hns_nic_get_headlen()
263 return network - data; in hns_nic_get_headlen()
268 if ((typeof(max_size))(network - data) > in hns_nic_get_headlen()
275 return network - data; in hns_nic_get_headlen()
[all …]
/linux-4.4.14/drivers/net/ethernet/xircom/
DKconfig2 # Xircom network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
/linux-4.4.14/drivers/net/ethernet/rdc/
DKconfig2 # RDC network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
/linux-4.4.14/Documentation/filesystems/nfs/
Dknfsd-stats.txt48 is the number of times that the network stack has notified the
52 Depending on the NFS workload patterns and various network stack
58 due to NFS network traffic.
66 network-facing work to be done but it couldn't be done immediately,
81 network-facing NFS work is being handled quickly, which is a good
87 i.e. was not woken to handle any incoming network packets for
/linux-4.4.14/drivers/net/ethernet/silan/
DKconfig10 If you have a network (Ethernet) card belonging to this class, say Y.
24 This is a driver for the Fast Ethernet PCI network cards based on
/linux-4.4.14/net/can/
DKconfig2 # Controller Area Network (CAN) network layer core configuration
13 More information on the CAN network protocol family PF_CAN
50 CAN frames can be routed between CAN network interfaces (one hop).
/linux-4.4.14/drivers/net/ethernet/cadence/
DKconfig10 If you have a network (Ethernet) card belonging to this class, say Y.
16 the remaining Atmel network card questions. If you say Y, you will be
/linux-4.4.14/fs/cifs/
DKconfig2 tristate "CIFS support (advanced network filesystem, SMBFS successor)"
30 The cifs module provides an advanced network file system
56 Unless you are a developer or are doing network performance analysis
73 security mechanisms if you are on a public network. Unless you
75 network) you probably want to say N. Even if this support
171 bool "SMB2 and SMB3 network file system support"
183 CIFS and SMB network file sharing protocols. SMB3 is the
196 bool "SMB3.1.1 network file system support (Experimental)"
/linux-4.4.14/arch/m68k/
DKconfig.devices54 Say Y to include support for the ARAnyM NatFeat network device
62 Say Y to include support for the EtherNAT network adapter for the
66 option in the network device section; the module will be called smc91x.
72 Say Y to include support for the EtherNEC network adapter for the
80 option in the network device section; the module will be called ne.
/linux-4.4.14/Documentation/filesystems/pohmelfs/
Ddesign_notes.txt7 POHMELFS first began as a network filesystem with coherent local data and
18 * Flexible object architecture optimized for network processing.
20 directories with a single network command.
21 (like removing the whole kernel tree via a single network command).
32 * Strong authentification and possible data encryption in network channel.
/linux-4.4.14/net/unix/
DKconfig10 accessing network connections. Many commonly used programs such as
12 machine is not connected to any network. Unless you are working on
/linux-4.4.14/fs/coda/
DKconfig2 tristate "Coda file system support (advanced network fs)"
5 Coda is an advanced network file system, similar to NFS in that it
/linux-4.4.14/fs/autofs4/
DKconfig17 If you are not a part of a fairly large, distributed network or
19 local network, you probably do not need an automounter, and can say
/linux-4.4.14/net/hsr/
DKconfig11 and it must be connected as a node in a ring network together with
16 instant fail-over network. Each HSR node in the ring acts like a
/linux-4.4.14/drivers/net/ethernet/microchip/
DKconfig2 # Microchip network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
/linux-4.4.14/drivers/net/ethernet/arc/
DKconfig2 # ARC EMAC network device configuration
9 If you have a network (Ethernet) card belonging to this class, say Y.
/linux-4.4.14/drivers/net/ethernet/realtek/
DKconfig10 If you have a network (Ethernet) card belonging to this class, say Y.
24 This is a network (Ethernet) device which attaches to your parallel
39 This is a driver for the Fast Ethernet PCI network cards based on
51 This is a driver for the Fast Ethernet PCI network cards based on
/linux-4.4.14/drivers/staging/rtl8192e/rtl8192e/
Drtl_core.c417 struct rtllib_network *network) in _rtl92e_qos_handle_probe_response() argument
428 if (network->flags & NETWORK_HAS_QOS_MASK) { in _rtl92e_qos_handle_probe_response()
430 (network->flags & NETWORK_HAS_QOS_PARAMETERS)) in _rtl92e_qos_handle_probe_response()
431 network->qos_data.active = network->qos_data.supported; in _rtl92e_qos_handle_probe_response()
433 if ((network->qos_data.active == 1) && (active_network == 1) && in _rtl92e_qos_handle_probe_response()
434 (network->flags & NETWORK_HAS_QOS_PARAMETERS) && in _rtl92e_qos_handle_probe_response()
435 (network->qos_data.old_param_count != in _rtl92e_qos_handle_probe_response()
436 network->qos_data.param_count)) { in _rtl92e_qos_handle_probe_response()
437 network->qos_data.old_param_count = in _rtl92e_qos_handle_probe_response()
438 network->qos_data.param_count; in _rtl92e_qos_handle_probe_response()
[all …]
/linux-4.4.14/net/ipv4/
DKconfig9 intend to participate in the MBONE, a high bandwidth network on top
18 computer that forwards and redistributes network packets, say Y; you
37 for their source address doesn't match the network interface they're
113 You need to say Y only for diskless machines requiring network
115 on NFS" as well), because all other machines configure the network
127 the boot ROM of your network card was designed for booting Linux and
132 must be operating on your network. Read
144 the boot ROM of your network card was designed for booting Linux and
147 want to use BOOTP, a BOOTP server must be operating on your network.
160 operating on your network. Read
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/misc/
Dfsl,qoriq-mc.txt5 network-oriented packet processing applications. After the fsl-mc
9 such as network interfaces, crypto accelerator instances, L2 switches,
/linux-4.4.14/Documentation/scsi/
Dbnx2fc.txt10 depend on the state of the network interfaces to operate. As such, the network
12 It is recommended that the network interfaces be configured to be brought up
/linux-4.4.14/drivers/net/ethernet/dlink/
DKconfig10 If you have a network (Ethernet) card belonging to this class, say Y.
42 <http://www.scyld.com/network/sundance.html>.
/linux-4.4.14/drivers/staging/rtl8188eu/hal/
Drtl8188e_cmd.c232 struct wlan_bssid_ex *cur_network = &(pmlmeinfo->network); in ConstructBeacon()
316 struct wlan_bssid_ex *pnetwork = &(pmlmeinfo->network); in ConstructPSPoll()
353 struct wlan_bssid_ex *pnetwork = &(pmlmeinfo->network); in ConstructNullFunctionData()
362 switch (cur_network->network.InfrastructureMode) { in ConstructNullFunctionData()
412 struct wlan_bssid_ex *cur_network = &(pmlmeinfo->network); in ConstructProbeRsp()
479 pnetwork = &(pmlmeinfo->network); in SetFwRsvdPagePkt()
/linux-4.4.14/net/netfilter/ipvs/
DKconfig116 The robin-robin scheduling algorithm simply directs network
125 The weighted robin-robin scheduling algorithm directs network
138 The least-connection scheduling algorithm directs network
148 The weighted least-connection scheduling algorithm directs network
158 The weighted failover scheduling algorithm directs network
168 The weighted overflow scheduling algorithm directs network
211 The destination hashing scheduling algorithm assigns network
221 The source hashing scheduling algorithm assigns network
231 The shortest expected delay scheduling algorithm assigns network
/linux-4.4.14/drivers/net/ethernet/amd/
DKconfig2 # AMD network device configuration
12 If you have a network (Ethernet) chipset belonging to this class,
49 If you have a network (Ethernet) card of this type, say Y here.
61 If you have a PCnet32 or PCnetPCI based network (Ethernet) card,
143 If you have a network (Ethernet) card of this type, say Y here.
/linux-4.4.14/drivers/staging/most/hdm-usb/
DMakefile4 ccflags-y += -Idrivers/staging/most/aim-network/
DKconfig10 Say Y here if you want to connect via USB to network tranceiver.
/linux-4.4.14/arch/xtensa/platforms/iss/
DMakefile9 obj-$(CONFIG_NET) += network.o
/linux-4.4.14/Documentation/networking/mac80211_hwsim/
Dwpa_supplicant.conf3 network={
/linux-4.4.14/tools/hv/
Dhv_set_ifconfig.sh58 cp $1 /etc/sysconfig/network-scripts/
/linux-4.4.14/drivers/staging/most/hdm-dim2/
DMakefile5 ccflags-y += -Idrivers/staging/most/aim-network/
DKconfig11 Say Y here if you want to connect via MediaLB to network transceiver.
/linux-4.4.14/drivers/staging/netlogic/
DKconfig2 tristate "Netlogic XLR/XLS network device"
/linux-4.4.14/arch/arm/boot/dts/
Dat91-kizbox.dts112 label = "pwm:green:network";
119 label = "pwm:red:network";
/linux-4.4.14/drivers/net/ethernet/alteon/
DKconfig2 # Alteon network device configuration
10 If you have a network (Ethernet) card belonging to this class, say Y.
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/qe/
Ducc.txt4 - device_type : should be "network", "hldc", "uart", "transparent"
46 Required properties for network device_type:
58 device_type = "network";
/linux-4.4.14/net/mac80211/
DKconfig220 is taking part in a mesh network).
233 is taking part in a mesh network).
246 is taking part in a mesh network).
259 mesh network).
270 mesh network).
281 mesh network).
/linux-4.4.14/arch/powerpc/boot/dts/fsl/
Dmpc8569mds.dts258 device_type = "network";
329 device_type = "network";
352 device_type = "network";
375 device_type = "network";
398 device_type = "network";
409 device_type = "network";
/linux-4.4.14/drivers/staging/most/
DMakefile3 obj-$(CONFIG_AIM_NETWORK) += aim-network/
/linux-4.4.14/drivers/staging/rtl8723au/include/
Drtw_event.h44 struct wlan_network network; member
/linux-4.4.14/drivers/net/ethernet/adi/
DKconfig9 If you have a network (Ethernet) card belonging to this class, say Y.
38 To get maximum network performance, you should use L1 memory as rx/tx
/linux-4.4.14/tools/perf/Documentation/
Dperf-timechart.txt20 but it's possible to record IO (disk, network) activity using -I argument.
28 Upper bar shows incoming events (disk reads, ingress network packets).
29 Lower bar shows outgoing events (disk writes, egress network packets).
/linux-4.4.14/drivers/net/ethernet/aeroflex/
DKconfig2 # Aeroflex Gaisler network device configuration
/linux-4.4.14/drivers/staging/most/hdm-i2c/
DKconfig9 Say Y here if you want to connect via I2C to network tranceiver.
/linux-4.4.14/drivers/net/plip/
DKconfig2 # Parallel Line Internet Protocol (PLIP) network device configuration
10 reasonably fast mini network consisting of two (or, rarely, more)
/linux-4.4.14/drivers/net/ethernet/octeon/
DKconfig2 # Cavium network device configuration
/linux-4.4.14/drivers/net/slip/
DKconfig2 # SLIP network device configuration
21 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
54 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
/linux-4.4.14/net/l2tp/
DKconfig16 intervening network in a way that is as transparent as
59 packet-oriented data network (e.g., over IP). L2TP, as
98 across an IP network [RFC3931].
/linux-4.4.14/drivers/staging/rtl8188eu/include/
Drtw_event.h59 struct wlan_network network; member
/linux-4.4.14/net/netlabel/
DKconfig10 NetLabel provides support for explicit network packet labeling
/linux-4.4.14/drivers/net/ethernet/natsemi/
DKconfig9 If you have a network (Ethernet) card belonging to this class, say Y.
46 <http://www.scyld.com/network/natsemi.html>.
/linux-4.4.14/drivers/net/ethernet/brocade/bna/
DKconfig2 # QLogic BR-series network device configuration
/linux-4.4.14/Documentation/blockdev/drbd/
Dconn-states-8.dot17 Connected -> WFConnection [ label = "* on network error" ]
/linux-4.4.14/Documentation/aoe/
Daoe.txt1 ATA over Ethernet is a network protocol that provides simple access to
76 The netif attribute is the network interface on the localhost
107 AoE traffic to the network interfaces in the given
120 all network interfaces may be used for ATA over Ethernet. Here is a
/linux-4.4.14/drivers/net/ethernet/smsc/
DKconfig2 # Western Digital/SMC network device configuration
12 If you have a network (Ethernet) card belonging to this class, say Y.
74 <http://www.scyld.com/network/epic100.html>.
/linux-4.4.14/drivers/block/drbd/
DKconfig22 storage. Simplistically, you could see it as a network RAID 1.
27 the local 'lower level block device' and, across the network, to the

1234