On Thu, 2009-08-13 at 14:39 -0400, Chuck Lever wrote:
I suppose ipv6_addr_v4mapped(addr) could be tested instead
Perhaps this on top of last:
diff --git a/lib/vsprintf.c b/lib/vsprintf.c
index dd02842..7ce34a7 100644
--- a/lib/vsprintf.c
+++ b/lib/vsprintf.c
@@ -25,6 +25,7 @@
#include <linux/kallsyms.h>
#include <linux/uaccess.h>
#include <linux/ioport.h>
+#include <net/ipv6.h>
#include <asm/page.h> /* for PAGE_SIZE */
#include <asm/div64.h>
@@ -701,7 +702,7 @@ static char *ip6_compressed_string(char *buf, char *end, u8 *addr,
u16 *addr16 = (u16 *)addr;
ip6_colon_t colon = DC_START;
- if (fmt[3] == '4') { /* use :: and ipv4 */
+ if (ipv6_addr_v4mapped((const struct in6_addr *)addr)) {
for (i = 0; i < 6; i++) {
p = ip6_compress_u16(p, addr16[i], addr16[i+1],
&colon, &needcolon);
@@ -832,8 +833,7 @@ static char *pointer(const char *fmt, char *buf, char *end, void *ptr,
* Formatted IP supported
* 4: 001.002.003.004
* 6: 0001:0203:...:0708
- * 6c: 1::708
- * 6c4: 1::1.2.3.4
+ * 6c: 1::708 or 1::1.2.3.4
*/
case 'I': /* Contiguous: */
if (fmt[1] == '4' || fmt[1] == '6')
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html