Lines Matching defs:sk_buff
721 struct sk_buff { struct
725 struct sk_buff *next; argument
761 void (*destructor)(struct sk_buff *skb); argument
788 #define CLONED_OFFSET() offsetof(struct sk_buff, __cloned_offset) argument
791 __u8 __cloned_offset[0];
793 __u8 cloned:1,
817 #define PKT_TYPE_OFFSET() offsetof(struct sk_buff, __pkt_type_offset) argument
843 #define PKT_VLAN_PRESENT_OFFSET() offsetof(struct sk_buff, __pkt_vlan_present_offset) argument
845 __u8 __pkt_vlan_present_offset[0];
847 __u8 vlan_present:1;
848 __u8 csum_complete_sw:1;
849 __u8 csum_level:2;
850 __u8 csum_not_inet:1;
851 __u8 dst_pending_confirm:1;
853 __u8 ndisc_nodetype:2;
856 __u8 ipvs_property:1;
857 __u8 inner_protocol_type:1;
858 __u8 remcsum_offload:1;
860 __u8 offload_fwd_mark:1;
861 __u8 offload_l3_fwd_mark:1;
864 __u8 tc_skip_classify:1;
865 __u8 tc_at_ingress:1;
867 __u8 redirected:1;
869 __u8 from_ingress:1;
872 __u8 decrypted:1;
874 __u8 slow_gro:1;
877 __u16 tc_index; /* traffic control index */
880 union {
887 __u32 priority;
888 int skb_iif;
889 __u32 hash;
890 __be16 vlan_proto;
891 __u16 vlan_tci;
893 union {
899 __u32 secmark;
902 union {
930 sk_buff_data_t tail; argument
931 sk_buff_data_t end; argument
932 unsigned char *head,
956 static inline bool skb_pfmemalloc(const struct sk_buff *skb) in skb_pfmemalloc() argument