Message ID | 20220815022505.13839-1-stephen@networkplumber.org (mailing list archive) |
---|---|
State | Accepted |
Commit | f3849120887f5ba6ff27bc7cfa641f67b8e08ba1 |
Delegated to: | David Ahern |
Headers | show |
Series | [iproute2] vdpa: fix statistics API mismatch | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Not a local patch |
Hello: This patch was applied to iproute2/iproute2.git (main) by Stephen Hemminger <stephen@networkplumber.org>: On Sun, 14 Aug 2022 19:25:05 -0700 you wrote: > The final vdpa.h header from upstream has slightly different > definition of VDPA stats get, causing compilation failure. > > Fixes: 6f97e9c9337b ("vdpa: Add support for reading vdpa device statistics") > Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> > --- > vdpa/vdpa.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - [iproute2] vdpa: fix statistics API mismatch https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/commit/?id=f3849120887f You are awesome, thank you!
diff --git a/vdpa/vdpa.c b/vdpa/vdpa.c index 6ded1030273b..b73e40b4b695 100644 --- a/vdpa/vdpa.c +++ b/vdpa/vdpa.c @@ -949,7 +949,7 @@ static int cmd_dev_vstats_show(struct vdpa *vdpa, int argc, char **argv) return -EINVAL; } - nlh = mnlu_gen_socket_cmd_prepare(&vdpa->nlg, VDPA_CMD_DEV_STATS_GET, + nlh = mnlu_gen_socket_cmd_prepare(&vdpa->nlg, VDPA_CMD_DEV_VSTATS_GET, flags); err = vdpa_argv_parse_put(nlh, vdpa, argc, argv,
The final vdpa.h header from upstream has slightly different definition of VDPA stats get, causing compilation failure. Fixes: 6f97e9c9337b ("vdpa: Add support for reading vdpa device statistics") Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> --- vdpa/vdpa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)