Home
last modified time | relevance | path

Searched refs:tci (Results 1 – 7 of 7) sorted by relevance

/drivers/net/usb/
Dcdc_mbim.c130 u16 tci = 0; in cdc_mbim_tx_fixup() local
146 vlan_get_tag(skb, &tci); in cdc_mbim_tx_fixup()
148 switch (tci & 0x0f00) { in cdc_mbim_tx_fixup()
160 c[3] = tci; in cdc_mbim_tx_fixup()
165 c[3] = tci; in cdc_mbim_tx_fixup()
169 "unsupported tci=0x%04x\n", tci); in cdc_mbim_tx_fixup()
187 static struct sk_buff *cdc_mbim_process_dgram(struct usbnet *dev, u8 *buf, size_t len, u16 tci) in cdc_mbim_process_dgram() argument
192 if (tci < 256) { /* IPS session? */ in cdc_mbim_process_dgram()
223 if (tci) in cdc_mbim_process_dgram()
224 vlan_put_tag(skb, htons(ETH_P_8021Q), tci); in cdc_mbim_process_dgram()
[all …]
/drivers/net/vmxnet3/
Dvmxnet3_defs.h131 u32 tci:16; /* Tag to Insert */ member
145 u32 tci:16; /* Tag to Insert */ member
241 u32 tci:16; /* Tag stripped */ member
249 u32 tci:16; /* Tag stripped */ member
Dvmxnet3_drv.c1036 gdesc->txd.tci = vlan_tx_tag_get(skb); in vmxnet3_tq_xmit()
1296 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), rcd->tci); in vmxnet3_rq_rx_complete()
/drivers/net/ethernet/sfc/
Dsiena_sriov.c333 vlan = ntohs(vf->addr.tci) & VLAN_VID_MASK; in efx_sriov_reset_tx_filter()
371 vlan = ntohs(vf->addr.tci) & VLAN_VID_MASK; in efx_sriov_reset_rx_filter()
1105 peer->tci = 0; in efx_sriov_peer_work()
1589 u16 tci; in efx_sriov_set_vf_vlan() local
1596 tci = (vlan & VLAN_VID_MASK) | ((qos & 0x7) << VLAN_PRIO_SHIFT); in efx_sriov_set_vf_vlan()
1597 vf->addr.tci = htons(tci); in efx_sriov_set_vf_vlan()
1633 u16 tci; in efx_sriov_get_vf_config() local
1642 tci = ntohs(vf->addr.tci); in efx_sriov_get_vf_config()
1643 ivi->vlan = tci & VLAN_VID_MASK; in efx_sriov_get_vf_config()
1644 ivi->qos = (tci >> VLAN_PRIO_SHIFT) & 0x7; in efx_sriov_get_vf_config()
Dvfdi.h90 __be16 tci; member
/drivers/scsi/isci/
Dhost.h352 #define ISCI_TAG(seq, tci) (((u16) (seq)) << 12 | tci) argument
479 void isci_tci_free(struct isci_host *ihost, u16 tci);
Dhost.c2551 void isci_tci_free(struct isci_host *ihost, u16 tci) in isci_tci_free() argument
2555 ihost->tci_pool[tail] = tci; in isci_tci_free()
2562 u16 tci = ihost->tci_pool[head]; in isci_tci_alloc() local
2565 return tci; in isci_tci_alloc()
2576 u16 tci = isci_tci_alloc(ihost); in isci_alloc_tag() local
2577 u8 seq = ihost->io_request_sequence[tci]; in isci_alloc_tag()
2579 return ISCI_TAG(seq, tci); in isci_alloc_tag()
2587 u16 tci = ISCI_TAG_TCI(io_tag); in isci_free_tag() local
2594 if (seq == ihost->io_request_sequence[tci]) { in isci_free_tag()
2595 ihost->io_request_sequence[tci] = (seq+1) & (SCI_MAX_SEQ-1); in isci_free_tag()
[all …]