diff options
| author | David S. Miller <davem@davemloft.net> | 2022-11-21 16:09:08 +0300 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2022-11-21 16:09:08 +0300 |
| commit | 2c45455ea1a32a45200562ad99f238aae34ce496 (patch) | |
| tree | 5d1f656784dfce69f41bf29cb94beb8b1b578b78 /include | |
| parent | 7a7160edf1bfde25422262fb26851cef65f695d3 (diff) | |
| parent | a3400e8746b626531099e4d9fd8eac41be066683 (diff) | |
| download | linux-2c45455ea1a32a45200562ad99f238aae34ce496.tar.xz | |
Merge branch 'mptcp-netlink'
Mat Martineau says:
====================
mptcp: More specific netlink command errors
This series makes the error reporting for the MPTCP_PM_CMD_ADD_ADDR netlink
command more specific, since there are multiple reasons the command could
fail.
Note that patch 2 adds a GENL_SET_ERR_MSG_FMT() macro to genetlink.h,
which is outside the MPTCP subsystem.
Patch 1 refactors in-kernel listening socket and endpoint creation to
simplify the second patch.
Patch 2 updates the error values returned by the in-kernel path manager
when it fails to create a local endpoint.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
| -rw-r--r-- | include/net/genetlink.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/genetlink.h b/include/net/genetlink.h index d21210709f84..ed4622dd4828 100644 --- a/include/net/genetlink.h +++ b/include/net/genetlink.h @@ -125,6 +125,9 @@ static inline void genl_info_net_set(struct genl_info *info, struct net *net) #define GENL_SET_ERR_MSG(info, msg) NL_SET_ERR_MSG((info)->extack, msg) +#define GENL_SET_ERR_MSG_FMT(info, msg, args...) \ + NL_SET_ERR_MSG_FMT((info)->extack, msg, ##args) + /* Report that a root attribute is missing */ #define GENL_REQ_ATTR_CHECK(info, attr) ({ \ struct genl_info *__info = (info); \ |
