diff options
author | Arnd Bergmann <arnd@arndb.de> | 2016-07-14 12:37:29 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-07-15 08:16:05 +0300 |
commit | caeccd5180930eb8586771bb1935f4f2e456a8e8 (patch) | |
tree | 6ee00ec30ed04dca3ed309e8082bb443b3242733 /include/trace | |
parent | 0e1824c98a0ffd7fd9ffb2a3da01ec49ff1348a2 (diff) | |
download | linux-caeccd5180930eb8586771bb1935f4f2e456a8e8.tar.xz |
devlink: fix trace format string
Including devlink.h on ARM and probably other 32-bit architectures results in
a harmless warning:
In file included from ../include/trace/define_trace.h:95:0,
from ../include/trace/events/devlink.h:51,
from ../net/core/devlink.c:30:
include/trace/events/devlink.h: In function 'trace_raw_output_devlink_hwmsg':
include/trace/events/devlink.h:42:12: error: format '%lu' expects argument of type 'long unsigned int', but argument 10 has type 'size_t {aka unsigned int}' [-Werror=format=]
The correct format string for 'size_t' is %zu, not %lu, this works on all
architectures.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: e5224f0fe2ac ("devlink: add hardware messages tracing facility")
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/trace')
-rw-r--r-- | include/trace/events/devlink.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/trace/events/devlink.h b/include/trace/events/devlink.h index 77dce71df42a..09f1df228f2c 100644 --- a/include/trace/events/devlink.h +++ b/include/trace/events/devlink.h @@ -39,7 +39,7 @@ TRACE_EVENT(devlink_hwmsg, __entry->len = len; ), - TP_printk("bus_name=%s dev_name=%s driver_name=%s incoming=%d type=%lu buf=0x[%*phD] len=%lu", + TP_printk("bus_name=%s dev_name=%s driver_name=%s incoming=%d type=%lu buf=0x[%*phD] len=%zu", __get_str(bus_name), __get_str(dev_name), __get_str(driver_name), __entry->incoming, __entry->type, (int) __entry->len, __get_dynamic_array(buf), __entry->len) |