diff mbox series

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

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

Checks

Context Check Description
netdev/series_format success Pull request is its own cover letter
netdev/tree_selection success Guessed tree name to be net-next
netdev/ynl success Generated files up to date; no warnings/errors; no diff in generated;
netdev/fixes_present success Fixes tag not required for -next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 1682 this patch: 1682
netdev/build_tools success Errors and warnings before: 1 this patch: 0
netdev/cc_maintainers success CCed 0 of 0 maintainers
netdev/build_clang success Errors and warnings before: 1081 this patch: 1081
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success Fixes tag looks correct
netdev/build_allmodconfig_warn success Errors and warnings before: 1716 this patch: 1716
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 7 lines checked
netdev/build_clang_rust success No Rust files in patch. Skipping build
netdev/kdoc success Errors and warnings before: 162 this patch: 161
netdev/source_inline success Was 0 now: 0
netdev/contest success net-next-2024-01-31--06-00 (tests: 715)

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,