mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
netvsc: remove no longer used max_num_rss queues
This value has been calculated in rndis_device_attach since 4.11. Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
27f5aa92cc
commit
658677f17c
@ -147,7 +147,6 @@ struct hv_netvsc_packet {
|
||||
struct netvsc_device_info {
|
||||
unsigned char mac_adr[ETH_ALEN];
|
||||
int ring_size;
|
||||
u32 max_num_vrss_chns;
|
||||
u32 num_chn;
|
||||
};
|
||||
|
||||
|
@ -753,7 +753,6 @@ static int netvsc_set_channels(struct net_device *net,
|
||||
memset(&device_info, 0, sizeof(device_info));
|
||||
device_info.num_chn = count;
|
||||
device_info.ring_size = ring_size;
|
||||
device_info.max_num_vrss_chns = count;
|
||||
|
||||
nvdev = rndis_filter_device_add(dev, &device_info);
|
||||
if (!IS_ERR(nvdev)) {
|
||||
@ -762,7 +761,6 @@ static int netvsc_set_channels(struct net_device *net,
|
||||
ret = PTR_ERR(nvdev);
|
||||
} else {
|
||||
device_info.num_chn = orig;
|
||||
device_info.max_num_vrss_chns = count;
|
||||
rndis_filter_device_add(dev, &device_info);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user