--- zzzz-none-000/linux-2.6.39.4/include/net/netfilter/nf_conntrack_tuple.h 2011-08-03 19:43:28.000000000 +0000 +++ puma6-atom-6490-729/linux-2.6.39.4/include/net/netfilter/nf_conntrack_tuple.h 2021-11-10 13:38:18.000000000 +0000 @@ -145,6 +145,18 @@ /* Connections have two entries in the hash table: one for each way */ struct nf_conntrack_tuple_hash { struct hlist_nulls_node hnnode; + +#ifdef CONFIG_TI_PACKET_PROCESSOR + +#define TI_PP_SESSION_CT_IDLE 0x8000 +#define TI_PP_SESSION_CT_TCP_UPDATE 0x4000 +#define IS_TI_PP_SESSION_CT_INVALID(s) ((s) & 0xF000) +#define IS_TI_PP_SESSION_CT_IDLE(s) ((s) & TI_PP_SESSION_CT_IDLE) + + unsigned short ti_pp_session_handle; + unsigned short ti_pp_sessions_count; +#endif /* CONFIG_TI_PACKET_PROCESSOR */ + struct nf_conntrack_tuple tuple; };