Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754324AbbERSxG (ORCPT ); Mon, 18 May 2015 14:53:06 -0400 Received: from mail-ig0-f174.google.com ([209.85.213.174]:33061 "EHLO mail-ig0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753310AbbERSxC (ORCPT ); Mon, 18 May 2015 14:53:02 -0400 Message-ID: <555A350B.1030107@plumgrid.com> Date: Mon, 18 May 2015 11:52:59 -0700 From: Alexei Starovoitov User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: Wang Nan , paulus@samba.org, a.p.zijlstra@chello.nl, mingo@redhat.com, acme@kernel.org, namhyung@kernel.org, jolsa@kernel.org, dsahern@gmail.com, daniel@iogearbox.net, brendan.d.gregg@gmail.com, masami.hiramatsu.pt@hitachi.com CC: lizefan@huawei.com, linux-kernel@vger.kernel.org, pi3orama@163.com Subject: Re: [RFC PATCH v3 23/37] bpf tools: Introduce bpf_load_program() to bpf.c References: <1431860222-61636-1-git-send-email-wangnan0@huawei.com> <1431860222-61636-24-git-send-email-wangnan0@huawei.com> In-Reply-To: <1431860222-61636-24-git-send-email-wangnan0@huawei.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1198 Lines: 39 On 5/17/15 3:56 AM, Wang Nan wrote: > bpf_load_program() can be used to load bpf program into kernel. To make > loading faster, first try to load without logbuf. Try again with logbuf > if the first try failed. > > Signed-off-by: Wang Nan ... > + attr.insn_cnt = (__u32)insns_cnt; > + attr.insns = ptr_to_u64((void *) insns); > + attr.license = ptr_to_u64((void *) license); unnecessary casts? > + attr.log_buf = ptr_to_u64(NULL); > + attr.log_size = 0; > + attr.log_level = 0; > + attr.kern_version = kern_version; > + > + fd = sys_bpf(BPF_PROG_LOAD, &attr, sizeof(attr)); > + if ((fd >= 0) || !log_buf || !log_buf_sz) unnecessary () > + return fd; > + > + /* Try again with log */ > + attr.log_buf = ptr_to_u64(log_buf); > + attr.log_size = log_buf_sz; > + attr.log_level = 1; > + log_buf[0] = 0; > + return sys_bpf(BPF_PROG_LOAD, &attr, sizeof(attr)); this part looks good. thank you for addressing the feedback from v1. -- 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/