Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1252445

[PATCH net-next 1/3] perf: pad raw data samples automatically

From Alexei Starovoitov <ast@plumgrid.com>
Newsgroups linux.kernel
Subject [PATCH net-next 1/3] perf: pad raw data samples automatically
Date 2015-10-21 05:10 +0200
Message-ID <qlRWO-706-17@gated-at.bofh.it> (permalink)
References <qlRWN-706-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Instead of WARN_ON in perf_event_output() on unpaded raw samples,
pad them automatically.

Signed-off-by: Alexei Starovoitov <ast@kernel.org>
---
 kernel/events/core.c |   15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/kernel/events/core.c b/kernel/events/core.c
index b11756f9b6dc..64754bfecd70 100644
--- a/kernel/events/core.c
+++ b/kernel/events/core.c
@@ -5286,9 +5286,15 @@ void perf_output_sample(struct perf_output_handle *handle,
 
 	if (sample_type & PERF_SAMPLE_RAW) {
 		if (data->raw) {
-			perf_output_put(handle, data->raw->size);
-			__output_copy(handle, data->raw->data,
-					   data->raw->size);
+			u32 raw_size = data->raw->size;
+			u32 real_size = round_up(raw_size + sizeof(u32),
+						 sizeof(u64)) - sizeof(u32);
+			u64 zero = 0;
+
+			perf_output_put(handle, real_size);
+			__output_copy(handle, data->raw->data, raw_size);
+			if (real_size - raw_size)
+				__output_copy(handle, &zero, real_size - raw_size);
 		} else {
 			struct {
 				u32	size;
@@ -5420,8 +5426,7 @@ void perf_prepare_sample(struct perf_event_header *header,
 		else
 			size += sizeof(u32);
 
-		WARN_ON_ONCE(size & (sizeof(u64)-1));
-		header->size += size;
+		header->size += round_up(size, sizeof(u64));
 	}
 
 	if (sample_type & PERF_SAMPLE_BRANCH_STACK) {
-- 
1.7.9.5

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

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH net-next 0/3] bpf_perf_event_output helper Alexei Starovoitov <ast@plumgrid.com> - 2015-10-21 05:10 +0200
  [PATCH net-next 3/3] samples: bpf: add bpf_perf_event_output example Alexei Starovoitov <ast@plumgrid.com> - 2015-10-21 05:10 +0200
  [PATCH net-next 1/3] perf: pad raw data samples automatically Alexei Starovoitov <ast@plumgrid.com> - 2015-10-21 05:10 +0200
  Re: [PATCH net-next 0/3] bpf_perf_event_output helper David Miller <davem@davemloft.net> - 2015-10-22 15:30 +0200

csiph-web