txpd              375 drivers/net/ethernet/sfc/falcon/txc43128_phy.c 	int txpd = (1 << TXC_ATXCTL_TXPD3_LBN) | (1 << TXC_ATXCTL_TXPD2_LBN)
txpd              383 drivers/net/ethernet/sfc/falcon/txc43128_phy.c 		txctl &= ~txpd;
txpd              386 drivers/net/ethernet/sfc/falcon/txc43128_phy.c 		txctl |= txpd;
txpd              264 drivers/net/wireless/marvell/libertas/defs.h 	(ETH_FRAME_LEN + sizeof(struct txpd) + EXTRA_LEN)
txpd             1091 drivers/net/wireless/marvell/libertas/mesh.c 	struct net_device *dev, struct txpd *txpd)
txpd             1095 drivers/net/wireless/marvell/libertas/mesh.c 			txpd->tx_control |= cpu_to_le32(TxPD_MESH_FRAME);
txpd             1097 drivers/net/wireless/marvell/libertas/mesh.c 			txpd->u.bss.bss_num = MESH_IFACE_ID;
txpd               35 drivers/net/wireless/marvell/libertas/mesh.h struct txpd;
txpd               40 drivers/net/wireless/marvell/libertas/mesh.h 	struct net_device *dev, struct txpd *txpd);
txpd               69 drivers/net/wireless/marvell/libertas/mesh.h #define lbs_mesh_set_txpd(priv, dev, txpd)
txpd               69 drivers/net/wireless/marvell/libertas/tx.c 	struct txpd *txpd;
txpd              110 drivers/net/wireless/marvell/libertas/tx.c 	txpd = (void *)priv->tx_pending_buf;
txpd              111 drivers/net/wireless/marvell/libertas/tx.c 	memset(txpd, 0, sizeof(struct txpd));
txpd              120 drivers/net/wireless/marvell/libertas/tx.c 		txpd->tx_control = cpu_to_le32(convert_radiotap_rate_to_mv(rtap_hdr->rate));
txpd              127 drivers/net/wireless/marvell/libertas/tx.c 		memcpy(txpd->tx_dest_addr_high, p802x_hdr + 4, ETH_ALEN);
txpd              130 drivers/net/wireless/marvell/libertas/tx.c 		memcpy(txpd->tx_dest_addr_high, p802x_hdr, ETH_ALEN);
txpd              133 drivers/net/wireless/marvell/libertas/tx.c 	txpd->tx_packet_length = cpu_to_le16(pkt_len);
txpd              134 drivers/net/wireless/marvell/libertas/tx.c 	txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd));
txpd              136 drivers/net/wireless/marvell/libertas/tx.c 	lbs_mesh_set_txpd(priv, dev, txpd);
txpd              138 drivers/net/wireless/marvell/libertas/tx.c 	lbs_deb_hex(LBS_DEB_TX, "txpd", (u8 *) &txpd, sizeof(struct txpd));
txpd              140 drivers/net/wireless/marvell/libertas/tx.c 	lbs_deb_hex(LBS_DEB_TX, "Tx Data", (u8 *) p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
txpd              142 drivers/net/wireless/marvell/libertas/tx.c 	memcpy(&txpd[1], p802x_hdr, le16_to_cpu(txpd->tx_packet_length));
txpd              145 drivers/net/wireless/marvell/libertas/tx.c 	priv->tx_pending_len = pkt_len + sizeof(struct txpd);
txpd              131 drivers/net/wireless/marvell/libertas_tf/libertas_tf.h 	(ETH_FRAME_LEN + sizeof(struct txpd) + EXTRA_LEN)
txpd              203 drivers/net/wireless/marvell/libertas_tf/main.c 	struct txpd *txpd;
txpd              222 drivers/net/wireless/marvell/libertas_tf/main.c 	txpd = skb_push(skb, sizeof(struct txpd));
txpd              230 drivers/net/wireless/marvell/libertas_tf/main.c 	memset(txpd, 0, sizeof(struct txpd));
txpd              232 drivers/net/wireless/marvell/libertas_tf/main.c 	txpd->tx_control |= cpu_to_le32(MRVL_PER_PACKET_RATE |
txpd              236 drivers/net/wireless/marvell/libertas_tf/main.c 	memcpy(txpd->tx_dest_addr_high, skb->data + sizeof(struct txpd) + 4,
txpd              238 drivers/net/wireless/marvell/libertas_tf/main.c 	txpd->tx_packet_length = cpu_to_le16(len);
txpd              239 drivers/net/wireless/marvell/libertas_tf/main.c 	txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd));
txpd              577 drivers/net/wireless/marvell/libertas_tf/main.c 	hw->extra_tx_headroom = sizeof(struct txpd);
txpd              666 drivers/net/wireless/marvell/libertas_tf/main.c 	skb_pull(priv->tx_skb, sizeof(struct txpd));
txpd              102 drivers/net/wireless/marvell/mwifiex/11n_aggr.c 	struct txpd *local_tx_pd;
txpd              107 drivers/net/wireless/marvell/mwifiex/11n_aggr.c 	local_tx_pd = (struct txpd *) skb->data;
txpd              108 drivers/net/wireless/marvell/mwifiex/11n_aggr.c 	memset(local_tx_pd, 0, sizeof(struct txpd));
txpd              117 drivers/net/wireless/marvell/mwifiex/11n_aggr.c 	local_tx_pd->tx_pkt_offset = cpu_to_le16(sizeof(struct txpd));
txpd              166 drivers/net/wireless/marvell/mwifiex/11n_aggr.c 	struct txpd *ptx_pd = NULL;
txpd              186 drivers/net/wireless/marvell/mwifiex/11n_aggr.c 	skb_reserve(skb_aggr, headroom + sizeof(struct txpd));
txpd              239 drivers/net/wireless/marvell/mwifiex/11n_aggr.c 		ptx_pd = (struct txpd *)skb_aggr->data;
txpd              250 drivers/net/wireless/marvell/mwifiex/11n_aggr.c 		tx_param.next_pkt_len = skb_src->len + sizeof(struct txpd);
txpd               48 drivers/net/wireless/marvell/mwifiex/sta_tx.c 	struct txpd *local_tx_pd;
txpd               69 drivers/net/wireless/marvell/mwifiex/sta_tx.c 	local_tx_pd = (struct txpd *) skb->data;
txpd               70 drivers/net/wireless/marvell/mwifiex/sta_tx.c 	memset(local_tx_pd, 0, sizeof(struct txpd));
txpd               74 drivers/net/wireless/marvell/mwifiex/sta_tx.c 						       (sizeof(struct txpd) +
txpd              109 drivers/net/wireless/marvell/mwifiex/sta_tx.c 	pkt_offset = sizeof(struct txpd) + pad;
txpd              137 drivers/net/wireless/marvell/mwifiex/sta_tx.c 	struct txpd *local_tx_pd;
txpd              168 drivers/net/wireless/marvell/mwifiex/sta_tx.c 			(sizeof(struct txpd) + adapter->intf_hdr_len);
txpd              169 drivers/net/wireless/marvell/mwifiex/sta_tx.c 	skb_reserve(skb, sizeof(struct txpd) + adapter->intf_hdr_len);
txpd              170 drivers/net/wireless/marvell/mwifiex/sta_tx.c 	skb_push(skb, sizeof(struct txpd));
txpd              172 drivers/net/wireless/marvell/mwifiex/sta_tx.c 	local_tx_pd = (struct txpd *) skb->data;
txpd              176 drivers/net/wireless/marvell/mwifiex/sta_tx.c 	local_tx_pd->tx_pkt_offset = cpu_to_le16(sizeof(struct txpd));
txpd               90 drivers/net/wireless/marvell/mwifiex/txrx.c 	struct txpd *local_tx_pd = NULL;
txpd              116 drivers/net/wireless/marvell/mwifiex/txrx.c 			local_tx_pd = (struct txpd *)(head_ptr + hroom);
txpd              166 drivers/net/wireless/marvell/mwifiex/txrx.c 	struct txpd *local_tx_pd = NULL;
txpd              183 drivers/net/wireless/marvell/mwifiex/txrx.c 		local_tx_pd = (struct txpd *)(head_ptr + adapter->intf_hdr_len);
txpd              465 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 	struct uap_txpd *txpd;
txpd              482 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 	pad = ((void *)skb->data - (sizeof(*txpd) + hroom) - NULL) &
txpd              485 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 	skb_push(skb, sizeof(*txpd) + pad);
txpd              487 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 	txpd = (struct uap_txpd *)skb->data;
txpd              488 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 	memset(txpd, 0, sizeof(*txpd));
txpd              489 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 	txpd->bss_num = priv->bss_num;
txpd              490 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 	txpd->bss_type = priv->bss_type;
txpd              491 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 	txpd->tx_pkt_length = cpu_to_le16((u16)(skb->len - (sizeof(*txpd) +
txpd              493 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 	txpd->priority = (u8)skb->priority;
txpd              495 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 	txpd->pkt_delay_2ms = mwifiex_wmm_compute_drv_pkt_delay(priv, skb);
txpd              499 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 		txpd->tx_token_id = tx_info->ack_frame_id;
txpd              500 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 		txpd->flags |= MWIFIEX_TXPD_FLAGS_REQ_TX_STATUS;
txpd              503 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 	if (txpd->priority < ARRAY_SIZE(priv->wmm.user_pri_pkt_tx_ctrl))
txpd              508 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 		txpd->tx_control =
txpd              509 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 		    cpu_to_le32(priv->wmm.user_pri_pkt_tx_ctrl[txpd->priority]);
txpd              512 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 	pkt_offset = sizeof(*txpd) + pad;
txpd              515 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 		txpd->tx_pkt_type = cpu_to_le16(pkt_type);
txpd              519 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 	txpd->tx_pkt_offset = cpu_to_le16(pkt_offset);
txpd              524 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 	if (!txpd->tx_control)
txpd              526 drivers/net/wireless/marvell/mwifiex/uap_txrx.c 		txpd->tx_control = cpu_to_le32(priv->pkt_tx_ctrl);
txpd              932 drivers/net/wireless/marvell/mwifiex/usb.c 			(sizeof(struct txpd) + adapter->intf_hdr_len);
txpd              960 drivers/net/wireless/marvell/mwifiex/usb.c 	struct txpd *local_tx_pd =
txpd              961 drivers/net/wireless/marvell/mwifiex/usb.c 		(struct txpd *)((u8 *)skb->data + adapter->intf_hdr_len);
txpd             1261 drivers/net/wireless/marvell/mwifiex/wmm.c 				sizeof(struct txpd) : 0);
txpd             1350 drivers/net/wireless/marvell/mwifiex/wmm.c 		 sizeof(struct txpd) : 0);