diff options
author | Haiyang Zhang <haiyangz@microsoft.com> | 2017-10-13 22:28:04 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-15 04:42:55 +0300 |
commit | 39e91cfbf6f5fb26ba64cc2e8874372baf1671e7 (patch) | |
tree | e97afefaa05eb4c2d912d976ee7f8389b5ade62f /drivers/net/hyperv/netvsc_drv.c | |
parent | 47371300dfc269dd8d150e5b872bdbbda98ba809 (diff) | |
download | linux-39e91cfbf6f5fb26ba64cc2e8874372baf1671e7.tar.xz |
hv_netvsc: Rename tx_send_table to tx_table
Simplify the variable name: tx_send_table
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/hyperv/netvsc_drv.c')
-rw-r--r-- | drivers/net/hyperv/netvsc_drv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/hyperv/netvsc_drv.c b/drivers/net/hyperv/netvsc_drv.c index 8fa964e733ad..da216ca4f2b2 100644 --- a/drivers/net/hyperv/netvsc_drv.c +++ b/drivers/net/hyperv/netvsc_drv.c @@ -252,8 +252,8 @@ static inline int netvsc_get_tx_queue(struct net_device *ndev, struct sock *sk = skb->sk; int q_idx; - q_idx = ndc->tx_send_table[netvsc_get_hash(skb, ndc) & - (VRSS_SEND_TAB_SIZE - 1)]; + q_idx = ndc->tx_table[netvsc_get_hash(skb, ndc) & + (VRSS_SEND_TAB_SIZE - 1)]; /* If queue index changed record the new value */ if (q_idx != old_idx && |