diff --git a/[refs] b/[refs] index 21cade4476e4..d872a16d7cad 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 4a80b24bb2ec66a5cb7fa5ff8335907f09288200 +refs/heads/master: 73cd6af0413225b0ada8b8881c3e0cfd26506dfa diff --git a/trunk/include/linux/kmemtrace.h b/trunk/include/linux/kmemtrace.h index 2c332010cb4e..5bea8ead6a6b 100644 --- a/trunk/include/linux/kmemtrace.h +++ b/trunk/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,