diff options
author | Donald Hunter <donald.hunter@gmail.com> | 2023-12-15 10:37:14 +0100 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2023-12-18 23:39:44 +0100 |
commit | 6b4b0754ef8a3fb3c5f772cf6c70bd33936b6431 (patch) | |
tree | a65bc8208f2a3a3a1eaf4121b4cf0e31b64871da /Documentation/netlink | |
parent | doc/netlink/specs: Add sub-message type to rt_link family (diff) | |
download | linux-6b4b0754ef8a3fb3c5f772cf6c70bd33936b6431.tar.xz linux-6b4b0754ef8a3fb3c5f772cf6c70bd33936b6431.zip |
doc/netlink/specs: use pad in structs in rt_link
The rt_link spec was using pad1, pad2 attributes in structs which
appears in the ynl output. Replace this with the 'pad' type which
doesn't pollute the output.
Signed-off-by: Donald Hunter <donald.hunter@gmail.com>
Link: https://lore.kernel.org/r/20231215093720.18774-8-donald.hunter@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'Documentation/netlink')
-rw-r--r-- | Documentation/netlink/specs/rt_link.yaml | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Documentation/netlink/specs/rt_link.yaml b/Documentation/netlink/specs/rt_link.yaml index ea6a6157d718..1ad01d52a863 100644 --- a/Documentation/netlink/specs/rt_link.yaml +++ b/Documentation/netlink/specs/rt_link.yaml @@ -66,8 +66,9 @@ definitions: name: ifi-family type: u8 - - name: padding - type: u8 + name: pad + type: pad + len: 1 - name: ifi-type type: u16 @@ -719,11 +720,9 @@ definitions: name: family type: u8 - - name: pad1 - type: u8 - - - name: pad2 - type: u16 + name: pad + type: pad + len: 3 - name: ifindex type: u32 |