diff mbox series

[iproute2] rdma: Update node type strings

Message ID 1557903516-14860-1-git-send-email-galpress@amazon.com
State Accepted
Delegated to: stephen hemminger
Headers show
Series [iproute2] rdma: Update node type strings | expand

Commit Message

Gal Pressman May 15, 2019, 6:58 a.m. UTC
Fix typo in usnic_udp node type and add a string for the unspecified
node type.

Signed-off-by: Gal Pressman <galpress@amazon.com>
---
 rdma/dev.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Gal Pressman May 19, 2019, 3:26 p.m. UTC | #1
On 15/05/2019 9:58, Gal Pressman wrote:
> Fix typo in usnic_udp node type and add a string for the unspecified
> node type.
> 
> Signed-off-by: Gal Pressman <galpress@amazon.com>
> ---
>  rdma/dev.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/rdma/dev.c b/rdma/dev.c
> index 339625202200..904836221c1b 100644
> --- a/rdma/dev.c
> +++ b/rdma/dev.c
> @@ -170,7 +170,8 @@ static const char *node_type_to_str(uint8_t node_type)
>  	static const char * const node_type_str[] = { "unknown", "ca",
>  						      "switch", "router",
>  						      "rnic", "usnic",
> -						      "usnic_dp" };
> +						      "usnic_udp",
> +						      "unspecified" };
>  	if (node_type < ARRAY_SIZE(node_type_str))
>  		return node_type_str[node_type];
>  	return "unknown";
> 

Sorry, forgot to add Stephen.
diff mbox series

Patch

diff --git a/rdma/dev.c b/rdma/dev.c
index 339625202200..904836221c1b 100644
--- a/rdma/dev.c
+++ b/rdma/dev.c
@@ -170,7 +170,8 @@  static const char *node_type_to_str(uint8_t node_type)
 	static const char * const node_type_str[] = { "unknown", "ca",
 						      "switch", "router",
 						      "rnic", "usnic",
-						      "usnic_dp" };
+						      "usnic_udp",
+						      "unspecified" };
 	if (node_type < ARRAY_SIZE(node_type_str))
 		return node_type_str[node_type];
 	return "unknown";