From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E341EC28D18 for ; Thu, 6 Jun 2019 00:19:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C14E52083E for ; Thu, 6 Jun 2019 00:19:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726642AbfFFATw (ORCPT ); Wed, 5 Jun 2019 20:19:52 -0400 Received: from www62.your-server.de ([213.133.104.62]:35100 "EHLO www62.your-server.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726573AbfFFATw (ORCPT ); Wed, 5 Jun 2019 20:19:52 -0400 Received: from [78.46.172.3] (helo=sslproxy06.your-server.de) by www62.your-server.de with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1hYg8D-0006b8-Qe; Thu, 06 Jun 2019 02:19:49 +0200 Received: from [178.197.249.21] (helo=linux.home) by sslproxy06.your-server.de with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.89) (envelope-from ) id 1hYg8D-000LUS-JF; Thu, 06 Jun 2019 02:19:49 +0200 Subject: Re: [PATCH bpf 1/2] bpf: fix unconnected udp hooks To: Alexei Starovoitov Cc: Martin Lau , Andrey Ignatov , "bpf@vger.kernel.org" , "netdev@vger.kernel.org" , Martynas Pumputis References: <3d59d0458a8a3a050d24f81e660fcccde3479a05.1559767053.git.daniel@iogearbox.net> <20190605235451.lqas2jgbur2sre4z@kafai-mbp.dhcp.thefacebook.com> From: Daniel Borkmann Message-ID: Date: Thu, 6 Jun 2019 02:19:48 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Authenticated-Sender: daniel@iogearbox.net X-Virus-Scanned: Clear (ClamAV 0.100.3/25471/Wed Jun 5 10:12:21 2019) Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On 06/06/2019 02:13 AM, Alexei Starovoitov wrote: > On Wed, Jun 5, 2019 at 5:09 PM Daniel Borkmann wrote: >> >>>> tools/bpf/bpftool/cgroup.c | 5 ++++- >>>> tools/include/uapi/linux/bpf.h | 2 ++ >>> Should the bpf.h sync to tools/ be in a separate patch? >> >> I was thinking about it, but concluded for such small change, it's not >> really worth it. If there's a strong opinion, I could do it, but I think >> that 2-liner sync patch just adds noise. > > it's not about the size. It breaks the sync of libbpf. > we should really enforce user vs kernel to be separate patches. Okay, I see. Fair enough, I'll split them in that case. Thanks, Daniel