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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id EBDC1C433EF for ; Thu, 21 Apr 2022 00:38:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1383443AbiDUAlg (ORCPT ); Wed, 20 Apr 2022 20:41:36 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37116 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234457AbiDUAlg (ORCPT ); Wed, 20 Apr 2022 20:41:36 -0400 Received: from mail-40133.protonmail.ch (mail-40133.protonmail.ch [185.70.40.133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8147D1FCDA for ; Wed, 20 Apr 2022 17:38:48 -0700 (PDT) Date: Thu, 21 Apr 2022 00:38:39 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pm.me; s=protonmail2; t=1650501526; bh=4GTttWDfJYdIyN4JnjdzUqDEPsjVASx62ghec4ZucVs=; h=Date:To:From:Cc:Reply-To:Subject:Message-ID:Feedback-ID:From:To: Cc:Date:Subject:Reply-To:Feedback-ID:Message-ID; b=qL5dFXPhkh57Vcc1BrM9Ufz2NB2toIFkmiwNvdOBmQsiUPPnyoYvsxUXix28fbFrn 7fKeW20kIYi4WGviDH1bM4V3gw6Y/Hpitp/AyzKDGg5yVoR9LpBj9/2uqsGfF9gws8 +ZDJ2I+Pn0fXdvyj/UU/fko/SQyA4tUjagb+pGCOCxU5E52oa9q9OcNcOIEanXAXuO 3WoHGAE1Gw8qH37qvBFyhyhBk/GLO1+baJZ1P24XxTukwvBnF5oB74vqh+UDBHDca5 iq5jbD1qeYj1Nd6cMoPDz2YwQzO/iSP/OQL6XO0MIl66HhkyPKu9CWfSnW7eeE30W9 PrjYR3TxdJs5A== To: Alexei Starovoitov , Daniel Borkmann , Andrii Nakryiko From: Alexander Lobakin Cc: Alexander Lobakin , Maciej Fijalkowski , Song Liu , Kumar Kartikeya Dwivedi , bpf@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Reply-To: Alexander Lobakin Subject: [PATCH v2 bpf 00/11] bpf: random unpopular userspace fixes (32 bit et al) Message-ID: <20220421003152.339542-1-alobakin@pm.me> Feedback-ID: 22809121:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: bpf@vger.kernel.org This mostly issues the cross build (1) errors for 32 bit (2) MIPS (3) with minimal configuration (4) on Musl (5). The majority of them aren't yesterday's, so it is a "who does need it outside of x86_64 or ARM64?" moment again. Trivial stuff in general, not counting the first three (they are 50/50). >From v1[0]: - use *___local struct definitions for BPF programs instead of BTF_TYPE_EMIT() and ifdef-play (Andrii); - cast uin64_t to unsigned long long to *really* fix the format literal warnings (Song, David, Andrii); - collect Acked-bys for the rest (Maciej, Kumar, Song); - adjust the subjects to match their usual look (Andrii); - expand the commit messages a bit for 0008 (-Wshift-count-overflow) and 0010 (-Wsequence-point) a bit to mention they actually mitigate the third-party issues (Andrii); - rebase and send to bpf instead of bpf-next (hope the first three are okay for it). [0] https://lore.kernel.org/bpf/20220414223704.341028-1-alobakin@pm.me Alexander Lobakin (11): bpftool: use a local copy of perf_event to fix accessing ::bpf_cookie bpftool: define a local bpf_perf_link to fix accessing its fields bpftool: use a local bpf_perf_event_value to fix accessing its fields bpftool: fix fcntl.h include samples/bpf: add 'asm/mach-generic' include path for every MIPS samples/bpf: use host bpftool to generate vmlinux.h, not target samples/bpf: fix uin64_t format literals samples/bpf: fix false-positive right-shift underflow warnings samples/bpf: fix include order for non-Glibc environments samples/bpf: fix -Wsequence-point samples/bpf: xdpsock: fix -Wmaybe-uninitialized samples/bpf/Makefile | 7 +++--- samples/bpf/cookie_uid_helper_example.c | 12 +++++----- samples/bpf/lathist_kern.c | 2 +- samples/bpf/lwt_len_hist_kern.c | 2 +- samples/bpf/lwt_len_hist_user.c | 7 +++--- samples/bpf/task_fd_query_user.c | 2 +- samples/bpf/test_lru_dist.c | 3 ++- samples/bpf/tracex2_kern.c | 2 +- samples/bpf/xdpsock_user.c | 5 +++-- tools/bpf/bpftool/skeleton/pid_iter.bpf.c | 15 ++++++++++--- tools/bpf/bpftool/skeleton/profiler.bpf.c | 27 ++++++++++++++--------- tools/bpf/bpftool/tracelog.c | 2 +- 12 files changed, 53 insertions(+), 33 deletions(-) -- 2.36.0