From: "Asbjørn Sloth Tønnesen" <ast@fiberby.net>
To: "Jason A. Donenfeld" <Jason@zx2c4.com>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>
Cc: "Asbjørn Sloth Tønnesen" <ast@fiberby.net>,
"Donald Hunter" <donald.hunter@gmail.com>,
"Simon Horman" <horms@kernel.org>,
"Jacob Keller" <jacob.e.keller@intel.com>,
"Sabrina Dubroca" <sd@queasysnail.net>,
wireguard@lists.zx2c4.com, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH net-next v3 06/13] tools: ynl-gen: deduplicate fixed_header handling
Date: Thu, 11 Sep 2025 20:04:59 +0000 [thread overview]
Message-ID: <20250911200508.79341-7-ast@fiberby.net> (raw)
In-Reply-To: <20250911200508.79341-1-ast@fiberby.net>
Fixed headers are handled nearly identical in print_dump(),
print_req() and put_req_nested(), generalize them and use a
common function to generate them.
This only causes cosmetic changes to tc_netem_attrs_put() in
tc-user.c.
Signed-off-by: Asbjørn Sloth Tønnesen <ast@fiberby.net>
---
tools/net/ynl/pyynl/ynl_gen_c.py | 39 ++++++++++++++++----------------
1 file changed, 20 insertions(+), 19 deletions(-)
diff --git a/tools/net/ynl/pyynl/ynl_gen_c.py b/tools/net/ynl/pyynl/ynl_gen_c.py
index 7a2e49a84735..b3ce0901a19b 100755
--- a/tools/net/ynl/pyynl/ynl_gen_c.py
+++ b/tools/net/ynl/pyynl/ynl_gen_c.py
@@ -1828,7 +1828,10 @@ class CodeWriter:
if lines and nl_before:
self.nl()
for line in lines or []:
- self.p(line)
+ if line == '':
+ self.nl()
+ else:
+ self.p(line)
scalars = {'u8', 'u16', 'u32', 'u64', 's8', 's16', 's32', 's64', 'uint', 'sint'}
@@ -1921,6 +1924,15 @@ def type_name(ri, direction, deref=False):
return f"struct {op_prefix(ri, direction, deref=deref)}"
+def prepare_fixed_header(var, local_vars, init_lines):
+ local_vars += ['size_t hdr_len;',
+ 'void *hdr;']
+ init_lines += [f'hdr_len = sizeof({var}->_hdr);',
+ 'hdr = ynl_nlmsg_put_extra_header(nlh, hdr_len);',
+ f'memcpy(hdr, &{var}->_hdr, hdr_len);',
+ '']
+
+
def print_prototype(ri, direction, terminate=True, doc=None):
suffix = ';' if terminate else ''
@@ -2074,10 +2086,7 @@ def put_req_nested(ri, struct):
local_vars.append('struct nlattr *nest;')
init_lines.append("nest = ynl_attr_nest_start(nlh, attr_type);")
if struct.fixed_header:
- local_vars.append('void *hdr;')
- struct_sz = f'sizeof({struct.fixed_header})'
- init_lines.append(f"hdr = ynl_nlmsg_put_extra_header(nlh, {struct_sz});")
- init_lines.append(f"memcpy(hdr, &obj->_hdr, {struct_sz});")
+ prepare_fixed_header('obj', local_vars, init_lines)
local_vars += put_local_vars(struct)
@@ -2346,6 +2355,7 @@ def print_req(ri):
ret_ok = '0'
ret_err = '-1'
direction = "request"
+ init_lines = []
local_vars = ['struct ynl_req_state yrs = { .yarg = { .ys = ys, }, };',
'struct nlmsghdr *nlh;',
'int err;']
@@ -2356,8 +2366,7 @@ def print_req(ri):
local_vars += [f'{type_name(ri, rdir(direction))} *rsp;']
if ri.struct["request"].fixed_header:
- local_vars += ['size_t hdr_len;',
- 'void *hdr;']
+ prepare_fixed_header('req', local_vars, init_lines)
local_vars += put_local_vars(ri.struct["request"])
@@ -2376,11 +2385,7 @@ def print_req(ri):
ri.cw.p(f"yrs.yarg.rsp_policy = &{ri.struct['reply'].render_name}_nest;")
ri.cw.nl()
- if ri.struct['request'].fixed_header:
- ri.cw.p("hdr_len = sizeof(req->_hdr);")
- ri.cw.p("hdr = ynl_nlmsg_put_extra_header(nlh, hdr_len);")
- ri.cw.p("memcpy(hdr, &req->_hdr, hdr_len);")
- ri.cw.nl()
+ ri.cw.p_lines(init_lines)
for _, attr in ri.struct["request"].member_list():
attr.attr_put(ri, "req")
@@ -2418,13 +2423,13 @@ def print_dump(ri):
direction = "request"
print_prototype(ri, direction, terminate=False)
ri.cw.block_start()
+ init_lines = []
local_vars = ['struct ynl_dump_state yds = {};',
'struct nlmsghdr *nlh;',
'int err;']
if ri.struct['request'].fixed_header:
- local_vars += ['size_t hdr_len;',
- 'void *hdr;']
+ prepare_fixed_header('req', local_vars, init_lines)
if "request" in ri.op[ri.op_mode]:
local_vars += put_local_vars(ri.struct["request"])
@@ -2446,11 +2451,7 @@ def print_dump(ri):
else:
ri.cw.p(f"nlh = ynl_gemsg_start_dump(ys, {ri.nl.get_family_id()}, {ri.op.enum_name}, 1);")
- if ri.struct['request'].fixed_header:
- ri.cw.p("hdr_len = sizeof(req->_hdr);")
- ri.cw.p("hdr = ynl_nlmsg_put_extra_header(nlh, hdr_len);")
- ri.cw.p("memcpy(hdr, &req->_hdr, hdr_len);")
- ri.cw.nl()
+ ri.cw.p_lines(init_lines)
if "request" in ri.op[ri.op_mode]:
ri.cw.p(f"ys->req_policy = &{ri.struct['request'].render_name}_nest;")
--
2.51.0
next prev parent reply other threads:[~2025-09-11 20:05 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-11 20:04 [PATCH net-next v3 00/13] tools: ynl: prepare for wireguard Asbjørn Sloth Tønnesen
2025-09-11 20:04 ` [PATCH net-next v3 01/13] tools: ynl-gen: allow overriding name-prefix for constants Asbjørn Sloth Tønnesen
2025-09-11 20:04 ` [PATCH net-next v3 02/13] tools: ynl-gen: generate nested array policies Asbjørn Sloth Tønnesen
2025-09-11 20:04 ` [PATCH net-next v3 03/13] tools: ynl-gen: add sub-type check Asbjørn Sloth Tønnesen
2025-09-11 20:04 ` [PATCH net-next v3 04/13] tools: ynl-gen: refactor local vars for .attr_put() callers Asbjørn Sloth Tønnesen
2025-09-12 11:23 ` Donald Hunter
2025-09-13 0:19 ` Jakub Kicinski
2025-09-13 23:14 ` Asbjørn Sloth Tønnesen
2025-09-11 20:04 ` [PATCH net-next v3 05/13] tools: ynl-gen: add CodeWriter.p_lines() helper Asbjørn Sloth Tønnesen
2025-09-13 0:21 ` Jakub Kicinski
2025-09-13 23:14 ` Asbjørn Sloth Tønnesen
2025-09-11 20:04 ` Asbjørn Sloth Tønnesen [this message]
2025-09-12 11:24 ` [PATCH net-next v3 06/13] tools: ynl-gen: deduplicate fixed_header handling Donald Hunter
2025-09-13 0:24 ` Jakub Kicinski
2025-09-13 23:14 ` Asbjørn Sloth Tønnesen
2025-09-11 20:05 ` [PATCH net-next v3 07/13] tools: ynl-gen: avoid repetitive variables definitions Asbjørn Sloth Tønnesen
2025-09-12 11:30 ` Donald Hunter
2025-09-11 20:05 ` [PATCH net-next v3 08/13] tools: ynl-gen: only validate nested array payload Asbjørn Sloth Tønnesen
2025-09-13 0:27 ` Jakub Kicinski
2025-09-13 23:14 ` Asbjørn Sloth Tønnesen
2025-09-11 20:05 ` [PATCH net-next v3 09/13] tools: ynl-gen: rename TypeArrayNest to TypeIndexedArray Asbjørn Sloth Tønnesen
2025-09-12 12:00 ` Donald Hunter
2025-09-11 20:05 ` [PATCH net-next v3 10/13] tools: ynl: move nest packing to a helper function Asbjørn Sloth Tønnesen
2025-09-11 20:05 ` [PATCH net-next v3 11/13] tools: ynl: encode indexed-arrays Asbjørn Sloth Tønnesen
2025-09-12 12:01 ` Donald Hunter
2025-09-11 20:05 ` [PATCH net-next v3 12/13] tools: ynl: decode hex input Asbjørn Sloth Tønnesen
2025-09-12 12:01 ` Donald Hunter
2025-09-11 20:05 ` [PATCH net-next v3 13/13] tools: ynl: add ipv4-or-v6 display hint Asbjørn Sloth Tønnesen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250911200508.79341-7-ast@fiberby.net \
--to=ast@fiberby.net \
--cc=Jason@zx2c4.com \
--cc=davem@davemloft.net \
--cc=donald.hunter@gmail.com \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=jacob.e.keller@intel.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=sd@queasysnail.net \
--cc=wireguard@lists.zx2c4.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).