diff mbox series

[iproute2] iptuntap: fix multi-queue flag display

Message ID 20210901154826.31109-1-david.marchand@redhat.com (mailing list archive)
State Accepted
Delegated to: Stephen Hemminger
Headers show
Series [iproute2] iptuntap: fix multi-queue flag display | expand

Checks

Context Check Description
netdev/tree_selection success Not a local patch

Commit Message

David Marchand Sept. 1, 2021, 3:48 p.m. UTC
When creating a tap with multi_queue flag, this flag is not displayed
when dumping:

$ ip tuntap add tap23 mode tap multi_queue
$ ip tuntap
tap23: tap persist0x100

While at it, add a space between known flags and hexdump of unknown
ones.

Fixes: c41e038f48a3 ("iptuntap: allow creation of multi-queue tun/tap device")
Signed-off-by: David Marchand <david.marchand@redhat.com>
---
 ip/iptuntap.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

Comments

Maxime Coquelin Sept. 14, 2021, 8:22 a.m. UTC | #1
On 9/1/21 5:48 PM, David Marchand wrote:
> When creating a tap with multi_queue flag, this flag is not displayed
> when dumping:
> 
> $ ip tuntap add tap23 mode tap multi_queue
> $ ip tuntap
> tap23: tap persist0x100
> 
> While at it, add a space between known flags and hexdump of unknown
> ones.
> 
> Fixes: c41e038f48a3 ("iptuntap: allow creation of multi-queue tun/tap device")
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> ---
>  ip/iptuntap.c | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/ip/iptuntap.c b/ip/iptuntap.c
> index 9cdb4a80..96ca1ae7 100644
> --- a/ip/iptuntap.c
> +++ b/ip/iptuntap.c
> @@ -243,6 +243,9 @@ static void print_flags(long flags)
>  	if (flags & IFF_ONE_QUEUE)
>  		print_string(PRINT_ANY, NULL, " %s", "one_queue");
>  
> +	if (flags & IFF_MULTI_QUEUE)
> +		print_string(PRINT_ANY, NULL, " %s", "multi_queue");
> +
>  	if (flags & IFF_VNET_HDR)
>  		print_string(PRINT_ANY, NULL, " %s", "vnet_hdr");
>  
> @@ -253,9 +256,10 @@ static void print_flags(long flags)
>  		print_string(PRINT_ANY, NULL, " %s", "filter");
>  
>  	flags &= ~(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
> -		   IFF_VNET_HDR | IFF_PERSIST | IFF_NOFILTER);
> +		   IFF_MULTI_QUEUE | IFF_VNET_HDR | IFF_PERSIST |
> +		   IFF_NOFILTER);
>  	if (flags)
> -		print_0xhex(PRINT_ANY, NULL, "%#llx", flags);
> +		print_0xhex(PRINT_ANY, NULL, " %#llx", flags);
>  
>  	close_json_array(PRINT_JSON, NULL);
>  }
> 

Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>

Thanks,
Maxime
diff mbox series

Patch

diff --git a/ip/iptuntap.c b/ip/iptuntap.c
index 9cdb4a80..96ca1ae7 100644
--- a/ip/iptuntap.c
+++ b/ip/iptuntap.c
@@ -243,6 +243,9 @@  static void print_flags(long flags)
 	if (flags & IFF_ONE_QUEUE)
 		print_string(PRINT_ANY, NULL, " %s", "one_queue");
 
+	if (flags & IFF_MULTI_QUEUE)
+		print_string(PRINT_ANY, NULL, " %s", "multi_queue");
+
 	if (flags & IFF_VNET_HDR)
 		print_string(PRINT_ANY, NULL, " %s", "vnet_hdr");
 
@@ -253,9 +256,10 @@  static void print_flags(long flags)
 		print_string(PRINT_ANY, NULL, " %s", "filter");
 
 	flags &= ~(IFF_TUN | IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE |
-		   IFF_VNET_HDR | IFF_PERSIST | IFF_NOFILTER);
+		   IFF_MULTI_QUEUE | IFF_VNET_HDR | IFF_PERSIST |
+		   IFF_NOFILTER);
 	if (flags)
-		print_0xhex(PRINT_ANY, NULL, "%#llx", flags);
+		print_0xhex(PRINT_ANY, NULL, " %#llx", flags);
 
 	close_json_array(PRINT_JSON, NULL);
 }