Re: [RFC v2 1/2] dynamic debug: add dynamic_hexdump_debug macro

From: Joe Perches
Date: Tue Mar 01 2011 - 00:25:44 EST


On Mon, 2011-02-28 at 21:06 -0800, Bing Zhao wrote:
> dynamic_hexdump_debug(str, buf, len)

> diff --git a/include/linux/dynamic_debug.h b/include/linux/dynamic_debug.h
> +#define dynamic_hexdump_debug(str, buf, len) \
> +do { \
> + static struct _ddebug descriptor \
> + __used \
> + __attribute__((section("__verbose"), aligned(8))) = \
> + { KBUILD_MODNAME, __func__, __FILE__, str, __LINE__, \
> + _DPRINTK_FLAGS_DEFAULT }; \
> + if (unlikely(descriptor.enabled)) { \
> + printk(KERN_DEBUG str); \
> + print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, buf, len); \

Perhaps
print_hex_dump(str, DUMP_PREFIX_OFFSET, buf, len);

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/