Home
last modified time | relevance | path

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

/linux/fs/hfsplus/
A Dsuper.c103 struct hfsplus_vh *vhdr = sbi->s_vhdr; in hfsplus_system_write_inode() local
109 fork = &vhdr->ext_file; in hfsplus_system_write_inode()
113 fork = &vhdr->cat_file; in hfsplus_system_write_inode()
117 fork = &vhdr->alloc_file; in hfsplus_system_write_inode()
120 fork = &vhdr->start_file; in hfsplus_system_write_inode()
123 fork = &vhdr->attr_file; in hfsplus_system_write_inode()
291 vhdr->modify_date = hfsp_now2mt(); in hfsplus_put_super()
347 } else if (vhdr->attributes & in hfsplus_remount()
352 } else if (vhdr->attributes & in hfsplus_remount()
376 struct hfsplus_vh *vhdr; in hfsplus_fill_super() local
[all …]
/linux/samples/bpf/
A Dxdp1_kern.c62 struct vlan_hdr *vhdr; in xdp_prog1() local
64 vhdr = data + nh_off; in xdp_prog1()
68 h_proto = vhdr->h_vlan_encapsulated_proto; in xdp_prog1()
72 struct vlan_hdr *vhdr; in xdp_prog1() local
74 vhdr = data + nh_off; in xdp_prog1()
78 h_proto = vhdr->h_vlan_encapsulated_proto; in xdp_prog1()
A Dxdp2_kern.c78 struct vlan_hdr *vhdr; in xdp_prog1() local
80 vhdr = data + nh_off; in xdp_prog1()
84 h_proto = vhdr->h_vlan_encapsulated_proto; in xdp_prog1()
88 struct vlan_hdr *vhdr; in xdp_prog1() local
90 vhdr = data + nh_off; in xdp_prog1()
94 h_proto = vhdr->h_vlan_encapsulated_proto; in xdp_prog1()
A Dparse_varlen.c127 struct vlan_hdr *vhdr; in handle_ingress() local
129 vhdr = data + nh_off; in handle_ingress()
133 h_proto = vhdr->h_vlan_encapsulated_proto; in handle_ingress()
136 struct vlan_hdr *vhdr; in handle_ingress() local
138 vhdr = data + nh_off; in handle_ingress()
142 h_proto = vhdr->h_vlan_encapsulated_proto; in handle_ingress()
A Dxdp_router_ipv4_kern.c130 struct vlan_hdr *vhdr; in xdp_router_ipv4_prog() local
132 vhdr = data + nh_off; in xdp_router_ipv4_prog()
136 h_proto = vhdr->h_vlan_encapsulated_proto; in xdp_router_ipv4_prog()
/linux/drivers/gpu/drm/amd/amdgpu/
A Damdgpu_bios.c380 VFCT_IMAGE_HEADER *vhdr = &vbios->VbiosHeader; in amdgpu_acpi_vfct_bios() local
388 offset += vhdr->ImageLength; in amdgpu_acpi_vfct_bios()
394 if (vhdr->ImageLength && in amdgpu_acpi_vfct_bios()
395 vhdr->PCIBus == adev->pdev->bus->number && in amdgpu_acpi_vfct_bios()
396 vhdr->PCIDevice == PCI_SLOT(adev->pdev->devfn) && in amdgpu_acpi_vfct_bios()
397 vhdr->PCIFunction == PCI_FUNC(adev->pdev->devfn) && in amdgpu_acpi_vfct_bios()
398 vhdr->VendorID == adev->pdev->vendor && in amdgpu_acpi_vfct_bios()
399 vhdr->DeviceID == adev->pdev->device) { in amdgpu_acpi_vfct_bios()
401 vhdr->ImageLength, in amdgpu_acpi_vfct_bios()
404 if (!check_atom_bios(adev->bios, vhdr->ImageLength)) { in amdgpu_acpi_vfct_bios()
[all …]
/linux/net/8021q/
A Dvlan_core.c463 struct vlan_hdr *vhdr; in vlan_gro_receive() local
469 hlen = off_vlan + sizeof(*vhdr); in vlan_gro_receive()
470 vhdr = skb_gro_header_fast(skb, off_vlan); in vlan_gro_receive()
472 vhdr = skb_gro_header_slow(skb, hlen, off_vlan); in vlan_gro_receive()
473 if (unlikely(!vhdr)) in vlan_gro_receive()
477 type = vhdr->h_vlan_encapsulated_proto; in vlan_gro_receive()
493 if (compare_vlan_header(vhdr, vhdr2)) in vlan_gro_receive()
497 skb_gro_pull(skb, sizeof(*vhdr)); in vlan_gro_receive()
498 skb_gro_postpull_rcsum(skb, vhdr, sizeof(*vhdr)); in vlan_gro_receive()
515 __be16 type = vhdr->h_vlan_encapsulated_proto; in vlan_gro_complete()
[all …]
A Dvlan_dev.c50 struct vlan_hdr *vhdr; in vlan_dev_hard_header() local
56 vhdr = skb_push(skb, VLAN_HLEN); in vlan_dev_hard_header()
60 vhdr->h_vlan_TCI = htons(vlan_tci); in vlan_dev_hard_header()
67 vhdr->h_vlan_encapsulated_proto = htons(type); in vlan_dev_hard_header()
69 vhdr->h_vlan_encapsulated_proto = htons(len); in vlan_dev_hard_header()
/linux/net/batman-adv/
A Dmain.c364 struct vlan_ethhdr *vhdr, vhdr_tmp; in batadv_skb_set_priority() local
377 vhdr = skb_header_pointer(skb, offset + sizeof(*vhdr), in batadv_skb_set_priority()
378 sizeof(*vhdr), &vhdr_tmp); in batadv_skb_set_priority()
379 if (!vhdr) in batadv_skb_set_priority()
381 prio = ntohs(vhdr->h_vlan_TCI) & VLAN_PRIO_MASK; in batadv_skb_set_priority()
626 struct vlan_ethhdr *vhdr; in batadv_get_vid() local
635 vhdr = (struct vlan_ethhdr *)(skb->data + header_len); in batadv_get_vid()
636 vid = ntohs(vhdr->h_vlan_TCI) & VLAN_VID_MASK; in batadv_get_vid()
A Dsoft-interface.c191 struct vlan_ethhdr *vhdr; in batadv_interface_tx() local
221 if (!pskb_may_pull(skb, sizeof(*vhdr))) in batadv_interface_tx()
223 vhdr = vlan_eth_hdr(skb); in batadv_interface_tx()
224 proto = vhdr->h_vlan_encapsulated_proto; in batadv_interface_tx()
417 struct vlan_ethhdr *vhdr; in batadv_interface_rx() local
444 vhdr = (struct vlan_ethhdr *)skb->data; in batadv_interface_rx()
447 if (vhdr->h_vlan_encapsulated_proto != htons(ETH_P_BATMAN)) in batadv_interface_rx()
A Dgateway_client.c569 struct vlan_ethhdr *vhdr; in batadv_gw_dhcp_recipient_get() local
587 vhdr = vlan_eth_hdr(skb); in batadv_gw_dhcp_recipient_get()
588 proto = vhdr->h_vlan_encapsulated_proto; in batadv_gw_dhcp_recipient_get()
A Dbridge_loop_avoidance.c1082 struct vlan_hdr *vhdr, vhdr_buf; in batadv_bla_process_claim() local
1106 vhdr = skb_header_pointer(skb, headlen, VLAN_HLEN, in batadv_bla_process_claim()
1108 if (!vhdr) in batadv_bla_process_claim()
1111 proto = vhdr->h_vlan_encapsulated_proto; in batadv_bla_process_claim()
/linux/drivers/gpu/drm/radeon/
A Dradeon_bios.c629 VFCT_IMAGE_HEADER *vhdr = &vbios->VbiosHeader; in radeon_acpi_vfct_bios() local
637 offset += vhdr->ImageLength; in radeon_acpi_vfct_bios()
643 if (vhdr->ImageLength && in radeon_acpi_vfct_bios()
644 vhdr->PCIBus == rdev->pdev->bus->number && in radeon_acpi_vfct_bios()
645 vhdr->PCIDevice == PCI_SLOT(rdev->pdev->devfn) && in radeon_acpi_vfct_bios()
646 vhdr->PCIFunction == PCI_FUNC(rdev->pdev->devfn) && in radeon_acpi_vfct_bios()
647 vhdr->VendorID == rdev->pdev->vendor && in radeon_acpi_vfct_bios()
648 vhdr->DeviceID == rdev->pdev->device) { in radeon_acpi_vfct_bios()
650 vhdr->ImageLength, in radeon_acpi_vfct_bios()
/linux/include/linux/
A Dif_vlan.h600 struct vlan_hdr vhdr, *vh; in __vlan_get_protocol() local
602 vh = skb_header_pointer(skb, vlan_depth, sizeof(vhdr), &vhdr); in __vlan_get_protocol()
644 struct vlan_hdr *vhdr) in vlan_set_encap_proto() argument
654 proto = vhdr->h_vlan_encapsulated_proto; in vlan_set_encap_proto()
660 rawp = (unsigned short *)(vhdr + 1); in vlan_set_encap_proto()
/linux/net/netfilter/
A Dnfnetlink_queue.c1042 struct nfqnl_msg_verdict_hdr *vhdr; in verdicthdr_get() local
1052 return vhdr; in verdicthdr_get()
1067 struct nfqnl_msg_verdict_hdr *vhdr; in nfqnl_recv_verdict_batch() local
1077 vhdr = verdicthdr_get(nfqa); in nfqnl_recv_verdict_batch()
1078 if (!vhdr) in nfqnl_recv_verdict_batch()
1081 verdict = ntohl(vhdr->verdict); in nfqnl_recv_verdict_batch()
1082 maxid = ntohl(vhdr->id); in nfqnl_recv_verdict_batch()
1174 struct nfqnl_msg_verdict_hdr *vhdr; in nfqnl_recv_verdict() local
1188 vhdr = verdicthdr_get(nfqa); in nfqnl_recv_verdict()
1189 if (!vhdr) in nfqnl_recv_verdict()
[all …]
/linux/drivers/net/ethernet/mellanox/mlx5/core/
A Den_tx.c207 struct vlan_ethhdr *vhdr = (struct vlan_ethhdr *)start; in mlx5e_insert_vlan() local
211 memcpy(vhdr, skb->data, cpy1_sz); in mlx5e_insert_vlan()
212 vhdr->h_vlan_proto = skb->vlan_proto; in mlx5e_insert_vlan()
213 vhdr->h_vlan_TCI = cpu_to_be16(skb_vlan_tag_get(skb)); in mlx5e_insert_vlan()
214 memcpy(&vhdr->h_vlan_encapsulated_proto, skb->data + cpy1_sz, cpy2_sz); in mlx5e_insert_vlan()
/linux/drivers/net/ethernet/intel/fm10k/
A Dfm10k_netdev.c525 struct vlan_hdr *vhdr; in fm10k_xmit_frame() local
545 vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN); in fm10k_xmit_frame()
550 ntohs(vhdr->h_vlan_TCI)); in fm10k_xmit_frame()
551 proto = vhdr->h_vlan_encapsulated_proto; in fm10k_xmit_frame()
/linux/drivers/net/ethernet/intel/i40e/
A Di40e_txrx.c2965 struct vlan_hdr *vhdr, _vhdr; in i40e_tx_prepare_vlan_flags() local
2967 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr); in i40e_tx_prepare_vlan_flags()
2968 if (!vhdr) in i40e_tx_prepare_vlan_flags()
2971 protocol = vhdr->h_vlan_encapsulated_proto; in i40e_tx_prepare_vlan_flags()
2972 tx_flags |= ntohs(vhdr->h_vlan_TCI) << I40E_TX_FLAGS_VLAN_SHIFT; in i40e_tx_prepare_vlan_flags()
2986 struct vlan_ethhdr *vhdr; in i40e_tx_prepare_vlan_flags() local
2992 vhdr = (struct vlan_ethhdr *)skb->data; in i40e_tx_prepare_vlan_flags()
2993 vhdr->h_vlan_TCI = htons(tx_flags >> in i40e_tx_prepare_vlan_flags()
/linux/drivers/net/ethernet/intel/iavf/
A Diavf_txrx.c1810 struct vlan_hdr *vhdr, _vhdr; in iavf_tx_prepare_vlan_flags() local
1812 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr); in iavf_tx_prepare_vlan_flags()
1813 if (!vhdr) in iavf_tx_prepare_vlan_flags()
1816 protocol = vhdr->h_vlan_encapsulated_proto; in iavf_tx_prepare_vlan_flags()
1817 tx_flags |= ntohs(vhdr->h_vlan_TCI) << IAVF_TX_FLAGS_VLAN_SHIFT; in iavf_tx_prepare_vlan_flags()
/linux/drivers/net/
A Dthunderbolt.c958 struct vlan_hdr *vhdr, vh; in tbnet_xmit_csum_and_map() local
960 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(vh), &vh); in tbnet_xmit_csum_and_map()
961 if (!vhdr) in tbnet_xmit_csum_and_map()
964 protocol = vhdr->h_vlan_encapsulated_proto; in tbnet_xmit_csum_and_map()
/linux/net/core/
A Dskbuff.c5648 struct vlan_hdr *vhdr; in skb_vlan_untag() local
5663 vhdr = (struct vlan_hdr *)skb->data; in skb_vlan_untag()
5664 vlan_tci = ntohs(vhdr->h_vlan_TCI); in skb_vlan_untag()
5668 vlan_set_encap_proto(skb, vhdr); in skb_vlan_untag()
5704 struct vlan_hdr *vhdr; in __skb_vlan_pop() local
5720 vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN); in __skb_vlan_pop()
5721 *vlan_tci = ntohs(vhdr->h_vlan_TCI); in __skb_vlan_pop()
5726 vlan_set_encap_proto(skb, vhdr); in __skb_vlan_pop()
/linux/drivers/net/ethernet/freescale/
A Dfec_main.c3409 struct vlan_ethhdr *vhdr; in fec_enet_get_raw_vlan_tci() local
3413 vhdr = (struct vlan_ethhdr *)(skb->data); in fec_enet_get_raw_vlan_tci()
3414 vlan_TCI = ntohs(vhdr->h_vlan_TCI); in fec_enet_get_raw_vlan_tci()
/linux/drivers/net/ethernet/intel/ixgbe/
A Dixgbe_main.c8645 struct vlan_hdr *vhdr, _vhdr; in ixgbe_xmit_frame_ring() local
8646 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr); in ixgbe_xmit_frame_ring()
8647 if (!vhdr) in ixgbe_xmit_frame_ring()
8650 tx_flags |= ntohs(vhdr->h_vlan_TCI) << in ixgbe_xmit_frame_ring()
8690 struct vlan_ethhdr *vhdr; in ixgbe_xmit_frame_ring() local
8694 vhdr = (struct vlan_ethhdr *)skb->data; in ixgbe_xmit_frame_ring()
8695 vhdr->h_vlan_TCI = htons(tx_flags >> in ixgbe_xmit_frame_ring()
/linux/drivers/net/ethernet/hisilicon/hns3/
A Dhns3_enet.c1472 struct vlan_ethhdr *vhdr; in hns3_handle_vtags() local
1519 vhdr = (struct vlan_ethhdr *)skb->data; in hns3_handle_vtags()
1520 vhdr->h_vlan_TCI |= cpu_to_be16((skb->priority << VLAN_PRIO_SHIFT) in hns3_handle_vtags()
/linux/drivers/net/ethernet/broadcom/bnx2x/
A Dbnx2x_cmn.c1926 struct vlan_ethhdr *vhdr = in bnx2x_select_queue() local
1929 ether_type = ntohs(vhdr->h_vlan_encapsulated_proto); in bnx2x_select_queue()

Completed in 93 milliseconds