mirror of
https://github.com/rwinkhart/sys.git
synced 2026-08-28 04:46:44 -04:00
unix/linux: update to Linux kernel 5.19-rc2
Update to 5.19-rc2 instead of 5.18 for the following reasons: - Support for LoongArch has been merged upstream. This allows to drop the loong64 specific kernel patches. - Fixes [1] an issue encountered with when generating the SOCK_TXREHASH_DEFAULT constant from linux/socket.h on 5.18 - Contains a fix [2] to provide SYS_MEMFD_SECRET on linux/riscv64 as well, The underlying syscall was already available in earlier kernel versions. Also see golang/go#51547. [1] https://lore.kernel.org/r/20220531094345.13801-1-tklauser@distanz.ch [2] https://lore.kernel.org/r/20220505081815.22808-1-tklauser@distanz.ch Change-Id: I6c3ec30a067eae339c443ee55962d94c84feffd9 Reviewed-on: https://go-review.googlesource.com/c/sys/+/411375 Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Auto-Submit: Ian Lance Taylor <iant@google.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Ian Lance Taylor <iant@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com>
This commit is contained in:
committed by
Gopher Robot
parent
003f7fa1e2
commit
af78867b19
@@ -15,15 +15,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
# Get the git sources. If not cached, this takes O(5 minutes).
|
||||
WORKDIR /git
|
||||
RUN git config --global advice.detachedHead false
|
||||
# Linux Kernel: Released 20 Mar 2022
|
||||
RUN git clone --branch v5.17 --depth 1 https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux
|
||||
# Linux Kernel: Released 12 Jun 2022
|
||||
RUN git clone --branch v5.19-rc2 --depth 1 https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux
|
||||
# GNU C library: Released 03 Feb 2022
|
||||
RUN git clone --branch release/2.35/master --depth 1 https://sourceware.org/git/glibc.git
|
||||
|
||||
# Only for loong64, add kernel and glibc patch
|
||||
RUN git clone https://github.com/loongson/golang-infra.git /git/loong64-patches \
|
||||
&& git config --global user.name "golang" && git config --global user.email "golang@localhost" \
|
||||
&& cd /git/loong64-patches && git checkout linux-v5.17 && cd /git/linux && git am /git/loong64-patches/*.patch \
|
||||
&& cd /git/loong64-patches && git checkout glibc-v2.35 && cd /git/glibc && git am /git/loong64-patches/*.patch \
|
||||
&& curl -fsSL https://git.savannah.gnu.org/cgit/config.git/plain/config.sub -o /git/glibc/scripts/config.sub
|
||||
|
||||
|
||||
@@ -1217,6 +1217,8 @@ const (
|
||||
PERF_BR_SYSRET = C.PERF_BR_SYSRET
|
||||
PERF_BR_COND_CALL = C.PERF_BR_COND_CALL
|
||||
PERF_BR_COND_RET = C.PERF_BR_COND_RET
|
||||
PERF_BR_ERET = C.PERF_BR_ERET
|
||||
PERF_BR_IRQ = C.PERF_BR_IRQ
|
||||
PERF_BR_MAX = C.PERF_BR_MAX
|
||||
PERF_SAMPLE_REGS_ABI_NONE = C.PERF_SAMPLE_REGS_ABI_NONE
|
||||
PERF_SAMPLE_REGS_ABI_32 = C.PERF_SAMPLE_REGS_ABI_32
|
||||
@@ -3628,6 +3630,10 @@ const (
|
||||
ETHTOOL_A_RINGS_RX_MINI = C.ETHTOOL_A_RINGS_RX_MINI
|
||||
ETHTOOL_A_RINGS_RX_JUMBO = C.ETHTOOL_A_RINGS_RX_JUMBO
|
||||
ETHTOOL_A_RINGS_TX = C.ETHTOOL_A_RINGS_TX
|
||||
ETHTOOL_A_RINGS_RX_BUF_LEN = C.ETHTOOL_A_RINGS_RX_BUF_LEN
|
||||
ETHTOOL_A_RINGS_TCP_DATA_SPLIT = C.ETHTOOL_A_RINGS_TCP_DATA_SPLIT
|
||||
ETHTOOL_A_RINGS_CQE_SIZE = C.ETHTOOL_A_RINGS_CQE_SIZE
|
||||
ETHTOOL_A_RINGS_TX_PUSH = C.ETHTOOL_A_RINGS_TX_PUSH
|
||||
ETHTOOL_A_RINGS_MAX = C.ETHTOOL_A_RINGS_MAX
|
||||
ETHTOOL_A_CHANNELS_UNSPEC = C.ETHTOOL_A_CHANNELS_UNSPEC
|
||||
ETHTOOL_A_CHANNELS_HEADER = C.ETHTOOL_A_CHANNELS_HEADER
|
||||
|
||||
Reference in New Issue
Block a user