[PATCH 3/3] net: Replace "Supported NIC models" with "Available NIC models"

Thomas Huth posted 3 patches 3 years, 3 months ago
Maintainers: "Michael S. Tsirkin" <mst@redhat.com>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Jason Wang <jasowang@redhat.com>
There is a newer version of this series
[PATCH 3/3] net: Replace "Supported NIC models" with "Available NIC models"
Posted by Thomas Huth 3 years, 3 months ago
Just because a NIC model is compiled into the QEMU binary does not
necessary mean that it can be used with each and every machine.
So let's rather talk about "available" models instead of "supported"
models, just to avoid confusion.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 net/net.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/net.c b/net/net.c
index b4b8f2a9cc..173195dbf9 100644
--- a/net/net.c
+++ b/net/net.c
@@ -943,7 +943,7 @@ int qemu_show_nic_models(const char *arg, const char *const *models)
         return 0;
     }
 
-    printf("Supported NIC models:\n");
+    printf("Available NIC models:\n");
     for (i = 0 ; models[i]; i++) {
         printf("%s\n", models[i]);
     }
-- 
2.31.1
Re: [PATCH 3/3] net: Replace "Supported NIC models" with "Available NIC models"
Posted by Claudio Fontana 3 years, 3 months ago
On 11/4/22 13:57, Thomas Huth wrote:
> Just because a NIC model is compiled into the QEMU binary does not
> necessary mean that it can be used with each and every machine.
> So let's rather talk about "available" models instead of "supported"
> models, just to avoid confusion.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>  net/net.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/net/net.c b/net/net.c
> index b4b8f2a9cc..173195dbf9 100644
> --- a/net/net.c
> +++ b/net/net.c
> @@ -943,7 +943,7 @@ int qemu_show_nic_models(const char *arg, const char *const *models)
>          return 0;
>      }
>  
> -    printf("Supported NIC models:\n");
> +    printf("Available NIC models:\n");
>      for (i = 0 ; models[i]; i++) {
>          printf("%s\n", models[i]);
>      }

Reviewed-by: Claudio Fontana <cfontana@suse.de>