From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jesper Dangaard Brouer Subject: Re: [bpf-next PATCH 1/3] bpf: add id to map tracepoint Date: Thu, 19 Apr 2018 11:08:45 +0200 Message-ID: <20180419110845.4da4769a@redhat.com> References: <152406544226.3465.948692097697975172.stgit@localhost.localdomain> <152406544797.3465.16927588919039069579.stgit@localhost.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: netdev@vger.kernel.org, ast@kernel.org, daniel@iogearbox.net, mingo@redhat.com, rostedt@goodmis.org, fulvio.risso@polito.it, brouer@redhat.com To: Sebastiano Miano Return-path: Received: from mx3-rdu2.redhat.com ([66.187.233.73]:60708 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750858AbeDSJIu (ORCPT ); Thu, 19 Apr 2018 05:08:50 -0400 In-Reply-To: <152406544797.3465.16927588919039069579.stgit@localhost.localdomain> Sender: netdev-owner@vger.kernel.org List-ID: On Wed, 18 Apr 2018 17:30:48 +0200 Sebastiano Miano wrote: > This patch adds the map id to the bpf tracepoints > that can be used when monitoring or inspecting map > related functions. > > Signed-off-by: Sebastiano Miano > Suggested-by: Jesper Dangaard Brouer Acked-by: Jesper Dangaard Brouer Thanks you for doing this. I've needed this before when troubleshooting my XDP programs (specifically xdp_ddos01_blacklist[1]). E.g. when I want to verify that my tools are doing the right thing, I can now find the XDP prog id via 'ip link' or bpftool, and list the map IDs used by the prog tool (via bpftool), and now use perf to record map changes, which now have the needed IDs I can filter on. Before, I could not tell the difference if the program was updating the correct map (which were a mistake I ran into). Perf record even support supplying filters on the cmdline, like: perf record -e bpf:bpf_map_* -a --filter 'id == 2 || id == 1' sleep 100 And yes, doing filtering this way is slow, compared to doing it via a bpf_prog inside the kernel, which Sebastiano already provide a sample on howto do. But I just needed a way to find the bug in my program, not any high speed usage. -- Best regards, Jesper Dangaard Brouer MSc.CS, Principal Kernel Engineer at Red Hat LinkedIn: http://www.linkedin.com/in/brouer [1] https://github.com/netoptimizer/prototype-kernel/blob/master/kernel/samples/bpf/xdp_ddos01_blacklist_cmdline.c