linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] drivers: staging: remove last usage of NIPQUAD and NIP6 in gdm72xx
@ 2012-11-27  2:37 Shan Wei
  2012-11-27 17:19 ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Shan Wei @ 2012-11-27  2:37 UTC (permalink / raw)
  To: Greg KH, benchan, syahn, devel, pstew, devel, joe; +Cc: Kernel-Maillist

From: Shan Wei <davidshan@tencent.com>

commit cf4ca4874fc45 removed the definition of NIPQUAD and NIPQUAD_FMT,
and NIP6 also is out of date.

Because DEBUG_SDU is not defined in gdm_wimax.h, no error message when compiling
this code. And remove constant condition judge.


Signed-off-by: Shan Wei <davidshan@tencent.com>
---
V3:
   As suggestion of greg k-h's patch email bot, recreate this patch base on greg's staging tree,
   v2 is on David Miller's net-next tree.
---
 drivers/staging/gdm72xx/gdm_wimax.c |   10 +---------
 1 files changed, 1 insertions(+), 9 deletions(-)

diff --git a/drivers/staging/gdm72xx/gdm_wimax.c b/drivers/staging/gdm72xx/gdm_wimax.c
index 6cb8107..c0ec4d0 100644
--- a/drivers/staging/gdm72xx/gdm_wimax.c
+++ b/drivers/staging/gdm72xx/gdm_wimax.c
@@ -166,21 +166,13 @@ static void dump_eth_packet(const char *title, u8 *data, int len)
 		get_ip_protocol_name(ip_protocol),
 		get_port_name(port));
 
-	#if 1
 	if (!(data[0] == 0xff && data[1] == 0xff)) {
 		if (protocol == ETH_P_IP) {
-			printk(KERN_DEBUG "     src=%u.%u.%u.%u\n",
-				NIPQUAD(ih->saddr));
+			printk(KERN_DEBUG "     src=%pI4\n", &ih->saddr);
 		} else if (protocol == ETH_P_IPV6) {
-			#ifdef NIP6
-			printk(KERN_DEBUG "     src=%x:%x:%x:%x:%x:%x:%x:%x\n",
-				NIP6(ih->saddr));
-			#else
 			printk(KERN_DEBUG "     src=%pI6\n", &ih->saddr);
-			#endif
 		}
 	}
-	#endif
 
 	#if (DUMP_PACKET & DUMP_SDU_ALL)
 	printk_hex(data, len);
-- 
1.7.1


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

* Re: [PATCH v3] drivers: staging: remove last usage of NIPQUAD and NIP6 in gdm72xx
  2012-11-27  2:37 [PATCH v3] drivers: staging: remove last usage of NIPQUAD and NIP6 in gdm72xx Shan Wei
@ 2012-11-27 17:19 ` Greg KH
  2012-11-28  2:54   ` [PATCH v4] " Shan Wei
  0 siblings, 1 reply; 3+ messages in thread
From: Greg KH @ 2012-11-27 17:19 UTC (permalink / raw)
  To: Shan Wei; +Cc: benchan, syahn, devel, pstew, joe, Kernel-Maillist

On Tue, Nov 27, 2012 at 10:37:46AM +0800, Shan Wei wrote:
> From: Shan Wei <davidshan@tencent.com>
> 
> commit cf4ca4874fc45 removed the definition of NIPQUAD and NIPQUAD_FMT,
> and NIP6 also is out of date.
> 
> Because DEBUG_SDU is not defined in gdm_wimax.h, no error message when compiling
> this code. And remove constant condition judge.
> 
> 
> Signed-off-by: Shan Wei <davidshan@tencent.com>
> ---
> V3:
>    As suggestion of greg k-h's patch email bot, recreate this patch base on greg's staging tree,
>    v2 is on David Miller's net-next tree.

Are you sure you got the right branch?  This does not apply to my
staging-next branch of the staging.git tree, what did you use?

thanks,

greg k-h

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

* Re: [PATCH v4] drivers: staging: remove last usage of NIPQUAD and NIP6 in gdm72xx
  2012-11-27 17:19 ` Greg KH
@ 2012-11-28  2:54   ` Shan Wei
  0 siblings, 0 replies; 3+ messages in thread
From: Shan Wei @ 2012-11-28  2:54 UTC (permalink / raw)
  To: Greg KH, macpaul.from.taiwan
  Cc: benchan, syahn, devel, pstew, joe, Kernel-Maillist, Shan Wei

Greg KH said, at 2012/11/28 1:19:
> On Tue, Nov 27, 2012 at 10:37:46AM +0800, Shan Wei wrote:
>> From: Shan Wei <davidshan@tencent.com>
>>
>> commit cf4ca4874fc45 removed the definition of NIPQUAD and NIPQUAD_FMT,
>> and NIP6 also is out of date.
>>
>> Because DEBUG_SDU is not defined in gdm_wimax.h, no error message when compiling
>> this code. And remove constant condition judge.
>>
>>
>> Signed-off-by: Shan Wei <davidshan@tencent.com>
>> ---
>> V3:
>>    As suggestion of greg k-h's patch email bot, recreate this patch base on greg's staging tree,
>>    v2 is on David Miller's net-next tree.
> 
> Are you sure you got the right branch?  This does not apply to my
> staging-next branch of the staging.git tree, what did you use?

Just create the patch base on you master of the staging.git, not the staging-next branch.
(It's different from David Miller, who has individual git tree for next development. :-( )

-------------------------------------------------------------

>From 0b48de95a28f68f6d32f25b77ecc006a9d8a94b9 Mon Sep 17 00:00:00 2001
From: Shan Wei <davidshan@tencent.com>
Date: Wed, 28 Nov 2012 10:45:00 +0800
Subject: [PATCH staging-next v4] drivers: staging: use %pI4 format to print IPv4 address and remove last usage of NIP6

commit cf4ca4874fc45 removed the definition of NIPQUAD and NIPQUAD_FMT,
and NIP6 also is out of date.

commit 2874762b31d8d replace deprecated NIPQUAD marco to C code, but we can use %pI4 to
print IPv4 address more simply. And remove constant condition judge.

Because DEBUG_SDU is not defined in gdm_wimax.h, no error message when compiling. 


Signed-off-by: Shan Wei <davidshan@tencent.com>
---
 drivers/staging/gdm72xx/gdm_wimax.c |   13 +------------
 1 files changed, 1 insertions(+), 12 deletions(-)

diff --git a/drivers/staging/gdm72xx/gdm_wimax.c b/drivers/staging/gdm72xx/gdm_wimax.c
index c302769..41efbee 100644
--- a/drivers/staging/gdm72xx/gdm_wimax.c
+++ b/drivers/staging/gdm72xx/gdm_wimax.c
@@ -168,24 +168,13 @@ static void dump_eth_packet(const char *title, u8 *data, int len)
 		get_ip_protocol_name(ip_protocol),
 		get_port_name(port));
 
-	#if 1
 	if (!(data[0] == 0xff && data[1] == 0xff)) {
 		if (protocol == ETH_P_IP) {
-			printk(KERN_DEBUG "     src=%u.%u.%u.%u\n",
-				((unsigned char *)&(ih->saddr))[0],
-				((unsigned char *)&(ih->saddr))[1],
-				((unsigned char *)&(ih->saddr))[2],
-				((unsigned char *)&(ih->saddr))[3]);
+			printk(KERN_DEBUG "     src=%pI4\n", &ih->saddr);
 		} else if (protocol == ETH_P_IPV6) {
-			#ifdef NIP6
-			printk(KERN_DEBUG "     src=%x:%x:%x:%x:%x:%x:%x:%x\n",
-				NIP6(ih->saddr));
-			#else
 			printk(KERN_DEBUG "     src=%pI6\n", &ih->saddr);
-			#endif
 		}
 	}
-	#endif
 
 	#if (DUMP_PACKET & DUMP_SDU_ALL)
 	printk_hex(data, len);
-- 
1.7.1



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

end of thread, other threads:[~2012-11-28  2:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-27  2:37 [PATCH v3] drivers: staging: remove last usage of NIPQUAD and NIP6 in gdm72xx Shan Wei
2012-11-27 17:19 ` Greg KH
2012-11-28  2:54   ` [PATCH v4] " Shan Wei

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).