OSDN Git Service

RDMA/ipoib: implement ethtool .get_link() callback
authorKamal Heib <kamalheib1@gmail.com>
Wed, 29 May 2019 13:55:45 +0000 (16:55 +0300)
committerJason Gunthorpe <jgg@mellanox.com>
Fri, 7 Jun 2019 16:35:00 +0000 (13:35 -0300)
Add support for reporting link state for ipoib net devices.

$ ip l set dev mlx4_ib0 up
$ ethtool mlx4_ib0 | grep Link
Link detected: yes
$ ip l set dev mlx4_ib0 down
$ ethtool mlx4_ib0 | grep Link
Link detected: no

Signed-off-by: Kamal Heib <kamalheib1@gmail.com>
Reviewed-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/ulp/ipoib/ipoib_ethtool.c

index 8342992..5801653 100644 (file)
@@ -222,6 +222,7 @@ static const struct ethtool_ops ipoib_ethtool_ops = {
        .get_strings            = ipoib_get_strings,
        .get_ethtool_stats      = ipoib_get_ethtool_stats,
        .get_sset_count         = ipoib_get_sset_count,
+       .get_link               = ethtool_op_get_link,
 };
 
 void ipoib_set_ethtool_ops(struct net_device *dev)