forked from Minki/linux
hv_netvsc: Clean up an unused parameter in rndis_filter_set_rss_param()
This patch removes the parameter, num_queue in rndis_filter_set_rss_param(), which is no longer in use. Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
864150dfa3
commit
715e2ec532
@ -213,7 +213,7 @@ void rndis_filter_update(struct netvsc_device *nvdev);
|
|||||||
void rndis_filter_device_remove(struct hv_device *dev,
|
void rndis_filter_device_remove(struct hv_device *dev,
|
||||||
struct netvsc_device *nvdev);
|
struct netvsc_device *nvdev);
|
||||||
int rndis_filter_set_rss_param(struct rndis_device *rdev,
|
int rndis_filter_set_rss_param(struct rndis_device *rdev,
|
||||||
const u8 *key, int num_queue);
|
const u8 *key);
|
||||||
int rndis_filter_receive(struct net_device *ndev,
|
int rndis_filter_receive(struct net_device *ndev,
|
||||||
struct netvsc_device *net_dev,
|
struct netvsc_device *net_dev,
|
||||||
struct hv_device *dev,
|
struct hv_device *dev,
|
||||||
|
@ -1424,7 +1424,7 @@ static int netvsc_set_rxfh(struct net_device *dev, const u32 *indir,
|
|||||||
key = rndis_dev->rss_key;
|
key = rndis_dev->rss_key;
|
||||||
}
|
}
|
||||||
|
|
||||||
return rndis_filter_set_rss_param(rndis_dev, key, ndev->num_chn);
|
return rndis_filter_set_rss_param(rndis_dev, key);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Hyper-V RNDIS protocol does not have ring in the HW sense.
|
/* Hyper-V RNDIS protocol does not have ring in the HW sense.
|
||||||
|
@ -717,7 +717,7 @@ cleanup:
|
|||||||
}
|
}
|
||||||
|
|
||||||
int rndis_filter_set_rss_param(struct rndis_device *rdev,
|
int rndis_filter_set_rss_param(struct rndis_device *rdev,
|
||||||
const u8 *rss_key, int num_queue)
|
const u8 *rss_key)
|
||||||
{
|
{
|
||||||
struct net_device *ndev = rdev->ndev;
|
struct net_device *ndev = rdev->ndev;
|
||||||
struct rndis_request *request;
|
struct rndis_request *request;
|
||||||
@ -1258,8 +1258,7 @@ struct netvsc_device *rndis_filter_device_add(struct hv_device *dev,
|
|||||||
atomic_read(&net_device->open_chn) == net_device->num_chn);
|
atomic_read(&net_device->open_chn) == net_device->num_chn);
|
||||||
|
|
||||||
/* ignore failues from setting rss parameters, still have channels */
|
/* ignore failues from setting rss parameters, still have channels */
|
||||||
rndis_filter_set_rss_param(rndis_device, netvsc_hash_key,
|
rndis_filter_set_rss_param(rndis_device, netvsc_hash_key);
|
||||||
net_device->num_chn);
|
|
||||||
out:
|
out:
|
||||||
if (ret) {
|
if (ret) {
|
||||||
net_device->max_chn = 1;
|
net_device->max_chn = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user