Lines Matching defs:sk_buff
713 struct sk_buff { struct
717 struct sk_buff *next; argument
753 void (*destructor)(struct sk_buff *skb); argument
777 #define CLONED_OFFSET() offsetof(struct sk_buff, __cloned_offset) argument
780 __u8 __cloned_offset[0];
804 #define PKT_TYPE_OFFSET() offsetof(struct sk_buff, __pkt_type_offset) argument
830 #define PKT_VLAN_PRESENT_OFFSET() offsetof(struct sk_buff, __pkt_vlan_present_offset) argument
832 __u8 __pkt_vlan_present_offset[0];
834 __u8 vlan_present:1;
835 __u8 csum_complete_sw:1;
836 __u8 csum_level:2;
837 __u8 csum_not_inet:1;
838 __u8 dst_pending_confirm:1;
840 __u8 ndisc_nodetype:2;
843 __u8 ipvs_property:1;
844 __u8 inner_protocol_type:1;
845 __u8 remcsum_offload:1;
847 __u8 offload_fwd_mark:1;
848 __u8 offload_l3_fwd_mark:1;
851 __u8 tc_skip_classify:1;
852 __u8 tc_at_ingress:1;
855 __u8 redirected:1;
856 __u8 from_ingress:1;
859 __u8 decrypted:1;
863 __u16 tc_index; /* traffic control index */
866 union {
873 __u32 priority;
874 int skb_iif;
875 __u32 hash;
876 __be16 vlan_proto;
877 __u16 vlan_tci;
879 union {
885 __u32 secmark;
888 union {
912 sk_buff_data_t tail; argument
913 sk_buff_data_t end; argument
914 unsigned char *head,
938 static inline bool skb_pfmemalloc(const struct sk_buff *skb) in skb_pfmemalloc() argument