diff options
| author | Ilya Maximets <i.maximets@ovn.org> | 2026-08-27 00:01:12 +0200 |
|---|---|---|
| committer | Jakub Kicinski <kuba@kernel.org> | 2026-08-28 15:34:51 -0700 |
| commit | 8b348496cbec0d5ca24a99f668096e2e16e8fbeb (patch) | |
| tree | 40849a8788920d26970ea9d6ba8eaf3aaabf8963 | |
| parent | 2a004bfb62bdb847f25a8001e104bf33922a2cf4 (diff) | |
| download | linux-8b348496cbec0d5ca24a99f668096e2e16e8fbeb.tar.gz linux-8b348496cbec0d5ca24a99f668096e2e16e8fbeb.zip | |
netlink: specs: add missing mask attributes for conntrack dump
'mark-mask' and 'status-mask' are defined and supported by the
conntrack dump, but missing from the list of arguments.
While at it, the order of the arguments should follow the order of
their definition in the enum ctattr_type. That appears to be a common
convention for other spec files.
Fixes: 23fc9311a526 ("netlink: specs: add conntrack dump and stats dump support")
Cc: stable@vger.kernel.org
Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
Reviewed-by: Asbjørn Sloth Tønnesen <ast@fiberby.net>
Link: https://patch.msgid.link/20260826220444.4054714-3-i.maximets@ovn.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
| -rw-r--r-- | Documentation/netlink/specs/conntrack.yaml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Documentation/netlink/specs/conntrack.yaml b/Documentation/netlink/specs/conntrack.yaml index 6ba28cb1c2ab..b1eb102ab843 100644 --- a/Documentation/netlink/specs/conntrack.yaml +++ b/Documentation/netlink/specs/conntrack.yaml @@ -604,10 +604,12 @@ operations: attributes: - tuple-orig - tuple-reply - - mark - - filter - status + - mark - zone + - mark-mask + - filter + - status-mask reply: value: 0x100 attributes: |
