|
|
7570e2 |
From d6ac4610e3da73d4a9591720ee18e6df9ac6575b Mon Sep 17 00:00:00 2001
|
|
|
7570e2 |
Message-Id: <d6ac4610e3da73d4a9591720ee18e6df9ac6575b.1647984433.git.aclaudi@redhat.com>
|
|
|
7570e2 |
In-Reply-To: <cef782ca658d695c5ca2d174ba1f89cba6bd84e5.1647984433.git.aclaudi@redhat.com>
|
|
|
7570e2 |
References: <cef782ca658d695c5ca2d174ba1f89cba6bd84e5.1647984433.git.aclaudi@redhat.com>
|
|
|
7570e2 |
From: Andrea Claudi <aclaudi@redhat.com>
|
|
|
7570e2 |
Date: Mon, 21 Mar 2022 16:35:16 +0100
|
|
|
7570e2 |
Subject: [PATCH] vdpa: Remove unsupported command line option
|
|
|
7570e2 |
|
|
|
7570e2 |
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2059427
|
|
|
7570e2 |
Upstream Status: iproute2-next.git commit 2d1954c8
|
|
|
7570e2 |
|
|
|
7570e2 |
commit 2d1954c8a54b61ec271ab5b36976c4efdcf30066
|
|
|
7570e2 |
Author: Eli Cohen <elic@nvidia.com>
|
|
|
7570e2 |
Date: Sun Mar 13 19:12:16 2022 +0200
|
|
|
7570e2 |
|
|
|
7570e2 |
vdpa: Remove unsupported command line option
|
|
|
7570e2 |
|
|
|
7570e2 |
"-v[erbose]" option is not supported.
|
|
|
7570e2 |
Remove it.
|
|
|
7570e2 |
|
|
|
7570e2 |
Reviewed-by: Parav Pandit <parav@nvidia.com>
|
|
|
7570e2 |
Reviewed-by: Jianbo Liu <jianbol@mellanox.com>
|
|
|
7570e2 |
Reviewed-by: Si-Wei Liu <si-wei.liu@oracle.com>
|
|
|
7570e2 |
Acked-by: Jason Wang <jasowang@redhat.com>
|
|
|
7570e2 |
Signed-off-by: Eli Cohen <elic@nvidia.com>
|
|
|
7570e2 |
Signed-off-by: David Ahern <dsahern@kernel.org>
|
|
|
7570e2 |
---
|
|
|
7570e2 |
vdpa/vdpa.c | 2 +-
|
|
|
7570e2 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
7570e2 |
|
|
|
7570e2 |
diff --git a/vdpa/vdpa.c b/vdpa/vdpa.c
|
|
|
7570e2 |
index f048e470..4ccb5648 100644
|
|
|
7570e2 |
--- a/vdpa/vdpa.c
|
|
|
7570e2 |
+++ b/vdpa/vdpa.c
|
|
|
7570e2 |
@@ -711,7 +711,7 @@ static void help(void)
|
|
|
7570e2 |
fprintf(stderr,
|
|
|
7570e2 |
"Usage: vdpa [ OPTIONS ] OBJECT { COMMAND | help }\n"
|
|
|
7570e2 |
"where OBJECT := { mgmtdev | dev }\n"
|
|
|
7570e2 |
- " OPTIONS := { -V[ersion] | -n[o-nice-names] | -j[son] | -p[retty] | -v[erbose] }\n");
|
|
|
7570e2 |
+ " OPTIONS := { -V[ersion] | -n[o-nice-names] | -j[son] | -p[retty] }\n");
|
|
|
7570e2 |
}
|
|
|
7570e2 |
|
|
|
7570e2 |
static int vdpa_cmd(struct vdpa *vdpa, int argc, char **argv)
|
|
|
7570e2 |
--
|
|
|
7570e2 |
2.35.1
|
|
|
7570e2 |
|