All of lore.kernel.org
 help / color / mirror / Atom feed
* linux-next: build warning after merge of the final tree (net-next tree related)
@ 2013-05-22  5:55 ` Stephen Rothwell
  0 siblings, 0 replies; 12+ messages in thread
From: Stephen Rothwell @ 2013-05-22  5:55 UTC (permalink / raw)
  To: David Miller, netdev; +Cc: linux-next, linux-kernel, Emilio López

[-- Attachment #1: Type: text/plain, Size: 466 bytes --]

Hi all,

After merging the final tree, today's linux-next build (sparc32 defconfig)
produced this warning:

drivers/net/ethernet/sun/sunbmac.c: In function 'bigmac_set_multicast':
drivers/net/ethernet/sun/sunbmac.c:998:6: warning: unused variable 'i' [-Wunused-variable]

Introduced by commit bfd428daaf61 ("net: ethernet: sun: initialize
variables directly") from the net-next tree.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

* linux-next: build warning after merge of the final tree (net-next tree related)
@ 2013-05-22  5:55 ` Stephen Rothwell
  0 siblings, 0 replies; 12+ messages in thread
From: Stephen Rothwell @ 2013-05-22  5:55 UTC (permalink / raw)
  To: David Miller, netdev; +Cc: linux-next, linux-kernel, Emilio López

[-- Attachment #1: Type: text/plain, Size: 466 bytes --]

Hi all,

After merging the final tree, today's linux-next build (sparc32 defconfig)
produced this warning:

drivers/net/ethernet/sun/sunbmac.c: In function 'bigmac_set_multicast':
drivers/net/ethernet/sun/sunbmac.c:998:6: warning: unused variable 'i' [-Wunused-variable]

Introduced by commit bfd428daaf61 ("net: ethernet: sun: initialize
variables directly") from the net-next tree.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: linux-next: build warning after merge of the final tree (net-next tree related)
  2013-05-22  5:55 ` Stephen Rothwell
  (?)
@ 2013-05-22 13:24 ` Emilio López
  2013-05-22 19:26   ` David Miller
  -1 siblings, 1 reply; 12+ messages in thread
From: Emilio López @ 2013-05-22 13:24 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: David Miller, netdev, linux-next, linux-kernel

Hi Stephen,

El 22/05/13 02:55, Stephen Rothwell escribió:
> Hi all,
> 
> After merging the final tree, today's linux-next build (sparc32 defconfig)
> produced this warning:
> 
> drivers/net/ethernet/sun/sunbmac.c: In function 'bigmac_set_multicast':
> drivers/net/ethernet/sun/sunbmac.c:998:6: warning: unused variable 'i' [-Wunused-variable]
> 
> Introduced by commit bfd428daaf61 ("net: ethernet: sun: initialize
> variables directly") from the net-next tree.
> 

Thank you for notifying.

After a second look at the code, I see the apple and korina patch
counterparts also leave an extra i variable now; the dm9000 patch should
be unaffected as it still uses i for other things.

@David, what would you like me to do? I can send another set of patches
fixing this, resend the full original series but fixed, or resend just
the affected patches.

Emilio

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: linux-next: build warning after merge of the final tree (net-next tree related)
  2013-05-22 13:24 ` Emilio López
@ 2013-05-22 19:26   ` David Miller
  2013-05-22 23:57     ` [PATCH 1/3] net: ethernet: apple: drop unused variable Emilio López
  0 siblings, 1 reply; 12+ messages in thread
From: David Miller @ 2013-05-22 19:26 UTC (permalink / raw)
  To: emilio; +Cc: sfr, netdev, linux-next, linux-kernel

From: Emilio López <emilio@elopez.com.ar>
Date: Wed, 22 May 2013 10:24:28 -0300

> @David, what would you like me to do? I can send another set of patches
> fixing this, resend the full original series but fixed, or resend just
> the affected patches.

Your patch series is in my tree and will not be reverted, we never do
that.  Therefore you must send me patches which fix up these problems.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 1/3] net: ethernet: apple: drop unused variable
  2013-05-22 19:26   ` David Miller
@ 2013-05-22 23:57     ` Emilio López
  2013-05-22 23:57       ` [PATCH 2/3] net: ethernet: korina: " Emilio López
                         ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Emilio López @ 2013-05-22 23:57 UTC (permalink / raw)
  To: sfr, davem; +Cc: netdev, linux-kernel, Emilio López

Commit 3b0aaef ("net: ethernet: apple: initialize variables directly")
dropped the only loop that was using i but did not remove the actual
variable, therefore causing a warning when building. This patch drops
the now redundant line.

Signed-off-by: Emilio López <emilio@elopez.com.ar>
---
 drivers/net/ethernet/apple/bmac.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/net/ethernet/apple/bmac.c b/drivers/net/ethernet/apple/bmac.c
index 714dcfe..a597b76 100644
--- a/drivers/net/ethernet/apple/bmac.c
+++ b/drivers/net/ethernet/apple/bmac.c
@@ -1016,7 +1016,6 @@ static void bmac_set_multicast(struct net_device *dev)
 static void bmac_set_multicast(struct net_device *dev)
 {
 	struct netdev_hw_addr *ha;
-	int i;
 	unsigned short rx_cfg;
 	u32 crc;
 
-- 
1.8.2.3


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 2/3] net: ethernet: korina: drop unused variable
  2013-05-22 23:57     ` [PATCH 1/3] net: ethernet: apple: drop unused variable Emilio López
@ 2013-05-22 23:57       ` Emilio López
  2013-05-23  6:43         ` David Miller
  2013-05-22 23:57       ` [PATCH 3/3] net: ethernet: sun: " Emilio López
  2013-05-23  6:43       ` [PATCH 1/3] net: ethernet: apple: " David Miller
  2 siblings, 1 reply; 12+ messages in thread
From: Emilio López @ 2013-05-22 23:57 UTC (permalink / raw)
  To: sfr, davem; +Cc: netdev, linux-kernel, Emilio López

Commit e998fd4 ("net: ethernet: korina: initialize variables directly")
dropped the only loop that was using i but did not remove the actual
variable, therefore causing a warning when building. This patch drops
the now redundant line.

Signed-off-by: Emilio López <emilio@elopez.com.ar>
---
 drivers/net/ethernet/korina.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/net/ethernet/korina.c b/drivers/net/ethernet/korina.c
index 0b57085..e7851d1 100644
--- a/drivers/net/ethernet/korina.c
+++ b/drivers/net/ethernet/korina.c
@@ -483,7 +483,6 @@ static void korina_multicast_list(struct net_device *dev)
 	unsigned long flags;
 	struct netdev_hw_addr *ha;
 	u32 recognise = ETH_ARC_AB;	/* always accept broadcasts */
-	int i;
 
 	/* Set promiscuous mode */
 	if (dev->flags & IFF_PROMISC)
-- 
1.8.2.3


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 3/3] net: ethernet: sun: drop unused variable
  2013-05-22 23:57     ` [PATCH 1/3] net: ethernet: apple: drop unused variable Emilio López
  2013-05-22 23:57       ` [PATCH 2/3] net: ethernet: korina: " Emilio López
@ 2013-05-22 23:57       ` Emilio López
  2013-05-23  6:43         ` David Miller
  2013-05-23  6:43       ` [PATCH 1/3] net: ethernet: apple: " David Miller
  2 siblings, 1 reply; 12+ messages in thread
From: Emilio López @ 2013-05-22 23:57 UTC (permalink / raw)
  To: sfr, davem; +Cc: netdev, linux-kernel, Emilio López

Commit bfd428d ("net: ethernet: sun: initialize variables directly")
dropped the only loop that was using i but did not remove the actual
variable, therefore causing a warning when building. This patch drops
the now redundant line.

Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Emilio López <emilio@elopez.com.ar>
---
 drivers/net/ethernet/sun/sunbmac.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/net/ethernet/sun/sunbmac.c b/drivers/net/ethernet/sun/sunbmac.c
index 09b4f8c..0d43fa9 100644
--- a/drivers/net/ethernet/sun/sunbmac.c
+++ b/drivers/net/ethernet/sun/sunbmac.c
@@ -995,7 +995,6 @@ static void bigmac_set_multicast(struct net_device *dev)
 	struct bigmac *bp = netdev_priv(dev);
 	void __iomem *bregs = bp->bregs;
 	struct netdev_hw_addr *ha;
-	int i;
 	u32 tmp, crc;
 
 	/* Disable the receiver.  The bit self-clears when
-- 
1.8.2.3


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH 1/3] net: ethernet: apple: drop unused variable
  2013-05-22 23:57     ` [PATCH 1/3] net: ethernet: apple: drop unused variable Emilio López
  2013-05-22 23:57       ` [PATCH 2/3] net: ethernet: korina: " Emilio López
  2013-05-22 23:57       ` [PATCH 3/3] net: ethernet: sun: " Emilio López
@ 2013-05-23  6:43       ` David Miller
  2 siblings, 0 replies; 12+ messages in thread
From: David Miller @ 2013-05-23  6:43 UTC (permalink / raw)
  To: emilio; +Cc: sfr, netdev, linux-kernel

From: Emilio López <emilio@elopez.com.ar>
Date: Wed, 22 May 2013 20:57:35 -0300

> Commit 3b0aaef ("net: ethernet: apple: initialize variables directly")
> dropped the only loop that was using i but did not remove the actual
> variable, therefore causing a warning when building. This patch drops
> the now redundant line.
> 
> Signed-off-by: Emilio López <emilio@elopez.com.ar>

Applied.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 2/3] net: ethernet: korina: drop unused variable
  2013-05-22 23:57       ` [PATCH 2/3] net: ethernet: korina: " Emilio López
@ 2013-05-23  6:43         ` David Miller
  0 siblings, 0 replies; 12+ messages in thread
From: David Miller @ 2013-05-23  6:43 UTC (permalink / raw)
  To: emilio; +Cc: sfr, netdev, linux-kernel

From: Emilio López <emilio@elopez.com.ar>
Date: Wed, 22 May 2013 20:57:36 -0300

> Commit e998fd4 ("net: ethernet: korina: initialize variables directly")
> dropped the only loop that was using i but did not remove the actual
> variable, therefore causing a warning when building. This patch drops
> the now redundant line.
> 
> Signed-off-by: Emilio López <emilio@elopez.com.ar>

Applied.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 3/3] net: ethernet: sun: drop unused variable
  2013-05-22 23:57       ` [PATCH 3/3] net: ethernet: sun: " Emilio López
@ 2013-05-23  6:43         ` David Miller
  2013-05-23 12:54           ` Emilio López
  0 siblings, 1 reply; 12+ messages in thread
From: David Miller @ 2013-05-23  6:43 UTC (permalink / raw)
  To: emilio; +Cc: sfr, netdev, linux-kernel

From: Emilio López <emilio@elopez.com.ar>
Date: Wed, 22 May 2013 20:57:37 -0300

> Commit bfd428d ("net: ethernet: sun: initialize variables directly")
> dropped the only loop that was using i but did not remove the actual
> variable, therefore causing a warning when building. This patch drops
> the now redundant line.
> 
> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
> Signed-off-by: Emilio López <emilio@elopez.com.ar>

Applied.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 3/3] net: ethernet: sun: drop unused variable
  2013-05-23  6:43         ` David Miller
@ 2013-05-23 12:54           ` Emilio López
  2013-05-23 19:13             ` David Miller
  0 siblings, 1 reply; 12+ messages in thread
From: Emilio López @ 2013-05-23 12:54 UTC (permalink / raw)
  To: David Miller; +Cc: sfr, netdev, linux-kernel

Hi David,

El 23/05/13 03:43, David Miller escribió:
> From: Emilio López <emilio@elopez.com.ar>
> Date: Wed, 22 May 2013 20:57:37 -0300
> 
>> Commit bfd428d ("net: ethernet: sun: initialize variables directly")
>> dropped the only loop that was using i but did not remove the actual
>> variable, therefore causing a warning when building. This patch drops
>> the now redundant line.
>>
>> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
>> Signed-off-by: Emilio López <emilio@elopez.com.ar>
> 
> Applied.

I see that you applied the series in net instead of net-next; the
previous patches were in net-next only. This will cause build breakage
in net because the loop is still there.

Regards,

Emilio

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 3/3] net: ethernet: sun: drop unused variable
  2013-05-23 12:54           ` Emilio López
@ 2013-05-23 19:13             ` David Miller
  0 siblings, 0 replies; 12+ messages in thread
From: David Miller @ 2013-05-23 19:13 UTC (permalink / raw)
  To: emilio; +Cc: sfr, netdev, linux-kernel

From: Emilio López <emilio@elopez.com.ar>
Date: Thu, 23 May 2013 09:54:23 -0300

> Hi David,
> 
> El 23/05/13 03:43, David Miller escribió:
>> From: Emilio López <emilio@elopez.com.ar>
>> Date: Wed, 22 May 2013 20:57:37 -0300
>> 
>>> Commit bfd428d ("net: ethernet: sun: initialize variables directly")
>>> dropped the only loop that was using i but did not remove the actual
>>> variable, therefore causing a warning when building. This patch drops
>>> the now redundant line.
>>>
>>> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
>>> Signed-off-by: Emilio López <emilio@elopez.com.ar>
>> 
>> Applied.
> 
> I see that you applied the series in net instead of net-next; the
> previous patches were in net-next only. This will cause build breakage
> in net because the loop is still there.

My bad, I'll fix this up.

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2013-05-23 19:13 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-22  5:55 linux-next: build warning after merge of the final tree (net-next tree related) Stephen Rothwell
2013-05-22  5:55 ` Stephen Rothwell
2013-05-22 13:24 ` Emilio López
2013-05-22 19:26   ` David Miller
2013-05-22 23:57     ` [PATCH 1/3] net: ethernet: apple: drop unused variable Emilio López
2013-05-22 23:57       ` [PATCH 2/3] net: ethernet: korina: " Emilio López
2013-05-23  6:43         ` David Miller
2013-05-22 23:57       ` [PATCH 3/3] net: ethernet: sun: " Emilio López
2013-05-23  6:43         ` David Miller
2013-05-23 12:54           ` Emilio López
2013-05-23 19:13             ` David Miller
2013-05-23  6:43       ` [PATCH 1/3] net: ethernet: apple: " David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.