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

Commit 39e91cfb authored by Haiyang Zhang's avatar Haiyang Zhang Committed by David S. Miller
Browse files

hv_netvsc: Rename tx_send_table to tx_table



Simplify the variable name: tx_send_table

Signed-off-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 47371300
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -731,7 +731,7 @@ struct net_device_context {

	u32 tx_checksum_mask;

	u32 tx_send_table[VRSS_SEND_TAB_SIZE];
	u32 tx_table[VRSS_SEND_TAB_SIZE];

	/* Ethtool settings */
	u8 duplex;
+1 −1
Original line number Diff line number Diff line
@@ -1110,7 +1110,7 @@ static void netvsc_send_table(struct hv_device *hdev,
		      nvmsg->msg.v5_msg.send_table.offset);

	for (i = 0; i < count; i++)
		net_device_ctx->tx_send_table[i] = tab[i];
		net_device_ctx->tx_table[i] = tab[i];
}

static void netvsc_send_vf(struct net_device_context *net_device_ctx,
+2 −2
Original line number Diff line number Diff line
@@ -252,7 +252,7 @@ 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) &
	q_idx = ndc->tx_table[netvsc_get_hash(skb, ndc) &
			      (VRSS_SEND_TAB_SIZE - 1)];

	/* If queue index changed record the new value */