File tree Expand file tree Collapse file tree 2 files changed +142
-81
lines changed Expand file tree Collapse file tree 2 files changed +142
-81
lines changed Original file line number Diff line number Diff line change @@ -1609,6 +1609,8 @@ struct nft_trans_chain {
1609
1609
struct nft_stats __percpu * stats ;
1610
1610
u8 policy ;
1611
1611
u32 chain_id ;
1612
+ struct nft_base_chain * basechain ;
1613
+ struct list_head hook_list ;
1612
1614
};
1613
1615
1614
1616
#define nft_trans_chain_update (trans ) \
@@ -1621,6 +1623,10 @@ struct nft_trans_chain {
1621
1623
(((struct nft_trans_chain *)trans->data)->policy)
1622
1624
#define nft_trans_chain_id (trans ) \
1623
1625
(((struct nft_trans_chain *)trans->data)->chain_id)
1626
+ #define nft_trans_basechain (trans ) \
1627
+ (((struct nft_trans_chain *)trans->data)->basechain)
1628
+ #define nft_trans_chain_hooks (trans ) \
1629
+ (((struct nft_trans_chain *)trans->data)->hook_list)
1624
1630
1625
1631
struct nft_trans_table {
1626
1632
bool update ;
You can’t perform that action at this time.
0 commit comments