Message ID | 20240129145807.8773-2-fw@strlen.de (mailing list archive) |
---|---|
State | Accepted |
Commit | 941988af572434e4aa93fb0f2f509f92adfd691a |
Headers | show |
Series | [nf-next,1/9] netfilter: uapi: Document NFT_TABLE_F_OWNER flag | expand |
Hello: This series was applied to netdev/net-next.git (main) by Florian Westphal <fw@strlen.de>: On Mon, 29 Jan 2024 15:57:51 +0100 you wrote: > From: Phil Sutter <phil@nwl.cc> > > Add at least this one-liner describing the obvious. > > Fixes: 6001a930ce03 ("netfilter: nftables: introduce table ownership") > Signed-off-by: Phil Sutter <phil@nwl.cc> > Signed-off-by: Florian Westphal <fw@strlen.de> > > [...] Here is the summary with links: - [nf-next,1/9] netfilter: uapi: Document NFT_TABLE_F_OWNER flag https://git.kernel.org/netdev/net-next/c/941988af5724 - [nf-next,2/9] netfilter: nf_tables: Introduce NFT_TABLE_F_PERSIST https://git.kernel.org/netdev/net-next/c/da5141bbe0c2 - [nf-next,3/9] netfilter: nf_tables: Implement table adoption support https://git.kernel.org/netdev/net-next/c/31bf508be656 - [nf-next,4/9] netfilter: nf_tables: pass flags to set backend selection routine https://git.kernel.org/netdev/net-next/c/a128885ace60 - [nf-next,5/9] netfilter: nf_conncount: Use KMEM_CACHE instead of kmem_cache_create() https://git.kernel.org/netdev/net-next/c/2ae6e9a03dad - [nf-next,6/9] ipvs: Simplify the allocation of ip_vs_conn slab caches https://git.kernel.org/netdev/net-next/c/d5f9142fb96d - [nf-next,7/9] netfilter: arptables: allow xtables-nft only builds https://git.kernel.org/netdev/net-next/c/4654467dc7e1 - [nf-next,8/9] netfilter: xtables: allow xtables-nft only builds https://git.kernel.org/netdev/net-next/c/a9525c7f6219 - [nf-next,9/9] netfilter: ebtables: allow xtables-nft only builds https://git.kernel.org/netdev/net-next/c/7ad269787b66 You are awesome, thank you!
diff --git a/include/uapi/linux/netfilter/nf_tables.h b/include/uapi/linux/netfilter/nf_tables.h index ca30232b7bc8..fbce238abdc1 100644 --- a/include/uapi/linux/netfilter/nf_tables.h +++ b/include/uapi/linux/netfilter/nf_tables.h @@ -179,6 +179,7 @@ enum nft_hook_attributes { * enum nft_table_flags - nf_tables table flags * * @NFT_TABLE_F_DORMANT: this table is not active + * @NFT_TABLE_F_OWNER: this table is owned by a process */ enum nft_table_flags { NFT_TABLE_F_DORMANT = 0x1,