Skip to content

Commit

Permalink
hv_netvsc: Fix the channel limit in netvsc_set_rxfh()
Browse files Browse the repository at this point in the history
The limit of setting receive indirection table value should be
the current number of channels, not the VRSS_CHANNEL_MAX.

Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Haiyang Zhang authored and David S. Miller committed Sep 2, 2017
1 parent 06be580 commit db3cd7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/hyperv/netvsc_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1407,7 +1407,7 @@ static int netvsc_set_rxfh(struct net_device *dev, const u32 *indir,
rndis_dev = ndev->extension;
if (indir) {
for (i = 0; i < ITAB_NUM; i++)
if (indir[i] >= VRSS_CHANNEL_MAX)
if (indir[i] >= ndev->num_chn)
return -EINVAL;

for (i = 0; i < ITAB_NUM; i++)
Expand Down

0 comments on commit db3cd7a

Please sign in to comment.