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