Commit 4a66a82b authored by Ingo Molnar's avatar Ingo Molnar

Merge branches 'tracing/blktrace', 'tracing/kmemtrace' and 'tracing/urgent' into tracing/core

...@@ -139,12 +139,12 @@ kmemtrace_print_alloc_compress(struct trace_iterator *iter, ...@@ -139,12 +139,12 @@ kmemtrace_print_alloc_compress(struct trace_iterator *iter,
return TRACE_TYPE_PARTIAL_LINE; return TRACE_TYPE_PARTIAL_LINE;
/* Requested */ /* Requested */
ret = trace_seq_printf(s, "%4ld ", entry->bytes_req); ret = trace_seq_printf(s, "%4zd ", entry->bytes_req);
if (!ret) if (!ret)
return TRACE_TYPE_PARTIAL_LINE; return TRACE_TYPE_PARTIAL_LINE;
/* Allocated */ /* Allocated */
ret = trace_seq_printf(s, "%4ld ", entry->bytes_alloc); ret = trace_seq_printf(s, "%4zd ", entry->bytes_alloc);
if (!ret) if (!ret)
return TRACE_TYPE_PARTIAL_LINE; return TRACE_TYPE_PARTIAL_LINE;
......
...@@ -244,7 +244,7 @@ static inline int test_time_stamp(u64 delta) ...@@ -244,7 +244,7 @@ static inline int test_time_stamp(u64 delta)
return 0; return 0;
} }
#define BUF_PAGE_SIZE (PAGE_SIZE - sizeof(struct buffer_data_page)) #define BUF_PAGE_SIZE (PAGE_SIZE - offsetof(struct buffer_data_page, data))
/* /*
* head_page == tail_page && head == tail then buffer is empty. * head_page == tail_page && head == tail then buffer is empty.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment