Home
last modified time | relevance | path

Searched refs:packet_id (Results 1 – 25 of 37) sorted by relevance

12

/openbmc/linux/drivers/net/wireless/st/cw1200/
H A Dqueue.h87 int cw1200_queue_requeue(struct cw1200_queue *queue, u32 packet_id);
90 u32 packet_id);
91 int cw1200_queue_get_skb(struct cw1200_queue *queue, u32 packet_id,
103 static inline u8 cw1200_queue_get_queue_id(u32 packet_id) in cw1200_queue_get_queue_id() argument
105 return (packet_id >> 16) & 0xFF; in cw1200_queue_get_queue_id()
108 static inline u8 cw1200_queue_get_generation(u32 packet_id) in cw1200_queue_get_generation() argument
110 return (packet_id >> 8) & 0xFF; in cw1200_queue_get_generation()
H A Dqueue.c20 u32 packet_id; member
52 *item_id = (packet_id >> 0) & 0xFF; in cw1200_queue_parse_id()
53 *item_generation = (packet_id >> 8) & 0xFF; in cw1200_queue_parse_id()
54 *queue_id = (packet_id >> 16) & 0xFF; in cw1200_queue_parse_id()
55 *queue_generation = (packet_id >> 24) & 0xFF; in cw1200_queue_parse_id()
300 item->packet_id = cw1200_queue_mk_packet_id(queue->generation, in cw1200_queue_put()
354 (*tx)->packet_id = item->packet_id; in cw1200_queue_get()
379 cw1200_queue_parse_id(packet_id, &queue_generation, &queue_id, in cw1200_queue_requeue()
404 item->packet_id = cw1200_queue_mk_packet_id(queue_generation, in cw1200_queue_requeue()
450 cw1200_queue_parse_id(packet_id, &queue_generation, &queue_id, in cw1200_queue_remove()
[all …]
H A Dtxrx.c851 u8 queue_id = cw1200_queue_get_queue_id(arg->packet_id); in cw1200_tx_confirm_cb()
881 cw1200_queue_get_generation(arg->packet_id) + 1, in cw1200_tx_confirm_cb()
883 cw1200_queue_requeue(queue, arg->packet_id); in cw1200_tx_confirm_cb()
893 } else if (!cw1200_queue_get_skb(queue, arg->packet_id, in cw1200_tx_confirm_cb()
905 arg->packet_id == priv->bss_loss_confirm_id) { in cw1200_tx_confirm_cb()
953 cw1200_queue_remove(queue, arg->packet_id); in cw1200_tx_confirm_cb()
H A Dwsm.c358 tx_confirm.packet_id = WSM_GET32(buf); in wsm_tx_confirm()
1486 if (cw1200_queue_get_generation(wsm->packet_id) > in wsm_handle_tx_data()
1516 priv->bss_loss_confirm_id = wsm->packet_id; in wsm_handle_tx_data()
1546 priv->pending_frame_id = wsm->packet_id; in wsm_handle_tx_data()
1554 BUG_ON(cw1200_queue_remove(queue, wsm->packet_id)); in wsm_handle_tx_data()
1561 priv->pending_frame_id = wsm->packet_id; in wsm_handle_tx_data()
H A Dwsm.h763 u32 packet_id; member
804 u32 packet_id; /* Note this is actually a cookie */ member
/openbmc/linux/drivers/net/usb/
H A Dnet1080.c47 __le16 packet_id; // detects dropped packets member
58 __le16 packet_id; member
398 if (header->packet_id != get_unaligned(&trailer->packet_id)) { in net1080_rx_fixup()
401 le16_to_cpu(header->packet_id), in net1080_rx_fixup()
402 le16_to_cpu(trailer->packet_id)); in net1080_rx_fixup()
407 header->packet_len, header->packet_id); in net1080_rx_fixup()
459 header->packet_id = cpu_to_le16((u16)dev->xid++); in net1080_tx_fixup()
465 put_unaligned(header->packet_id, &trailer->packet_id); in net1080_tx_fixup()
469 header->packet_id); in net1080_tx_fixup()
/openbmc/linux/net/batman-adv/
H A Dnetwork-coding.c1107 packet_id1 = nc_packet->packet_id; in batadv_nc_code_packets()
1120 packet_id2 = nc_packet->packet_id; in batadv_nc_code_packets()
1464 __be32 packet_id) in batadv_nc_skb_add_to_path() argument
1474 nc_packet->packet_id = packet_id; in batadv_nc_skb_add_to_path()
1503 __be32 packet_id; in batadv_nc_skb_forward() local
1556 __be32 packet_id; in batadv_nc_skb_store_for_decoding() local
1737 __be32 packet_id; in batadv_nc_find_decoding_packet() local
1747 packet_id = coded->second_crc; in batadv_nc_find_decoding_packet()
1750 packet_id = coded->first_crc; in batadv_nc_find_decoding_packet()
1763 if (packet_id == tmp_nc_packet->packet_id) { in batadv_nc_find_decoding_packet()
[all …]
/openbmc/linux/drivers/net/wireless/silabs/wfx/
H A Dqueue.c143 struct sk_buff *wfx_pending_get(struct wfx_dev *wdev, u32 packet_id) in wfx_pending_get() argument
155 if (req->packet_id != packet_id) in wfx_pending_get()
192 req->packet_id, ktime_ms_delta(now, tx_priv->xmit_timestamp)); in wfx_pending_dump_old_frames()
H A Ddata_tx.c348 req->packet_id = atomic_add_return(1, &wvif->wdev->packet_id) & 0xFFFF; in wfx_tx_inner()
349 req->packet_id |= IEEE80211_SEQ_TO_SN(le16_to_cpu(hdr->seq_ctrl)) << 16; in wfx_tx_inner()
350 req->packet_id |= queue_id << 28; in wfx_tx_inner()
465 skb = wfx_pending_get(wdev, arg->packet_id); in wfx_tx_confirm_cb()
468 arg->packet_id); in wfx_tx_confirm_cb()
H A Dqueue.h39 struct sk_buff *wfx_pending_get(struct wfx_dev *wdev, u32 packet_id);
H A Dwfx.h53 atomic_t packet_id; member
H A Dhif_api_cmd.h178 u32 packet_id; member
216 u32 packet_id; member
/openbmc/linux/drivers/isdn/mISDN/
H A Dl1oip_core.c446 u32 packet_id; in l1oip_socket_parse() local
485 packet_id = (*buf >> 4) & 1; in l1oip_socket_parse()
498 if (packet_id) { in l1oip_socket_parse()
501 "0x%x, but we have not\n", __func__, packet_id); in l1oip_socket_parse()
509 packet_id = (*buf++) << 24; in l1oip_socket_parse()
510 packet_id += (*buf++) << 16; in l1oip_socket_parse()
511 packet_id += (*buf++) << 8; in l1oip_socket_parse()
512 packet_id += (*buf++); in l1oip_socket_parse()
515 if (packet_id != hc->id) { in l1oip_socket_parse()
518 __func__, packet_id, hc->id); in l1oip_socket_parse()
/openbmc/linux/drivers/input/joystick/iforce/
H A Diforce-packets.c156 u8 packet_id, u8 *data, size_t len) in iforce_process_packet() argument
161 switch (packet_id) { in iforce_process_packet()
H A Diforce.h136 u8 packet_id, u8 *data, size_t len);
/openbmc/linux/include/uapi/linux/netfilter/
H A Dnfnetlink_queue.h18 __be32 packet_id; /* unique ID of packet in queue */ member
/openbmc/linux/drivers/accel/habanalabs/include/goya/
H A Dgoya_packets.h16 enum packet_id { enum
/openbmc/linux/drivers/accel/habanalabs/include/gaudi/
H A Dgaudi_packets.h16 enum packet_id { enum
/openbmc/linux/drivers/accel/habanalabs/include/gaudi2/
H A Dgaudi2_packets.h16 enum packet_id { enum
/openbmc/linux/drivers/media/usb/ttusb-dec/
H A Dttusb_dec.c587 u16 packet_id; in ttusb_dec_process_packet() local
602 packet_id = dec->packet[dec->packet_length - 4] << 8; in ttusb_dec_process_packet()
603 packet_id += dec->packet[dec->packet_length - 3]; in ttusb_dec_process_packet()
605 if ((packet_id != dec->next_packet_id) && dec->next_packet_id) { in ttusb_dec_process_packet()
607 __func__, dec->next_packet_id - 1, packet_id); in ttusb_dec_process_packet()
610 if (packet_id == 0xffff) in ttusb_dec_process_packet()
613 dec->next_packet_id = packet_id + 1; in ttusb_dec_process_packet()
/openbmc/u-boot/drivers/i2c/
H A Dtegra_i2c.c144 u32 packet_id, in send_packet_headers() argument
151 data |= packet_id << PKT_HDR1_PKT_ID_SHIFT; in send_packet_headers()
/openbmc/linux/drivers/gpu/drm/vc4/
H A Dvc4_hdmi.c776 u32 packet_id = type - 0x80; in vc4_hdmi_stop_packet() local
786 HDMI_READ(HDMI_RAM_PACKET_CONFIG) & ~BIT(packet_id)); in vc4_hdmi_stop_packet()
791 BIT(packet_id)), 100); in vc4_hdmi_stop_packet()
803 u32 packet_id = frame->any.type - 0x80; in vc4_hdmi_write_infoframe() local
806 u32 packet_reg = ram_packet_start->offset + VC4_HDMI_PACKET_STRIDE * packet_id; in vc4_hdmi_write_infoframe()
808 VC4_HDMI_PACKET_STRIDE * (packet_id + 1); in vc4_hdmi_write_infoframe()
859 HDMI_READ(HDMI_RAM_PACKET_CONFIG) | BIT(packet_id)); in vc4_hdmi_write_infoframe()
864 BIT(packet_id)), 100); in vc4_hdmi_write_infoframe()
/openbmc/linux/drivers/input/mouse/
H A Dalps.c953 unsigned char packet_id; in alps_get_packet_id_v7() local
956 packet_id = V7_PACKET_ID_TWO; in alps_get_packet_id_v7()
958 packet_id = V7_PACKET_ID_MULTI; in alps_get_packet_id_v7()
960 packet_id = V7_PACKET_ID_NEW; in alps_get_packet_id_v7()
962 packet_id = V7_PACKET_ID_IDLE; in alps_get_packet_id_v7()
964 packet_id = V7_PACKET_ID_UNKNOWN; in alps_get_packet_id_v7()
966 return packet_id; in alps_get_packet_id_v7()
/openbmc/linux/tools/testing/selftests/netfilter/
H A Dnf-queue.c88 id = ntohl(ph->packet_id); in queue_cb()
/openbmc/linux/drivers/thunderbolt/
H A Dtb_msgs.h133 u8 packet_id; member

12