Searched refs:eid (Results 1 - 25 of 99) sorted by relevance

1234

/linux-master/include/net/
H A Dmctp.h41 static inline bool mctp_address_unicast(mctp_eid_t eid) argument
43 return eid >= 8 && eid < 255;
46 static inline bool mctp_address_broadcast(mctp_eid_t eid) argument
48 return eid == 255;
51 static inline bool mctp_address_null(mctp_eid_t eid) argument
53 return eid == 0;
56 static inline bool mctp_address_matches(mctp_eid_t match, mctp_eid_t eid) argument
58 return match == eid || match == MCTP_ADDR_ANY;
278 mctp_eid_t eid; member in struct:mctp_neigh
[all...]
/linux-master/net/mctp/
H A Dneigh.c24 static int mctp_neigh_add(struct mctp_dev *mdev, mctp_eid_t eid, argument
33 if (mctp_neigh_lookup(mdev, eid, NULL) == 0) {
51 neigh->eid = eid;
88 static int mctp_neigh_remove(struct mctp_dev *mdev, mctp_eid_t eid, argument
97 if (neigh->dev == mdev && neigh->eid == eid &&
124 mctp_eid_t eid; local
145 eid = nla_get_u8(tb[NDA_DST]);
146 if (!mctp_address_unicast(eid)) {
182 mctp_eid_t eid; local
279 mctp_neigh_lookup(struct mctp_dev *mdev, mctp_eid_t eid, void *ret_hwaddr) argument
[all...]
/linux-master/drivers/net/wireless/ath/ath10k/
H A Dhtc.c58 ep->eid, skb);
73 ath10k_warn(ar, "no tx handler for eid %d\n", ep->eid);
95 hdr->eid = ep->eid;
112 enum ath10k_htc_ep_id eid = ep->eid; local
124 eid, credits, ep->tx_credits, consume);
133 eid, credits, ep->tx_credits);
145 enum ath10k_htc_ep_id eid local
163 ath10k_htc_send(struct ath10k_htc *htc, enum ath10k_htc_ep_id eid, struct sk_buff *skb) argument
247 ath10k_htc_process_credit_report(struct ath10k_htc *htc, const struct ath10k_htc_credit_report *report, int len, enum ath10k_htc_ep_id eid) argument
282 ath10k_htc_process_lookahead(struct ath10k_htc *htc, const struct ath10k_htc_lookahead_report *report, int len, enum ath10k_htc_ep_id eid, void *next_lookaheads, int *next_lookaheads_len) argument
314 ath10k_htc_process_lookahead_bundle(struct ath10k_htc *htc, const struct ath10k_htc_lookahead_bundle *report, int len, enum ath10k_htc_ep_id eid, void *next_lookaheads, int *next_lookaheads_len) argument
446 u8 eid; local
835 enum ath10k_htc_ep_id eid; local
856 ath10k_htc_send_hl(struct ath10k_htc *htc, enum ath10k_htc_ep_id eid, struct sk_buff *skb) argument
1002 ath10k_htc_change_tx_credit_flow(struct ath10k_htc *htc, enum ath10k_htc_ep_id eid, bool enable) argument
[all...]
H A Dhtc.h75 u8 eid; /* @enum ath10k_htc_ep_id */ member in struct:ath10k_htc_hdr
180 u8 eid; member in struct:ath10k_htc_conn_svc_response
224 u8 eid; /* @enum ath10k_htc_ep_id */ member in struct:ath10k_htc_credit_report
334 enum ath10k_htc_ep_id eid; member in struct:ath10k_htc_svc_conn_resp
349 enum ath10k_htc_ep_id eid; member in struct:ath10k_htc_ep
401 enum ath10k_htc_ep_id eid,
403 int ath10k_htc_send(struct ath10k_htc *htc, enum ath10k_htc_ep_id eid,
407 int ath10k_htc_send_hl(struct ath10k_htc *htc, enum ath10k_htc_ep_id eid,
H A Dsdio.h115 enum ath10k_htc_ep_id eid; member in struct:ath10k_sdio_bus_request
118 * If not, the eid is not applicable an the TX completion handler
132 enum ath10k_htc_ep_id eid; member in struct:ath10k_sdio_rx_data
/linux-master/drivers/net/wireless/ath/ath12k/
H A Dhtc.c61 hdr->htc_info = le32_encode_bits(ep->eid, HTC_HDR_ENDPOINTID) |
75 enum ath12k_htc_ep_id eid,
78 struct ath12k_htc_ep *ep = &htc->endpoint[eid];
85 if (eid >= ATH12K_HTC_EP_COUNT) {
86 ath12k_warn(ab, "Invalid endpoint id: %d\n", eid);
98 eid, credits, ep->tx_credits);
106 eid, credits, ep->tx_credits);
119 ret = ath12k_ce_send(htc->ab, skb, ep->ul_pipe_id, ep->eid);
133 eid, credits, ep->tx_credits);
148 enum ath12k_htc_ep_id eid)
74 ath12k_htc_send(struct ath12k_htc *htc, enum ath12k_htc_ep_id eid, struct sk_buff *skb) argument
145 ath12k_htc_process_credit_report(struct ath12k_htc *htc, const struct ath12k_htc_credit_report *report, int len, enum ath12k_htc_ep_id eid) argument
257 u8 eid; local
[all...]
H A Dhtc.h144 u8 eid; /* @enum ath12k_htc_ep_id */ member in struct:ath12k_htc_credit_report
250 enum ath12k_htc_ep_id eid; member in struct:ath12k_htc_svc_conn_resp
266 enum ath12k_htc_ep_id eid; member in struct:ath12k_htc_ep
310 int ath12k_htc_send(struct ath12k_htc *htc, enum ath12k_htc_ep_id eid,
/linux-master/drivers/net/wireless/ath/ath11k/
H A Dhtc.c61 hdr->htc_info = FIELD_PREP(HTC_HDR_ENDPOINTID, ep->eid) |
75 enum ath11k_htc_ep_id eid,
78 struct ath11k_htc_ep *ep = &htc->endpoint[eid];
87 if (eid >= ATH11K_HTC_EP_COUNT) {
88 ath11k_warn(ab, "Invalid endpoint id: %d\n", eid);
100 eid, credits, ep->tx_credits);
108 eid, credits, ep->tx_credits);
114 skb_cb->eid = eid;
122 ath11k_dbg(ab, ATH11K_DBG_HTC, "tx skb %p eid
74 ath11k_htc_send(struct ath11k_htc *htc, enum ath11k_htc_ep_id eid, struct sk_buff *skb) argument
151 ath11k_htc_process_credit_report(struct ath11k_htc *htc, const struct ath11k_htc_credit_report *report, int len, enum ath11k_htc_ep_id eid) argument
261 u8 eid; local
295 u8 eid; local
[all...]
H A Dhtc.h146 u8 eid; /* @enum ath11k_htc_ep_id */ member in struct:ath11k_htc_credit_report
231 enum ath11k_htc_ep_id eid; member in struct:ath11k_htc_svc_conn_resp
247 enum ath11k_htc_ep_id eid; member in struct:ath11k_htc_ep
291 int ath11k_htc_send(struct ath11k_htc *htc, enum ath11k_htc_ep_id eid,
/linux-master/drivers/net/ethernet/amd/pds_core/
H A Dadminq.c20 u64 eid; local
24 eid = le64_to_cpu(comp->event.eid);
25 while (eid > pdsc->last_eid) {
30 dev_info(pdsc->dev, "NotifyQ LINK_CHANGE ecode %d eid %lld\n",
31 ecode, eid);
36 dev_info(pdsc->dev, "NotifyQ RESET ecode %d eid %lld\n",
37 ecode, eid);
42 dev_info(pdsc->dev, "NotifyQ XCVR ecode %d eid %lld\n",
43 ecode, eid);
[all...]
/linux-master/sound/firewire/oxfw/
H A Doxfw-command.c54 u8 *buf, unsigned int *len, unsigned int eid)
59 if (eid == 0xff)
74 buf[10] = 0xff & eid; /* entry ID for LIST subfunction */
92 else if ((subfunc == 0xc1) && (buf[10] != eid))
52 avc_stream_get_format(struct fw_unit *unit, enum avc_general_plug_dir dir, unsigned int pid, u8 *buf, unsigned int *len, unsigned int eid) argument
H A Doxfw-stream.c633 unsigned int i, eid; local
666 eid = 0;
671 formats[eid] = devm_kmemdup(&oxfw->card->card_dev, buf, *len,
673 if (!formats[eid]) {
689 eid++;
690 formats[eid] = devm_kmemdup(&oxfw->card->card_dev, buf, *len,
692 if (formats[eid] == NULL) {
696 formats[eid][2] = avc_stream_rate_table[i];
710 unsigned int len, eid = 0; local
735 eid, (di
[all...]
H A Doxfw.h103 u8 *buf, unsigned int *len, unsigned int eid);
115 unsigned int eid)
117 return avc_stream_get_format(unit, dir, pid, buf, len, eid);
112 avc_stream_get_format_list(struct fw_unit *unit, enum avc_general_plug_dir dir, unsigned int pid, u8 *buf, unsigned int *len, unsigned int eid) argument
/linux-master/arch/x86/tools/
H A Dgen-insn-attr-x86.awk21 eid = -1 # escape id
134 eid = escape[ref]
135 tname = sprintf("inat_escape_table_%d", eid)
148 if (aid == -1 && eid == -1) # primary opcode table
199 etable[eid,0] = tname
206 etable[eid,1] = tname "_1"
213 etable[eid,2] = tname "_2"
220 etable[eid,3] = tname "_3"
/linux-master/tools/arch/x86/tools/
H A Dgen-insn-attr-x86.awk21 eid = -1 # escape id
134 eid = escape[ref]
135 tname = sprintf("inat_escape_table_%d", eid)
148 if (aid == -1 && eid == -1) # primary opcode table
199 etable[eid,0] = tname
206 etable[eid,1] = tname "_1"
213 etable[eid,2] = tname "_2"
220 etable[eid,3] = tname "_3"
/linux-master/drivers/net/wireless/ath/ath6kl/
H A Dhtc.h159 u8 eid;
204 u8 eid; member in struct:htc_conn_service_resp
228 u8 eid; member in struct:htc_credit_report
516 enum htc_endpoint_id eid; member in struct:htc_endpoint
644 enum htc_endpoint_id eid, u16 tag)
649 packet->endpoint = eid;
661 enum htc_endpoint_id eid)
667 packet->endpoint = eid;
642 set_htc_pkt_info(struct htc_packet *packet, void *context, u8 *buf, unsigned int len, enum htc_endpoint_id eid, u16 tag) argument
659 set_htc_rxpkt_info(struct htc_packet *packet, void *context, u8 *buf, unsigned long len, enum htc_endpoint_id eid) argument
H A Dtxrx.c287 enum htc_endpoint_id eid)
300 if (WARN_ON_ONCE(eid == ENDPOINT_UNUSED ||
301 eid >= ENDPOINT_MAX)) {
309 "%s: skb=0x%p, len=0x%x eid =%d\n", __func__,
310 skb, skb->len, eid);
312 if (test_bit(WMI_CTRL_EP_FULL, &ar->flag) && (eid == ar->ctrl_ep)) {
330 ar->tx_pending[eid]++;
332 if (eid != ar->ctrl_ep)
340 eid, ATH6KL_CONTROL_PKT_TAG);
360 enum htc_endpoint_id eid local
286 ath6kl_control_tx(void *devt, struct sk_buff *skb, enum htc_endpoint_id eid) argument
528 enum htc_endpoint_id eid; local
643 ath6kl_tx_clear_node_map(struct ath6kl_vif *vif, enum htc_endpoint_id eid, u32 map_no) argument
690 enum htc_endpoint_id eid; local
[all...]
H A Dhtc_mbox.c370 hdr->eid = packet->endpoint;
446 endpoint->eid, get_queue_depth(txq));
548 enum htc_endpoint_id eid, unsigned int len,
558 if (eid == ENDPOINT_0)
571 eid);
769 ac = target->dev->ar->ep2ac_map[endpoint->eid];
886 ac = target->dev->ar->ep2ac_map[endpoint->eid];
985 endpoint->eid, txq_depth,
1151 enum htc_endpoint_id eid, u16 tag)
1155 struct htc_endpoint *endpoint = &target->endpoint[eid];
546 htc_check_credits(struct htc_target *target, struct htc_endpoint *ep, u8 *flags, enum htc_endpoint_id eid, unsigned int len, int *req_cred) argument
1150 ath6kl_htc_mbox_flush_txep(struct htc_target *target, enum htc_endpoint_id eid, u16 tag) argument
1205 ath6kl_htc_mbox_activity_changed(struct htc_target *target, enum htc_endpoint_id eid, bool active) argument
1262 htc_valid_rx_frame_len(struct htc_target *target, enum htc_endpoint_id eid, int len) argument
[all...]
H A Dhtc_pipe.c50 __func__, ep->eid,
71 __func__, ep->eid, packet);
132 if (ep->eid == ENDPOINT_0) {
243 htc_hdr->eid = (u8) packet->endpoint;
348 __func__, ep->eid, overflow, txqueue_depth,
666 if (rpt->eid >= ENDPOINT_MAX) {
672 ep = &target->endpoint[rpt->eid];
754 ep_id = htc_hdr->eid;
975 if (htc_hdr->eid >= ENDPOINT_MAX) {
978 htc_hdr->eid);
[all...]
/linux-master/net/wireless/tests/
H A Dscan.c25 u8 eid; member in struct:test_elem::__anon3081::__anon3082
41 .eid = WLAN_EID_EXT_EHT_MULTI_LINK },
132 { .id = WLAN_EID_EXTENSION, .len = 1, .eid = 0x10 },
138 { .id = WLAN_EID_EXTENSION, .len = 1, .eid = 0x10 },
147 { .id = WLAN_EID_EXTENSION, .len = 1, .eid = 0x10 },
151 { .id = WLAN_EID_EXTENSION, .len = 1, .eid = 0x10 },
169 .eid = WLAN_EID_EXT_HE_CAPABILITY },
171 .eid = WLAN_EID_EXT_ASSOC_DELAY_INFO },
173 .eid = WLAN_EID_EXT_HE_OPERATION },
175 .eid
[all...]
/linux-master/net/smc/
H A Dsmc_clc.c55 u8 eid[SMC_MAX_EID_LEN]; member in struct:smc_clc_eid_entry
94 memcpy(new_ueid->eid, ueid, SMC_MAX_EID_LEN);
102 if (!memcmp(tmp_ueid->eid, ueid, SMC_MAX_EID_LEN)) {
151 if (!ueid || !memcmp(lst_ueid->eid, ueid, SMC_MAX_EID_LEN)) {
217 lst_ueid->eid)) {
310 if (!memcmp(tmp_ueid->eid, peer_ueid, SMC_MAX_EID_LEN))
929 memcpy(v2_ext->user_eids[i++], ueident->eid,
930 sizeof(ueident->eid));
936 u8 *eid = NULL; local
944 smc_ism_get_system_eid(&eid);
1028 smcd_clc_prep_confirm_accept(struct smc_connection *conn, struct smc_clc_msg_accept_confirm *clc, int first_contact, u8 version, u8 *eid, struct smc_init_info *ini, int *fce_len, struct smc_clc_first_contact_ext_v2x *fce_v2x, struct smc_clc_msg_trail *trl) argument
1072 smcr_clc_prep_confirm_accept(struct smc_connection *conn, struct smc_clc_msg_accept_confirm *clc, int first_contact, u8 version, u8 *eid, struct smc_init_info *ini, int *fce_len, struct smc_clc_first_contact_ext_v2x *fce_v2x, struct smc_clc_fce_gid_ext *gle, struct smc_clc_msg_trail *trl) argument
1136 smc_clc_send_confirm_accept(struct smc_sock *smc, struct smc_clc_msg_accept_confirm *clc, int first_contact, u8 version, u8 *eid, struct smc_init_info *ini) argument
1194 smc_clc_send_confirm(struct smc_sock *smc, bool clnt_first_contact, u8 version, u8 *eid, struct smc_init_info *ini) argument
[all...]
H A Dsmc_ism.h52 void smc_ism_get_system_eid(u8 **eid);
/linux-master/drivers/net/can/spi/mcp251xfd/
H A Dmcp251xfd-tx.c44 u32 sid, eid; local
47 eid = FIELD_GET(MCP251XFD_REG_FRAME_EFF_EID_MASK, cfd->can_id);
49 id = FIELD_PREP(MCP251XFD_OBJ_ID_EID_MASK, eid) |
/linux-master/include/linux/pds/
H A Dpds_adminq.h61 * @eid: event number
68 __le64 eid; member in struct:pds_core_notifyq_event
74 * @eid: event number
82 __le64 eid; member in struct:pds_core_link_change_event
90 * @eid: event number
99 __le64 eid; member in struct:pds_core_reset_event
107 * @eid: event number
115 __le64 eid; member in struct:pds_core_client_event
134 __le64 eid; member in struct:pds_core_notifyq_comp::__anon2979
270 * @eid
274 __le64 eid; member in struct:pds_core_lif_status
[all...]
/linux-master/drivers/scsi/bfa/
H A Dbfa_plog.h35 u8 eid; /* indicates Rx, Tx, IOCTL, etc. bfa_plog_eid */ member in struct:bfa_plog_rec_s

Completed in 264 milliseconds

1234