diff options
author | Moshe Shemesh <moshe@nvidia.com> | 2023-02-14 18:38:03 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2023-02-15 19:15:44 -0800 |
commit | c9311ee13f0ebd6d684793f88b91092672c21171 (patch) | |
tree | dd0bcabd0b022bb347d80b54f75d52ee939d0fdc /net/devlink/health.c | |
parent | 7004c6c45761143836d3c8122d91264320d87e8e (diff) |
devlink: Move devlink health test to health file
Move devlink health report test callback from leftover.c to health.c. No
functional change in this patch.
Signed-off-by: Moshe Shemesh <moshe@nvidia.com>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
Reviewed-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/devlink/health.c')
-rw-r--r-- | net/devlink/health.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/net/devlink/health.c b/net/devlink/health.c index 6991b9405f4f..38ad890bb947 100644 --- a/net/devlink/health.c +++ b/net/devlink/health.c @@ -1296,3 +1296,19 @@ int devlink_nl_cmd_health_reporter_dump_clear_doit(struct sk_buff *skb, mutex_unlock(&reporter->dump_lock); return 0; } + +int devlink_nl_cmd_health_reporter_test_doit(struct sk_buff *skb, + struct genl_info *info) +{ + struct devlink *devlink = info->user_ptr[0]; + struct devlink_health_reporter *reporter; + + reporter = devlink_health_reporter_get_from_info(devlink, info); + if (!reporter) + return -EINVAL; + + if (!reporter->ops->test) + return -EOPNOTSUPP; + + return reporter->ops->test(reporter, info->extack); +} |