Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 96a0c396 authored by David Decotigny's avatar David Decotigny Committed by David S. Miller
Browse files

net: usnic: use __ethtool_get_ksettings

parent 091a9277
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -324,12 +324,12 @@ int usnic_ib_query_port(struct ib_device *ibdev, u8 port,
				struct ib_port_attr *props)
{
	struct usnic_ib_dev *us_ibdev = to_usdev(ibdev);
	struct ethtool_cmd cmd;
	struct ethtool_link_ksettings cmd;

	usnic_dbg("\n");

	mutex_lock(&us_ibdev->usdev_lock);
	__ethtool_get_settings(us_ibdev->netdev, &cmd);
	__ethtool_get_link_ksettings(us_ibdev->netdev, &cmd);
	memset(props, 0, sizeof(*props));

	props->lid = 0;
@@ -353,7 +353,7 @@ int usnic_ib_query_port(struct ib_device *ibdev, u8 port,
	props->pkey_tbl_len = 1;
	props->bad_pkey_cntr = 0;
	props->qkey_viol_cntr = 0;
	eth_speed_to_ib_speed(cmd.speed, &props->active_speed,
	eth_speed_to_ib_speed(cmd.base.speed, &props->active_speed,
			      &props->active_width);
	props->max_mtu = IB_MTU_4096;
	props->active_mtu = iboe_get_mtu(us_ibdev->ufdev->mtu);