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=-5.3 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 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 1C270C43603 for ; Tue, 17 Dec 2019 23:21:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E58DB2176D for ; Tue, 17 Dec 2019 23:21:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726582AbfLQXVx (ORCPT ); Tue, 17 Dec 2019 18:21:53 -0500 Received: from www62.your-server.de ([213.133.104.62]:40852 "EHLO www62.your-server.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726561AbfLQXVx (ORCPT ); Tue, 17 Dec 2019 18:21:53 -0500 Received: from sslproxy01.your-server.de ([88.198.220.130]) by www62.your-server.de with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.89_1) (envelope-from ) id 1ihM9w-000678-W7; Wed, 18 Dec 2019 00:21:45 +0100 Received: from [178.197.249.31] (helo=pc-9.home) by sslproxy01.your-server.de with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.89) (envelope-from ) id 1ihM9w-0005Ir-5Q; Wed, 18 Dec 2019 00:21:44 +0100 Subject: Re: [PATCH bpf-next] libbpf: Fix libbpf_common.h when installing libbpf through 'make install' To: Yonghong Song , =?UTF-8?Q?Toke_H=c3=b8iland-J=c3=b8rgensen?= , Alexei Starovoitov Cc: "netdev@vger.kernel.org" , "bpf@vger.kernel.org" References: <20191217112810.768078-1-toke@redhat.com> From: Daniel Borkmann Message-ID: <7e88179c-155e-ce8c-4641-debad4ca0631@iogearbox.net> Date: Wed, 18 Dec 2019 00:21:43 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.7.2 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-Authenticated-Sender: daniel@iogearbox.net X-Virus-Scanned: Clear (ClamAV 0.101.4/25666/Tue Dec 17 10:54:52 2019) Sender: bpf-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: bpf@vger.kernel.org On 12/17/19 10:58 PM, Yonghong Song wrote: > On 12/17/19 3:28 AM, Toke Høiland-Jørgensen wrote: >> This fixes two issues with the newly introduced libbpf_common.h file: >> >> - The header failed to include for the definition of memset() >> - The new file was not included in the install_headers rule in the Makefile >> >> Both of these issues cause breakage when installing libbpf with 'make >> install' and trying to use it in applications. >> >> Fixes: 544402d4b493 ("libbpf: Extract common user-facing helpers") >> Signed-off-by: Toke Høiland-Jørgensen > > Acked-by: Yonghong Song Applied, thanks!