Lines Matching defs:sk_buff
685 struct sk_buff { struct
689 struct sk_buff *next; argument
725 void (*destructor)(struct sk_buff *skb); argument
749 #define CLONED_OFFSET() offsetof(struct sk_buff, __cloned_offset) argument
774 #define PKT_TYPE_OFFSET() offsetof(struct sk_buff, __pkt_type_offset) argument
798 #define PKT_VLAN_PRESENT_OFFSET() offsetof(struct sk_buff, __pkt_vlan_present_offset) argument
799 __u8 __pkt_vlan_present_offset[0];
800 __u8 vlan_present:1;
801 __u8 csum_complete_sw:1;
802 __u8 csum_level:2;
803 __u8 csum_not_inet:1;
804 __u8 dst_pending_confirm:1;
806 __u8 ndisc_nodetype:2;
809 __u8 ipvs_property:1;
810 __u8 inner_protocol_type:1;
811 __u8 remcsum_offload:1;
813 __u8 offload_fwd_mark:1;
814 __u8 offload_l3_fwd_mark:1;
817 __u8 tc_skip_classify:1;
818 __u8 tc_at_ingress:1;
819 __u8 tc_redirected:1;
820 __u8 tc_from_ingress:1;
823 __u8 decrypted:1;
827 __u16 tc_index; /* traffic control index */
830 union {
837 __u32 priority;
838 int skb_iif;
839 __u32 hash;
840 __be16 vlan_proto;
841 __u16 vlan_tci;
843 union {
849 __u32 secmark;
852 union {
876 sk_buff_data_t tail; argument
877 sk_buff_data_t end; argument
878 unsigned char *head,
902 static inline bool skb_pfmemalloc(const struct sk_buff *skb) in skb_pfmemalloc() argument