Home
last modified time | relevance | path

Searched full:ie (Results 1 – 25 of 740) sorted by relevance

12345678910>>...30

/linux/drivers/net/wireless/marvell/mwifiex/
H A Die.c3 * NXP Wireless LAN device driver: management IE handling- setting and
4 * deleting IE.
11 /* This function checks if current IE index is used by any on other interface.
12 * Return: -1: yes, current IE index is used by someone else.
13 * 0: no, current IE index is NOT used by other interface.
20 struct mwifiex_ie *ie; in mwifiex_ie_index_used_by_other_intf() local
24 ie = &adapter->priv[i]->mgmt_ie[idx]; in mwifiex_ie_index_used_by_other_intf()
25 if (ie->mgmt_subtype_mask && ie->ie_length) in mwifiex_ie_index_used_by_other_intf()
33 /* Get unused IE index. This index will be used for setting new IE */
36 struct mwifiex_ie *ie, u16 *index) in mwifiex_ie_get_autoidx() argument
[all …]
H A Dsta_ioctl.c185 * exist VHT_CAP IE in AP beacon in mwifiex_fill_new_bss_desc()
835 * IOCTL request handler to set/reset WPA IE.
837 * The supplied WPA IE is treated as a opaque buffer. Only the first field
839 * WPA IE is reset.
847 "failed to copy WPA IE, too big\n"); in mwifiex_set_wpa_ie()
853 "cmd: Set Wpa_ie_len=%d IE=%#x\n", in mwifiex_set_wpa_ie()
868 "info: reset wpa_ie_len=%d IE=%#x\n", in mwifiex_set_wpa_ie()
878 * IOCTL request handler to set/reset WAPI IE.
880 * The supplied WAPI IE is treated as a opaque buffer. Only the first field
882 * WAPI IE is reset.
[all …]
H A Djoin.c20 * Append a generic IE as a pass through TLV to a TLV buffer.
24 * If the IE buffer has been setup by the application, this routine appends
40 * If there is a generic ie buffer setup, append it to the return in mwifiex_cmd_append_generic_ie()
45 "info: %s: append generic ie len %d to %p\n", in mwifiex_cmd_append_generic_ie()
48 /* Wrap the generic IE buffer with a pass through TLV type */ in mwifiex_cmd_append_generic_ie()
58 /* Copy the generic IE buffer to the output buffer, advance in mwifiex_cmd_append_generic_ie()
67 /* Reset the generic IE buffer */ in mwifiex_cmd_append_generic_ie()
219 * This function appends a WPS IE. It is called from the network join command
222 * If the IE buffer has been setup by the application, this routine appends
235 * If there is a wps ie buffer setup, append it to the return in mwifiex_cmd_append_wps_ie()
[all …]
/linux/drivers/net/ethernet/chelsio/cxgb/
H A Dvsc7326_reg.h68 * ie = 0 for ingress, 1 for egress
71 #define REG_TEST(ie,fn) CRA(0x2,ie&1,0x00+fn) /* Mode & Test Register */ argument
72 #define REG_TOP_BOTTOM(ie,fn) CRA(0x2,ie&1,0x10+fn) /* FIFO Buffer Top & Bottom */ argument
73 #define REG_TAIL(ie,fn) CRA(0x2,ie&1,0x20+fn) /* FIFO Write Pointer */ argument
74 #define REG_HEAD(ie,fn) CRA(0x2,ie&1,0x30+fn) /* FIFO Read Pointer */ argument
75 #define REG_HIGH_LOW_WM(ie,fn) CRA(0x2,ie&1,0x40+fn) /* Flow Control Water Marks */ argument
76 #define REG_CT_THRHLD(ie,fn) CRA(0x2,ie&1,0x50+fn) /* Cut Through Threshold */ argument
77 #define REG_FIFO_DROP_CNT(ie,fn) CRA(0x2,ie&1,0x60+fn) /* Drop & CRC Error Counter */ argument
78 #define REG_DEBUG_BUF_CNT(ie,fn) CRA(0x2,ie&1,0x70+fn) /* Input Side Debug Counter */ argument
83 * ie = 0 for ingress, 1 for egress
[all …]
/linux/drivers/net/wireless/nxp/nxpwifi/
H A Die.c11 /* Return true if the IE index is used by another interface. */
17 struct nxpwifi_ie *ie; in nxpwifi_ie_index_used_by_other_intf() local
21 ie = &adapter->priv[i]->mgmt_ie[idx]; in nxpwifi_ie_index_used_by_other_intf()
22 if (ie->mgmt_subtype_mask && ie->ie_length) in nxpwifi_ie_index_used_by_other_intf()
30 /* Pick an unused IE index for a new element. */
33 struct nxpwifi_ie *ie, u16 *index) in nxpwifi_ie_get_autoidx() argument
39 len = le16_to_cpu(ie->ie_length); in nxpwifi_ie_get_autoidx()
64 /* Build IE list and resolve AUTO index before sending to FW. */
71 struct nxpwifi_ie *ie; in nxpwifi_update_autoindex_ies() local
80 ie = (struct nxpwifi_ie *)(((u8 *)ie_list) + travel_len); in nxpwifi_update_autoindex_ies()
[all …]
/linux/drivers/dma/idxd/
H A Dsubmit.c75 static struct idxd_desc *list_abort_desc(struct idxd_wq *wq, struct idxd_irq_entry *ie, in list_abort_desc() argument
80 lockdep_assert_held(&ie->list_lock); in list_abort_desc()
81 list_for_each_entry_safe(d, n, &ie->work_list, list) { in list_abort_desc()
97 static void llist_abort_desc(struct idxd_wq *wq, struct idxd_irq_entry *ie, in llist_abort_desc() argument
109 spin_lock(&ie->list_lock); in llist_abort_desc()
110 head = llist_del_all(&ie->pending_llist); in llist_abort_desc()
121 list_add_tail(&d->list, &ie->work_list); in llist_abort_desc()
126 found = list_abort_desc(wq, ie, desc); in llist_abort_desc()
127 spin_unlock(&ie->list_lock); in llist_abort_desc()
173 struct idxd_irq_entry *ie = NULL; in idxd_submit_desc() local
[all …]
H A Ddevice.c1272 static void idxd_flush_pending_descs(struct idxd_irq_entry *ie) in idxd_flush_pending_descs() argument
1279 spin_lock(&ie->list_lock); in idxd_flush_pending_descs()
1280 head = llist_del_all(&ie->pending_llist); in idxd_flush_pending_descs()
1283 list_add_tail(&desc->list, &ie->work_list); in idxd_flush_pending_descs()
1286 list_for_each_entry_safe(desc, itr, &ie->work_list, list) in idxd_flush_pending_descs()
1288 spin_unlock(&ie->list_lock); in idxd_flush_pending_descs()
1309 struct idxd_irq_entry *ie) in idxd_device_set_perm_entry() argument
1313 if (ie->pasid == IOMMU_PASID_INVALID) in idxd_device_set_perm_entry()
1317 mperm.pasid = ie->pasid; in idxd_device_set_perm_entry()
1319 iowrite32(mperm.bits, idxd->reg_base + idxd->msix_perm_offset + ie->id * 8); in idxd_device_set_perm_entry()
[all …]
H A Dirq.c71 static void idxd_int_handle_revoke_drain(struct idxd_irq_entry *ie) in idxd_int_handle_revoke_drain() argument
73 struct idxd_wq *wq = ie_to_wq(ie); in idxd_int_handle_revoke_drain()
85 if (ie->pasid != IOMMU_PASID_INVALID) in idxd_int_handle_revoke_drain()
86 desc.pasid = ie->pasid; in idxd_int_handle_revoke_drain()
87 desc.int_handle = ie->int_handle; in idxd_int_handle_revoke_drain()
105 static void idxd_abort_invalid_int_handle_descs(struct idxd_irq_entry *ie) in idxd_abort_invalid_int_handle_descs() argument
111 spin_lock(&ie->list_lock); in idxd_abort_invalid_int_handle_descs()
112 head = llist_del_all(&ie->pending_llist); in idxd_abort_invalid_int_handle_descs()
115 list_add_tail(&d->list, &ie->work_list); in idxd_abort_invalid_int_handle_descs()
118 list_for_each_entry_safe(d, t, &ie->work_list, list) { in idxd_abort_invalid_int_handle_descs()
[all …]
/linux/drivers/net/wireless/marvell/libertas/
H A Dmesh.c91 struct mrvl_meshie *ie; in lbs_mesh_config() local
95 ie = (struct mrvl_meshie *)cmd.data; in lbs_mesh_config()
99 ie->id = WLAN_EID_VENDOR_SPECIFIC; in lbs_mesh_config()
100 ie->val.oui[0] = 0x00; in lbs_mesh_config()
101 ie->val.oui[1] = 0x50; in lbs_mesh_config()
102 ie->val.oui[2] = 0x43; in lbs_mesh_config()
103 ie->val.type = MARVELL_MESH_IE_TYPE; in lbs_mesh_config()
104 ie->val.subtype = MARVELL_MESH_IE_SUBTYPE; in lbs_mesh_config()
105 ie->val.version = MARVELL_MESH_IE_VERSION; in lbs_mesh_config()
106 ie->val.active_protocol_id = MARVELL_MESH_PROTO_ID_HWMP; in lbs_mesh_config()
[all …]
/linux/drivers/net/wireless/ath/ath10k/
H A Dp2p.c23 /* P2P IE */ in ath10k_p2p_noa_ie_fill()
70 static void ath10k_p2p_noa_ie_assign(struct ath10k_vif *arvif, void *ie, in ath10k_p2p_noa_ie_assign() argument
79 arvif->u.ap.noa_data = ie; in ath10k_p2p_noa_ie_assign()
87 void *ie; in __ath10k_p2p_noa_update() local
98 ie = kmalloc(len, GFP_ATOMIC); in __ath10k_p2p_noa_update()
99 if (!ie) in __ath10k_p2p_noa_update()
102 ath10k_p2p_noa_ie_fill(ie, len, noa); in __ath10k_p2p_noa_update()
103 ath10k_p2p_noa_ie_assign(arvif, ie, len); in __ath10k_p2p_noa_update()
/linux/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dcfg80211.h58 /* IE TLV processing */
71 /* vendor IE in IW advertisement protocol ID field */
73 /* allow custom IE id */
201 * @probe_req_ie: IE info for probe request.
202 * @probe_res_ie: IE info for probe response.
203 * @beacon_ie: IE info for beacon frame.
204 * @assoc_req_ie: IE info for association request frame.
205 * @assoc_res_ie: IE info for association response frame.
206 * @probe_req_ie_len: IE info length for probe request.
207 * @probe_res_ie_len: IE info length for probe response.
[all …]
/linux/Documentation/input/
H A Dff.rst194 struct input_event ie; /* structure used to communicate with the driver */
196 ie.type = EV_FF;
197 ie.code = FF_GAIN;
198 ie.value = 0xFFFFUL * gain / 100;
200 if (write(fd, &ie, sizeof(ie)) == -1)
213 struct input_event ie;
215 ie.type = EV_FF;
216 ie.code = FF_AUTOCENTER;
217 ie.value = 0xFFFFUL * autocenter / 100;
219 if (write(fd, &ie, sizeof(ie)) == -1)
H A Duinput.rst50 struct input_event ie;
52 ie.type = type;
53 ie.code = code;
54 ie.value = val;
56 ie.time.tv_sec = 0;
57 ie.time.tv_usec = 0;
59 write(fd, &ie, sizeof(ie));
/linux/net/wireless/
H A Dwext-sme.c31 wdev->wext.connect.ie = wdev->wext.ie; in cfg80211_mgd_wext_connect()
306 u8 *ie = extra; in cfg80211_wext_siwgenie() local
312 ie = NULL; in cfg80211_wext_siwgenie()
318 memcmp(wdev->wext.ie, ie, ie_len) == 0) in cfg80211_wext_siwgenie()
331 ie = kmemdup(extra, ie_len, GFP_KERNEL); in cfg80211_wext_siwgenie()
332 if (!ie) in cfg80211_wext_siwgenie()
335 ie = NULL; in cfg80211_wext_siwgenie()
338 kfree(wdev->wext.ie); in cfg80211_wext_siwgenie()
339 wdev->wext.ie = ie; in cfg80211_wext_siwgenie()
H A Dscan.c231 const u8 *ie, size_t ie_len, in cfg80211_copy_elem_with_frags() argument
234 if (WARN_ON((u8 *)elem < ie || elem->data > ie + ie_len || in cfg80211_copy_elem_with_frags()
235 elem->data + elem->datalen > ie + ie_len)) in cfg80211_copy_elem_with_frags()
248 ie_len = ie + ie_len - elem->data - elem->datalen; in cfg80211_copy_elem_with_frags()
249 ie = (const u8 *)elem->data + elem->datalen; in cfg80211_copy_elem_with_frags()
251 for_each_element(elem, ie, ie_len) { in cfg80211_copy_elem_with_frags()
269 cfg80211_gen_new_ie(const u8 *ie, size_t ielen, in cfg80211_gen_new_ie() argument
294 for_each_element(parent, ie, ielen) { in cfg80211_gen_new_ie()
318 ie, ielen, in cfg80211_gen_new_ie()
336 ie, ielen, in cfg80211_gen_new_ie()
[all …]
H A Dreg.h79 * regulatory_hint_country_ie - hints a country IE as a regulatory domain
82 * @band: the band on which the country IE was received on. This determines
83 * the band we'll process the country IE channel triplets for.
84 * @country_ie: pointer to the country IE
85 * @country_ie_len: length of the country IE
88 * for the alpha2 this country IE belongs to, this prevents APs from
91 * The AP is expected to provide Country IE channel triplets for the
93 * country IE triplets even for channels outside of the band they are
113 * prior to our first connect attempt. This includes ignoring country IE and
/linux/io_uring/
H A Depoll.c53 struct io_epoll *ie = io_kiocb_to_cmd(req, struct io_epoll); in io_epoll_ctl() local
58 CLASS(fd, f)(ie->epfd); in io_epoll_ctl()
62 CLASS(fd, tf)(ie->fd); in io_epoll_ctl()
67 key.fd = ie->fd; in io_epoll_ctl()
68 ret = do_epoll_ctl_file(fd_file(f), ie->op, &key, &ie->event, force_nonblock); in io_epoll_ctl()
/linux/drivers/net/wireless/intel/iwlwifi/
H A Diwl-utils.h42 const u8 *ie; in iwl_find_ie_offset() local
49 ie = cfg80211_find_ie(eid, mgmt->u.beacon.variable, frame_size); in iwl_find_ie_offset()
50 if (!ie) in iwl_find_ie_offset()
53 return ie - beacon; in iwl_find_ie_offset()
/linux/tools/testing/selftests/livepatch/test_modules/
H A Dtest_klp_callbacks_demo2.c30 /* Executed on object patching (ie, patch enablement) */
37 /* Executed on object unpatching (ie, patch disablement) */
43 /* Executed on object unpatching (ie, patch disablement) */
49 /* Executed on object unpatching (ie, patch disablement) */
H A Dtest_klp_callbacks_demo.c30 /* Executed on object patching (ie, patch enablement) */
37 /* Executed on object unpatching (ie, patch disablement) */
43 /* Executed on object unpatching (ie, patch disablement) */
49 /* Executed on object unpatching (ie, patch disablement) */
H A Dtest_klp_state.c89 /* Executed on object patching (ie, patch enablement) */
96 /* Executed on object unpatching (ie, patch disablement) */
103 /* Executed on object unpatching (ie, patch disablement) */
110 /* Executed on object unpatching (ie, patch disablement) */
H A Dtest_klp_state2.c118 /* Executed on object patching (ie, patch enablement) */
125 /* Executed on object unpatching (ie, patch disablement) */
132 /* Executed on object unpatching (ie, patch disablement) */
139 /* Executed on object unpatching (ie, patch disablement) */
/linux/arch/csky/include/asm/
H A Dirqflags.h12 asm volatile("psrclr ie\n":::"memory"); in arch_local_irq_save()
19 asm volatile("psrset ee, ie\n":::"memory"); in arch_local_irq_enable()
25 asm volatile("psrclr ie\n":::"memory"); in arch_local_irq_disable()
/linux/drivers/char/ipmi/
H A Dkcs_bmc_npcm7xx.c58 * ie : KCS Channel n Interrupt Enable Register (KCSnIE).
65 u32 ie; member
77 { .sts = KCS1ST, .dob = KCS1DO, .dib = KCS1DI, .ctl = KCS1CTL, .ie = KCS1IE },
78 { .sts = KCS2ST, .dob = KCS2DO, .dib = KCS2DI, .ctl = KCS2CTL, .ie = KCS2IE },
79 { .sts = KCS3ST, .dob = KCS3DO, .dib = KCS3DI, .ctl = KCS3CTL, .ie = KCS3IE },
121 regmap_update_bits(priv->map, priv->reg->ie, KCS_IE_IRQE | KCS_IE_HIRQE, in npcm7xx_kcs_enable_channel()
/linux/include/net/
H A Dregulatory.h28 * enum environment_cap - Environment parsed from country IE
29 * @ENVIRON_ANY: indicates country IE applies to both indoor and
31 * @ENVIRON_INDOOR: indicates country IE applies only to indoor operation
32 * @ENVIRON_OUTDOOR: indicates country IE applies only to outdoor operation
130 * based on the ISO3166-alpha2 from country IE provided through
133 * all country IE information processed by the regulatory core. This will

12345678910>>...30