[PATCH 0/5] Beginnings of skb_frag -> bio_vec conversion

2019-04-30 Thread Matthew Wilcox
From: "Matthew Wilcox (Oracle)" It turns out there's a lot of accessors for the skb_frag, which would make this conversion really easy if some drivers didn't bypass them. This is what I've done so far; my laptop's not really beefy enough to cope with changing skbuff.h too often ;-) This would be

read and get back to me

2019-04-30 Thread Mr Anbrose Fred
-- Greetings I wonder why you continue neglecting my emails. Please, acknowledge the receipt of this message in reference to the subject above as I intend to send to you the details of the project. Sometimes, try to check your spam box because most of these correspondences fall out sometimes

[RFC PATCH bpf-next 2/3] tools/bpf: sync bpf uapi header bpf.h

2019-04-30 Thread Yonghong Song
sync bpf uapi header bpf.h to tools directory. Signed-off-by: Yonghong Song --- tools/include/uapi/linux/bpf.h | 15 ++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/tools/include/uapi/linux/bpf.h b/tools/include/uapi/linux/bpf.h index 72336bac7573..e3e824848335 1006

[RFC PATCH bpf-next 1/3] bpf: implement bpf_send_signal() helper

2019-04-30 Thread Yonghong Song
This patch tries to solve the following specific use case. Currently, bpf program can already collect stack traces when certain events happens (e.g., cache miss counter or cpu clock counter overflows). These stack traces can be used for performance analysis. For jitted programs, e.g., hhvm (jited

[RFC PATCH bpf-next 0/3] implement bpf_send_signal() helper

2019-04-30 Thread Yonghong Song
Currently, bpf program can already collect stack traces when certain events happens (e.g., cache miss counter or cpu clock counter overflows). These stack traces can be used for performance analysis. For jitted programs, e.g., hhvm (jited php), it is very hard to get the true stack trace in the bpf

[RFC PATCH bpf-next 3/3] tools/bpf: add a selftest for bpf_send_signal() helper

2019-04-30 Thread Yonghong Song
The test covered both nmi and tracepoint perf events. $ ./test_send_signal_user test_send_signal (tracepoint): OK test_send_signal (perf_event): OK Signed-off-by: Yonghong Song --- tools/testing/selftests/bpf/Makefile | 5 +- tools/testing/selftests/bpf/bpf_helpers.h | 2 +

<    1   2