diff mbox series

[nf-next,1/9] netfilter: uapi: Document NFT_TABLE_F_OWNER flag

Message ID 20240129145807.8773-2-fw@strlen.de
State Accepted
Headers show
Series [nf-next,1/9] netfilter: uapi: Document NFT_TABLE_F_OWNER flag | expand

Commit Message

Florian Westphal Jan. 29, 2024, 2:57 p.m. UTC
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>
---
 include/uapi/linux/netfilter/nf_tables.h | 1 +
 1 file changed, 1 insertion(+)

Comments

patchwork-bot+netdevbpf@kernel.org Jan. 31, 2024, 3:20 p.m. UTC | #1
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 mbox series

Patch

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,