Message ID | 20241213110827.32250-1-donald.hunter@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | a35d00d5512accd337510fa4de756b743d331a87 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next,v1] netlink: specs: add uint, sint to netlink-raw schema | expand |
Hello: This patch was applied to netdev/net-next.git (main) by Jakub Kicinski <kuba@kernel.org>: On Fri, 13 Dec 2024 11:08:27 +0000 you wrote: > Add uint, sint to the list of attr types in the netlink-raw schema. This > fixes the rt_link spec which had a uint attr added in commit > f858cc9eed5b ("net: add IFLA_MAX_PACING_OFFLOAD_HORIZON device attribute") > > Signed-off-by: Donald Hunter <donald.hunter@gmail.com> > --- > Documentation/netlink/netlink-raw.yaml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - [net-next,v1] netlink: specs: add uint, sint to netlink-raw schema https://git.kernel.org/netdev/net-next/c/a35d00d5512a You are awesome, thank you!
diff --git a/Documentation/netlink/netlink-raw.yaml b/Documentation/netlink/netlink-raw.yaml index 914aa1c0a273..1b0772c8e333 100644 --- a/Documentation/netlink/netlink-raw.yaml +++ b/Documentation/netlink/netlink-raw.yaml @@ -221,7 +221,7 @@ properties: type: &attr-type description: The netlink attribute type enum: [ unused, pad, flag, binary, bitfield32, - u8, u16, u32, u64, s8, s16, s32, s64, + uint, sint, u8, u16, u32, u64, s8, s16, s32, s64, string, nest, indexed-array, nest-type-value, sub-message ] doc:
Add uint, sint to the list of attr types in the netlink-raw schema. This fixes the rt_link spec which had a uint attr added in commit f858cc9eed5b ("net: add IFLA_MAX_PACING_OFFLOAD_HORIZON device attribute") Signed-off-by: Donald Hunter <donald.hunter@gmail.com> --- Documentation/netlink/netlink-raw.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)