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

Commit 426d9541 authored by Vitaly Kuznetsov's avatar Vitaly Kuznetsov Committed by David S. Miller
Browse files

hv_netvsc: pass struct net_device to rndis_filter_set_offload_params()



The only caller rndis_filter_device_add() has 'struct net_device' pointer
already.

Signed-off-by: default avatarVitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e834da9a
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -620,10 +620,9 @@ int rndis_filter_set_device_mac(struct net_device *ndev, char *mac)
}

static int
rndis_filter_set_offload_params(struct hv_device *hdev,
rndis_filter_set_offload_params(struct net_device *ndev,
				struct ndis_offload_params *req_offloads)
{
	struct net_device *ndev = hv_get_drvdata(hdev);
	struct netvsc_device *nvdev = net_device_to_netvsc_device(ndev);
	struct rndis_device *rdev = nvdev->extension;
	struct rndis_request *request;
@@ -1083,7 +1082,7 @@ int rndis_filter_device_add(struct hv_device *dev,
	offloads.lso_v2_ipv4 = NDIS_OFFLOAD_PARAMETERS_LSOV2_ENABLED;


	ret = rndis_filter_set_offload_params(dev, &offloads);
	ret = rndis_filter_set_offload_params(net, &offloads);
	if (ret)
		goto err_dev_remv;