diff options
author | Jakub Kicinski <kuba@kernel.org> | 2024-04-19 19:08:26 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-05-02 16:32:36 +0200 |
commit | 6a65f015ee4850f588b1afe9e82569a736a4e696 (patch) | |
tree | 7793b5eb579592db3d247611e7e5b1514b9844ae /tools | |
parent | 4fee8fa86a15d7790268eea458b1aec69c695530 (diff) | |
download | linux-riscv-6a65f015ee4850f588b1afe9e82569a736a4e696.tar.gz linux-riscv-6a65f015ee4850f588b1afe9e82569a736a4e696.tar.bz2 linux-riscv-6a65f015ee4850f588b1afe9e82569a736a4e696.zip |
tools: ynl: don't ignore errors in NLMSG_DONE messages
[ Upstream commit a44f2eb106a46f2275a79de54ce0ea63e4f3d8c8 ]
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: e4b48ed460d3 ("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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/net/ynl/lib/ynl.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/net/ynl/lib/ynl.py b/tools/net/ynl/lib/ynl.py index 13c4b019a881..44ea0965c9d9 100644 --- a/tools/net/ynl/lib/ynl.py +++ b/tools/net/ynl/lib/ynl.py @@ -201,6 +201,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 |