[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20210106131006.2110613-5-danieller@mellanox.com>
Date: Wed, 6 Jan 2021 15:10:05 +0200
From: Danielle Ratson <danieller@...lanox.com>
To: netdev@...r.kernel.org
Cc: mkubecek@...e.cz, f.fainelli@...il.com, kuba@...nel.org,
andrew@...n.ch, mlxsw@...dia.com,
Danielle Ratson <danieller@...lanox.com>
Subject: [PATCH ethtool 4/5] shell-completion: Add completion for lanes
Lanes was added as a new link mode setting in ethtool.
Support completion for lanes when setting parameters.
Signed-off-by: Danielle Ratson <danieller@...lanox.com>
Reviewed-by: Jiri Pirko <jiri@...dia.com>
---
shell-completion/bash/ethtool | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/shell-completion/bash/ethtool b/shell-completion/bash/ethtool
index 5305559..4557341 100644
--- a/shell-completion/bash/ethtool
+++ b/shell-completion/bash/ethtool
@@ -97,6 +97,7 @@ _ethtool_change()
[speed]=notseen
[wol]=notseen
[xcvr]=notseen
+ [lanes]=notseen
)
local -A msgtypes=(
@@ -175,6 +176,9 @@ _ethtool_change()
xcvr)
COMPREPLY=( $( compgen -W 'internal external' -- "$cur" ) )
return ;;
+ lanes)
+ # Number
+ return ;;
esac
local -a comp_words=()
--
2.26.2
Powered by blists - more mailing lists