mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
tools: ynl: don't ignore errors in NLMSG_DONE messages
NLMSG_DONE contains an error code, it has to be extracted.
Prior to this change all dumps will end in success,
and in case of failure the result is silently truncated.
Fixes: e4b48ed460
("tools: ynl: add a completely generic client")
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Reviewed-by: Donald Hunter <donald.hunter@gmail.com>
Link: https://lore.kernel.org/r/20240420020827.3288615-1-kuba@kernel.org
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
This commit is contained in:
parent
467324bcfe
commit
a44f2eb106
@ -182,6 +182,7 @@ class NlMsg:
|
||||
self.done = 1
|
||||
extack_off = 20
|
||||
elif self.nl_type == Netlink.NLMSG_DONE:
|
||||
self.error = struct.unpack("i", self.raw[0:4])[0]
|
||||
self.done = 1
|
||||
extack_off = 4
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user