From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752192AbbC1RVw (ORCPT ); Sat, 28 Mar 2015 13:21:52 -0400 Received: from mail-ie0-f178.google.com ([209.85.223.178]:36063 "EHLO mail-ie0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750855AbbC1RVv (ORCPT ); Sat, 28 Mar 2015 13:21:51 -0400 Message-ID: <5516E32B.6030502@plumgrid.com> Date: Sat, 28 Mar 2015 10:21:47 -0700 From: Alexei Starovoitov User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: He Kuang CC: wangnan0@huawei.com, LKML Subject: Re: [RFC] bpf: Suggestion on bpf syscall interface References: <55169240.7040103@huawei.com> In-Reply-To: <55169240.7040103@huawei.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 3/28/15 4:36 AM, He Kuang wrote: > Hi, Alexei > > In our end-end IO module project, we use bpf maps to record > configurations. According to current bpf syscall interface, we > should specify map_fd to lookup/update bpf maps, so we are > restricted to do config in the same user program. you can pass map_fd and prog_fd from one process to another via normal scm_rights mechanism. > My suggestion is to export this kind of operations to sysfs, so > we can load&attach bpf progs and config it seperately. We > implement this feature in our demo project. What's your opinion > on this? Eventually we may use single sysfs file for lsmod-like listings, but I definitely don't want to create parallel interface to maps via sysfs. It's way too expensive and not really suitable for binary key/values.