aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/kmemtrace.h
diff options
context:
space:
mode:
authorEduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>2008-08-19 20:43:24 +0300
committerPekka Enberg <penberg@cs.helsinki.fi>2008-12-29 15:34:11 +0200
commit73cd6af0413225b0ada8b8881c3e0cfd26506dfa (patch)
treec08f2d9baf76e3786634d4a0ee6af21cfcf97300 /include/linux/kmemtrace.h
parentkmemtrace: Fix typos in documentation. (diff)
downloadlinux-dev-73cd6af0413225b0ada8b8881c3e0cfd26506dfa.tar.xz
linux-dev-73cd6af0413225b0ada8b8881c3e0cfd26506dfa.zip
kmemtrace: Better alternative to "kmemtrace: fix printk format warnings".
Fix the problem "kmemtrace: fix printk format warnings" attempted to fix, but resulted in marker-probe format mismatch warnings. Instead of carrying size_t into probes, we get rid of it by casting to unsigned long, just as we did with gfp_t. This way, we don't need to change marker format strings and we don't have to rely on other format specifiers like "%zu", making for consistent use of more generic data types (since there are no format specifiers for gfp_t, for example). Signed-off-by: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro> Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Diffstat (limited to 'include/linux/kmemtrace.h')
-rw-r--r--include/linux/kmemtrace.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/kmemtrace.h b/include/linux/kmemtrace.h
index 2c332010cb4e..5bea8ead6a6b 100644
--- a/include/linux/kmemtrace.h
+++ b/include/linux/kmemtrace.h
@@ -33,7 +33,8 @@ static inline void kmemtrace_mark_alloc_node(enum kmemtrace_type_id type_id,
trace_mark(kmemtrace_alloc, "type_id %d call_site %lu ptr %lu "
"bytes_req %lu bytes_alloc %lu gfp_flags %lu node %d",
type_id, call_site, (unsigned long) ptr,
- bytes_req, bytes_alloc, (unsigned long) gfp_flags, node);
+ (unsigned long) bytes_req, (unsigned long) bytes_alloc,
+ (unsigned long) gfp_flags, node);
}
static inline void kmemtrace_mark_free(enum kmemtrace_type_id type_id,