Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753432AbbGVWML (ORCPT ); Wed, 22 Jul 2015 18:12:11 -0400 Received: from mail-pa0-f53.google.com ([209.85.220.53]:36607 "EHLO mail-pa0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751756AbbGVWMI (ORCPT ); Wed, 22 Jul 2015 18:12:08 -0400 Subject: Re: Draft 3 of bpf(2) man page for review To: "Michael Kerrisk (man-pages)" , Daniel Borkmann References: <55AFE46F.3090800@gmail.com> <55AFED75.2030208@plumgrid.com> <55AFF8BF.3050204@gmail.com> Cc: linux-man , linux-kernel@vger.kernel.org, Silvan Jegen , Walter Harms From: Alexei Starovoitov Message-ID: <55B01535.4080809@plumgrid.com> Date: Wed, 22 Jul 2015 15:12:05 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:38.0) Gecko/20100101 Thunderbird/38.0.1 MIME-Version: 1.0 In-Reply-To: <55AFF8BF.3050204@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2029 Lines: 40 On 7/22/15 1:10 PM, Michael Kerrisk (man-pages) wrote: > BPF maps are a generic data structure for storage of different > data types. A user process can create multiple maps (with > key/value-pairs being opaque bytes of data) and access them via > file descriptors. Differnt eBPF programs can access the same > maps in parallel. It's up to the user process and eBPF program > to decide what they store inside maps. typo in 'Different' > eBPF program types > By picking prog_type, the program author selects a set of helper > functions that can be called from the eBPF program and the corre‐ > sponding format of struct bpf_context (which is the data blob > passed into the eBPF program as the first argument). For exam‐ > ple, programs loaded with a prog_type of > BPF_PROG_TYPE_SOCKET_FILTER may call the bpf_map_lookup_elem() > helper, whereas some other program types may not be able to > employ this helper. The set of functions available to eBPF pro‐ > grams of a given type may increase in the future. overall it's all correct, but today bpf_map_lookup_elem() is allowed for all program types. May be change that to: "BPF_PROG_TYPE_KPROBE may call the bpf_probe_read() helper" since only type_kprobe programs can call it. type_sockets/type_sched_* cannot. > The bpf_context argument is a pointer to a struct sk_buff. > Programs cannot access the fields of sk_buff directly. Probably drop last sentence and replace 'sk_buff' with '__sk_buff' in the first? Or for the first version we can drop both sentences. The rest looks great. Thank you much! -- 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/