unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Maxim Cournoyer <maxim.cournoyer@gmail.com>
To: 70962@debbugs.gnu.org
Cc: Maxim Cournoyer <maxim.cournoyer@gmail.com>,
	Maxim Cournoyer <maxim.cournoyer@gmail.com>,
	Leo Famulari <leo@famulari.name>,
	Tobias Geerinckx-Rice <me@tobias.gr>, Wilko Meyer <w@wmeyer.eu>
Subject: [bug#70962] [PATCH 00/14]  Add BTF support to kernel, sysdig and dependents, zstd-compressed modules
Date: Wed, 15 May 2024 14:30:14 -0400	[thread overview]
Message-ID: <cover.1715793606.git.maxim.cournoyer@gmail.com> (raw)
Message-ID: <20240515183014.3KRLoXM9rjWtaHazUOR2NtY_NiFZeIWW-oL2Klzthp8@z> (raw)
In-Reply-To: <7cf609dcf83c85b6897c9fb9af46ce8a854a15c8.1715791830.git.maxim.cournoyer@gmail.com>

 This series adds BTF (Berkeley Type Format) support to our kernel, catching up
 with other main distributions in enabling embedded BPF (Berkeley Packet
 Filter) programs.

 This was motivated by packaging 'sysdig', a system introspection application
 that can make use of BTF.  Adding BTF does incur some size increase; with
 'linux-libre' package going up from 132 MiB to 164 MiB (24%).  This is later
 somewhat mitigated by using Zstd compressed (at maximum level, 19) kernel
 modules, which brings the kernel size back down to 144 MiB, which corresponds
 to a more reasonable 9% increase from before this series.  The BPF kernel
 variant we were carrying is removed as proper BPF support will now exists in
 our main kernel.

 That's it!  I hope you enjoy using 'csysdig' to keep track of the syscalls and
 IO usage of your process/threads.
 END



Maxim Cournoyer (14):
  gnu: grpc: Modernize.
  gnu: grpc: Propagate abseil-cpp-cxxstd11.
  gnu: Add valijson.
  gnu: libbpf: Use gexps.
  gnu: libbpf: Update to 1.4.1.
  gnu: Add falcosecurity-libs.
  gnu: Add sysdig.
  gnu: Add dwarves.
  gnu: make-linux-libre*: Set KBUILD_BUILD_VERSION for reproducibility.
  gnu: make-linux-libre*: Run install targets in parallel.
  gnu: linux: Turn %default-extra-linux-options into a procedure.
  gnu: linux-libre: Enable BTF debug info.
  gnu: linux-libre: Enable Zstd compression of kernel modules.
  gnu: linux-libre-with-bpf: Deprecate in favor of linux-libre.

 doc/guix-cookbook.texi                        |  17 +-
 gnu/build/linux-modules.scm                   |  62 ++--
 gnu/installer.scm                             |   1 +
 gnu/local.mk                                  |   7 +
 gnu/packages/admin.scm                        |  58 +++
 gnu/packages/linux.scm                        | 347 +++++++++++++-----
 .../dwarves-threading-reproducibility.patch   |  23 ++
 .../falcosecurity-libs-install-pman.patch     |  14 +
 .../falcosecurity-libs-libscap-pc.patch       |  16 +
 ...lcosecurity-libs-libsinsp-pkg-config.patch | 155 ++++++++
 .../falcosecurity-libs-pkg-config.patch       |  23 ++
 ...alcosecurity-libs-shared-library-fix.patch |  50 +++
 .../sysdig-shared-falcosecurity-libs.patch    |  71 ++++
 gnu/packages/rpc.scm                          | 121 +++---
 gnu/packages/serialization.scm                |  26 +-
 gnu/system/linux-initrd.scm                   |   6 +-
 guix/profiles.scm                             |   7 +-
 17 files changed, 812 insertions(+), 192 deletions(-)
 create mode 100644 gnu/packages/patches/dwarves-threading-reproducibility.patch
 create mode 100644 gnu/packages/patches/falcosecurity-libs-install-pman.patch
 create mode 100644 gnu/packages/patches/falcosecurity-libs-libscap-pc.patch
 create mode 100644 gnu/packages/patches/falcosecurity-libs-libsinsp-pkg-config.patch
 create mode 100644 gnu/packages/patches/falcosecurity-libs-pkg-config.patch
 create mode 100644 gnu/packages/patches/falcosecurity-libs-shared-library-fix.patch
 create mode 100644 gnu/packages/patches/sysdig-shared-falcosecurity-libs.patch


base-commit: 029f2e970d5d14dda2dc89a4a3cc17de573ff90c
-- 
2.41.0





  parent reply	other threads:[~2024-05-15 18:32 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-15 16:51 [bug#70962] [PATCH 01/14] gnu: grpc: Modernize Maxim Cournoyer
2024-05-15 16:57 ` [bug#70962] [PATCH 02/14] gnu: grpc: Propagate abseil-cpp-cxxstd11 Maxim Cournoyer
2024-05-15 16:57 ` [bug#70962] [PATCH 03/14] gnu: Add valijson Maxim Cournoyer
2024-05-15 16:57 ` [bug#70962] [PATCH 04/14] gnu: libbpf: Use gexps Maxim Cournoyer
2024-05-15 16:57 ` [bug#70962] [PATCH 05/14] gnu: libbpf: Update to 1.4.1 Maxim Cournoyer
2024-05-15 16:57 ` [bug#70962] [PATCH 06/14] gnu: Add falcosecurity-libs Maxim Cournoyer
2024-05-15 16:57 ` [bug#70962] [PATCH 07/14] gnu: Add sysdig Maxim Cournoyer
2024-05-15 16:57 ` [bug#70962] [PATCH 08/14] gnu: Add dwarves Maxim Cournoyer
2024-05-15 16:57 ` [bug#70962] [PATCH 09/14] gnu: make-linux-libre*: Set KBUILD_BUILD_VERSION for reproducibility Maxim Cournoyer
2024-05-15 16:57 ` [bug#70962] [PATCH 10/14] gnu: make-linux-libre*: Run install targets in parallel Maxim Cournoyer
2024-05-15 16:57 ` [bug#70962] [PATCH 11/14] gnu: linux: Turn %default-extra-linux-options into a procedure Maxim Cournoyer
2024-05-15 16:57 ` [bug#70962] [PATCH 12/14] gnu: linux-libre: Enable BTF debug info Maxim Cournoyer
2024-05-15 16:57 ` [bug#70962] [PATCH 13/14] gnu: linux-libre: Enable Zstd compression of kernel modules Maxim Cournoyer
2024-05-15 16:57 ` [bug#70962] [PATCH 14/14] gnu: linux-libre-with-bpf: Deprecate in favor of linux-libre Maxim Cournoyer
2024-05-15 17:20 ` Maxim Cournoyer [this message]
2024-05-15 18:30   ` [bug#70962] [PATCH 00/14] Add BTF support to kernel, sysdig and dependents, zstd-compressed modules Maxim Cournoyer
2024-05-30  2:05   ` bug#70962: " Maxim Cournoyer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1715793606.git.maxim.cournoyer@gmail.com \
    --to=maxim.cournoyer@gmail.com \
    --cc=70962@debbugs.gnu.org \
    --cc=leo@famulari.name \
    --cc=me@tobias.gr \
    --cc=w@wmeyer.eu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).