mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-04 04:04:19 +00:00
Merge branch 'selftests-net-groundwork-for-ynl-based-tests'
Jakub Kicinski says: ==================== selftests: net: groundwork for YNL-based tests (YNL prep) v1: https://lore.kernel.org/all/20240402010520.1209517-1-kuba@kernel.org/ ==================== Merge the non-controversial YNL adjustment and spec additions. Link: https://lore.kernel.org/r/20240403023426.1762996-1-kuba@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
commit
1148c4098e
@ -16,6 +16,11 @@ definitions:
|
|||||||
name: stringset
|
name: stringset
|
||||||
type: enum
|
type: enum
|
||||||
entries: []
|
entries: []
|
||||||
|
-
|
||||||
|
name: header-flags
|
||||||
|
enum-name:
|
||||||
|
type: flags
|
||||||
|
entries: [ compact-bitsets, omit-reply, stats ]
|
||||||
|
|
||||||
attribute-sets:
|
attribute-sets:
|
||||||
-
|
-
|
||||||
@ -30,6 +35,7 @@ attribute-sets:
|
|||||||
-
|
-
|
||||||
name: flags
|
name: flags
|
||||||
type: u32
|
type: u32
|
||||||
|
enum: header-flags
|
||||||
|
|
||||||
-
|
-
|
||||||
name: bitset-bit
|
name: bitset-bit
|
||||||
|
@ -100,9 +100,10 @@ class Netlink:
|
|||||||
class NlError(Exception):
|
class NlError(Exception):
|
||||||
def __init__(self, nl_msg):
|
def __init__(self, nl_msg):
|
||||||
self.nl_msg = nl_msg
|
self.nl_msg = nl_msg
|
||||||
|
self.error = -nl_msg.error
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return f"Netlink error: {os.strerror(-self.nl_msg.error)}\n{self.nl_msg}"
|
return f"Netlink error: {os.strerror(self.error)}\n{self.nl_msg}"
|
||||||
|
|
||||||
|
|
||||||
class ConfigError(Exception):
|
class ConfigError(Exception):
|
||||||
|
Loading…
Reference in New Issue
Block a user