/net/dsa/ |
D | Kconfig | 17 Say Y if you want to enable support for the hardware switches supported 41 Say Y if you want to enable support for tagging frames for the 49 Say Y if you want to enable support for tagging frames for the 56 Say Y or M if you want to enable support for tagging frames for the 62 Say Y or M if you want to enable support for tagging frames for the 68 Say Y or M if you want to enable support for tagging frames for the 74 Say Y or M if you want to enable support for tagging frames for 80 Say Y if you want to enable support for tagging frames for the 86 Say Y or M if you want to enable support for tagging frames for 92 Say Y or M if you want to enable support for tagging frames for the [all …]
|
/net/ncsi/ |
D | ncsi-rsp.c | 176 if (ncm->enable) in ncsi_rsp_handler_ec() 179 ncm->enable = 1; in ncsi_rsp_handler_ec() 203 if (!ncm->enable) in ncsi_rsp_handler_dc() 206 ncm->enable = 0; in ncsi_rsp_handler_dc() 247 if (ncm->enable) in ncsi_rsp_handler_ecnt() 250 ncm->enable = 1; in ncsi_rsp_handler_ecnt() 269 if (!ncm->enable) in ncsi_rsp_handler_dcnt() 272 ncm->enable = 0; in ncsi_rsp_handler_dcnt() 293 if (ncm->enable) in ncsi_rsp_handler_ae() 298 ncm->enable = 1; in ncsi_rsp_handler_ae() [all …]
|
D | ncsi-aen.c | 110 } else if (ncm->enable) { in ncsi_aen_handler_lsc() 124 if (ncm->enable && in ncsi_aen_handler_lsc() 168 nc->modes[NCSI_MODE_TX_ENABLE].enable = 0; in ncsi_aen_handler_cr()
|
D | ncsi-manage.c | 795 if (ncm->enable) in ncsi_channel_is_tx() 825 struct ncsi_channel *enable) in ncsi_update_tx_channel() argument 846 if (nc->modes[NCSI_MODE_TX_ENABLE].enable) { in ncsi_update_tx_channel() 854 if (enable) in ncsi_update_tx_channel() 863 enable = np->preferred_channel; in ncsi_update_tx_channel() 873 enable = nc; in ncsi_update_tx_channel() 879 if (disable == enable) in ncsi_update_tx_channel() 882 if (!enable) in ncsi_update_tx_channel() 896 netdev_info(ndp->ndev.dev, "NCSI: channel %u enables Tx\n", enable->id); in ncsi_update_tx_channel() 898 nca.channel = enable->id; in ncsi_update_tx_channel() [all …]
|
D | internal.h | 102 u32 enable; /* Enabled or disabled */ member 377 struct ncsi_channel *enable);
|
/net/wireless/ |
D | Kconfig | 55 bool "enable developer warnings" 87 features. Alternatively you can enable this option if 133 drivers that support this feature. You should only enable this 162 bool "enable powersave by default" 175 You can enable this if you want debugfs entries for cfg80211. 183 You should enable this option unless you know for sure you have no 233 You can enable this if you want verbose debugging messages
|
/net/8021q/ |
D | Kconfig | 27 Select this to enable GVRP end-system support. GVRP is used for 37 Select this to enable MVRP end-system support. MVRP is used for
|
/net/tipc/ |
D | Kconfig | 28 Saying Y here will enable support for running TIPC on 35 Saying Y here will enable support for running TIPC over IP/UDP
|
/net/bluetooth/ |
D | hci_request.c | 352 void __hci_req_write_fast_connectable(struct hci_request *req, bool enable) in __hci_req_write_fast_connectable() argument 364 if (enable) { in __hci_req_write_fast_connectable() 665 cp.enable = LE_SCAN_DISABLE; in hci_req_add_le_scan_disable() 672 cp.enable = LE_SCAN_DISABLE; in hci_req_add_le_scan_disable() 842 ext_enable_cp.enable = LE_SCAN_ENABLE; in hci_req_start_scan() 861 enable_cp.enable = LE_SCAN_ENABLE; in hci_req_start_scan() 949 cp.enable = 0x00; in __hci_req_disable_advertising() 955 u8 enable = 0x00; in __hci_req_disable_advertising() local 957 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable); in __hci_req_disable_advertising() 1059 u8 own_addr_type, enable = 0x01; in __hci_req_enable_advertising() local [all …]
|
D | hci_conn.c | 482 u8 enable = 0x00; in le_conn_timeout() local 483 hci_send_cmd(hdev, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), in le_conn_timeout() 484 &enable); in le_conn_timeout() 873 u8 enable; in hci_req_directed_advertising() local 951 enable = 0x01; in hci_req_directed_advertising() 952 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), in hci_req_directed_advertising() 953 &enable); in hci_req_directed_advertising() 1031 u8 enable = 0x00; in hci_connect_le() local 1032 hci_req_add(&req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), in hci_connect_le() 1033 &enable); in hci_connect_le()
|
D | hci_debugfs.c | 50 bool enable; \ 56 err = kstrtobool_from_user(user_buf, count, &enable); \ 60 if (enable == test_bit(__quirk, &hdev->quirks)) \ 696 bool enable; in force_static_address_write() local 702 err = kstrtobool_from_user(user_buf, count, &enable); in force_static_address_write() 706 if (enable == hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR)) in force_static_address_write()
|
D | hci_request.h | 64 void __hci_req_write_fast_connectable(struct hci_request *req, bool enable);
|
D | hci_core.c | 80 bool enable; in dut_mode_write() local 86 err = kstrtobool_from_user(user_buf, count, &enable); in dut_mode_write() 90 if (enable == hci_dev_test_flag(hdev, HCI_DUT_MODE)) in dut_mode_write() 94 if (enable) in dut_mode_write() 135 bool enable; in vendor_diag_write() local 138 err = kstrtobool_from_user(user_buf, count, &enable); in vendor_diag_write() 153 err = hdev->set_diag(hdev, enable); in vendor_diag_write() 160 if (enable) in vendor_diag_write() 491 u8 enable = 1; in hci_init2_req() local 492 hci_req_add(req, HCI_OP_WRITE_AUTH_ENABLE, sizeof(enable), in hci_init2_req() [all …]
|
/net/dccp/ |
D | dccp.h | 32 #define DCCP_PRINTK(enable, fmt, args...) do { if (enable) \ argument 35 #define DCCP_PR_DEBUG(enable, fmt, a...) DCCP_PRINTK(enable, KERN_DEBUG \ argument
|
D | feat.c | 79 static int dccp_hdlr_ackvec(struct sock *sk, u64 enable, bool rx) in dccp_hdlr_ackvec() argument 84 if (enable && dp->dccps_hc_rx_ackvec == NULL) { in dccp_hdlr_ackvec() 88 } else if (!enable) { in dccp_hdlr_ackvec() 96 static int dccp_hdlr_ndp(struct sock *sk, u64 enable, bool rx) in dccp_hdlr_ndp() argument 99 dccp_sk(sk)->dccps_send_ndp_count = (enable > 0); in dccp_hdlr_ndp()
|
/net/iucv/ |
D | Kconfig | 8 under VM or VIF. If you run on z/VM, say "Y" to enable a fast
|
/net/mac80211/ |
D | he.c | 90 he_obss_pd->enable = true; in ieee80211_he_spr_ie_to_bss_conf()
|
/net/batman-adv/ |
D | bat_algo.c | 70 if (!bat_algo_ops->iface.enable || in batadv_algo_register()
|
/net/sched/ |
D | sch_etf.c | 311 etf.enable = 0; in etf_disable_offload() 335 etf.enable = 1; in etf_enable_offload()
|
D | sch_cbs.c | 267 cbs.enable = 0; in cbs_disable_offload() 290 cbs.enable = 1; in cbs_enable_offload()
|
D | sch_red.c | 150 static int red_offload(struct Qdisc *sch, bool enable) in red_offload() argument 162 if (enable) { in red_offload()
|
/net/ |
D | Kconfig | 197 Enabling or disabling this option doesn't enable or disable 290 bool "enable BPF Just In Time compiler" 299 Note, admin should enable this feature changing: 305 bool "enable BPF STREAM_PARSER"
|
/net/bridge/ |
D | Kconfig | 25 If you enable iptables support along with the bridge support then you
|
/net/netfilter/ipvs/ |
D | ip_vs_core.c | 1374 if (!ipvs->enable) in ip_vs_out() 2007 if (unlikely(sysctl_backup_only(ipvs) || !ipvs->enable)) in ip_vs_in() 2228 if (unlikely(sysctl_backup_only(ipvs) || !ipvs->enable)) in ip_vs_forward_icmp() 2248 if (unlikely(sysctl_backup_only(ipvs) || !ipvs->enable)) in ip_vs_forward_icmp_v6() 2362 ipvs->enable = 0; in __ip_vs_init() 2439 ipvs->enable = 0; /* Disable packet reception */ in __ip_vs_dev_cleanup()
|
/net/sunrpc/ |
D | Kconfig | 28 Choose Y here to enable Secure RPC using the Kerberos version 5
|