* [PATCH] vmxnet3: remove redundant initialization of pointer 'rq'
@ 2018-02-01 17:29 Colin King
2018-02-01 19:28 ` Shrikrishna Khare
2018-02-01 19:54 ` David Miller
0 siblings, 2 replies; 3+ messages in thread
From: Colin King @ 2018-02-01 17:29 UTC (permalink / raw)
To: Shrikrishna Khare, pv-drivers, netdev; +Cc: kernel-janitors, linux-kernel
From: Colin Ian King <colin.king@canonical.com>
Pointer rq is being initialized but this value is never read, it
is being updated inside a for-loop. Remove the initialization and
move it into the scope of the for-loop.
Cleans up clang warning:
drivers/net/vmxnet3/vmxnet3_drv.c:2763:27: warning: Value stored
to 'rq' during its initialization is never read
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
drivers/net/vmxnet3/vmxnet3_drv.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/drivers/net/vmxnet3/vmxnet3_drv.c b/drivers/net/vmxnet3/vmxnet3_drv.c
index cf95290b160c..8b39c160743d 100644
--- a/drivers/net/vmxnet3/vmxnet3_drv.c
+++ b/drivers/net/vmxnet3/vmxnet3_drv.c
@@ -2760,9 +2760,6 @@ static void
vmxnet3_adjust_rx_ring_size(struct vmxnet3_adapter *adapter)
{
size_t sz, i, ring0_size, ring1_size, comp_size;
- struct vmxnet3_rx_queue *rq = &adapter->rx_queue[0];
-
-
if (adapter->netdev->mtu <= VMXNET3_MAX_SKB_BUF_SIZE -
VMXNET3_MAX_ETH_HDR_SIZE) {
adapter->skb_buf_size = adapter->netdev->mtu +
@@ -2794,7 +2791,8 @@ vmxnet3_adjust_rx_ring_size(struct vmxnet3_adapter *adapter)
comp_size = ring0_size + ring1_size;
for (i = 0; i < adapter->num_rx_queues; i++) {
- rq = &adapter->rx_queue[i];
+ struct vmxnet3_rx_queue *rq = &adapter->rx_queue[i];
+
rq->rx_ring[0].size = ring0_size;
rq->rx_ring[1].size = ring1_size;
rq->comp_ring.size = comp_size;
--
2.15.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] vmxnet3: remove redundant initialization of pointer 'rq'
2018-02-01 17:29 [PATCH] vmxnet3: remove redundant initialization of pointer 'rq' Colin King
@ 2018-02-01 19:28 ` Shrikrishna Khare
2018-02-01 19:54 ` David Miller
1 sibling, 0 replies; 3+ messages in thread
From: Shrikrishna Khare @ 2018-02-01 19:28 UTC (permalink / raw)
To: Colin King
Cc: Shrikrishna Khare, pv-drivers, netdev, kernel-janitors,
linux-kernel
On Thu, 1 Feb 2018, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> Pointer rq is being initialized but this value is never read, it
> is being updated inside a for-loop. Remove the initialization and
> move it into the scope of the for-loop.
>
> Cleans up clang warning:
> drivers/net/vmxnet3/vmxnet3_drv.c:2763:27: warning: Value stored
> to 'rq' during its initialization is never read
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Shrikrishna Khare <skhare@vmware.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] vmxnet3: remove redundant initialization of pointer 'rq'
2018-02-01 17:29 [PATCH] vmxnet3: remove redundant initialization of pointer 'rq' Colin King
2018-02-01 19:28 ` Shrikrishna Khare
@ 2018-02-01 19:54 ` David Miller
1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2018-02-01 19:54 UTC (permalink / raw)
To: colin.king; +Cc: skhare, pv-drivers, netdev, kernel-janitors, linux-kernel
From: Colin King <colin.king@canonical.com>
Date: Thu, 1 Feb 2018 17:29:21 +0000
> From: Colin Ian King <colin.king@canonical.com>
>
> Pointer rq is being initialized but this value is never read, it
> is being updated inside a for-loop. Remove the initialization and
> move it into the scope of the for-loop.
>
> Cleans up clang warning:
> drivers/net/vmxnet3/vmxnet3_drv.c:2763:27: warning: Value stored
> to 'rq' during its initialization is never read
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
Applied.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-02-01 19:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-01 17:29 [PATCH] vmxnet3: remove redundant initialization of pointer 'rq' Colin King
2018-02-01 19:28 ` Shrikrishna Khare
2018-02-01 19:54 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).