Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: patches/util-linux/2.35.2/
Date: Tue, 04 Aug 2020 09:27:54
Message-Id: 1596531981.aa67698badbf348fff2797569e7847ff18650de8.whissi@gentoo
1 commit: aa67698badbf348fff2797569e7847ff18650de8
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 4 09:06:21 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 4 09:06:21 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=aa67698b
7
8 Bump util-linux to v2.36
9
10 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
11
12 ...il-linux-2.35.1-002-cleanup-pidfd-include.patch | 36 ----------------------
13 1 file changed, 36 deletions(-)
14
15 diff --git a/patches/util-linux/2.35.2/util-linux-2.35.1-002-cleanup-pidfd-include.patch b/patches/util-linux/2.35.2/util-linux-2.35.1-002-cleanup-pidfd-include.patch
16 deleted file mode 100644
17 index 85e4d70..0000000
18 --- a/patches/util-linux/2.35.2/util-linux-2.35.1-002-cleanup-pidfd-include.patch
19 +++ /dev/null
20 @@ -1,36 +0,0 @@
21 -From 0a4035ff2e4fd5b5ae0cf8f8665696c2aff53b75 Mon Sep 17 00:00:00 2001
22 -From: Karel Zak <kzak@××××××.com>
23 -Date: Tue, 10 Mar 2020 11:43:16 +0100
24 -Subject: [PATCH] include: cleanup pidfd inckudes
25 -
26 -Signed-off-by: Karel Zak <kzak@××××××.com>
27 ----
28 - include/pidfd-utils.h | 6 +++---
29 - 1 file changed, 3 insertions(+), 3 deletions(-)
30 -
31 -diff --git a/include/pidfd-utils.h b/include/pidfd-utils.h
32 -index 0baedd2c9..4a6c3a604 100644
33 ---- a/include/pidfd-utils.h
34 -+++ b/include/pidfd-utils.h
35 -@@ -3,10 +3,10 @@
36 -
37 - #if defined(__linux__)
38 - # include <sys/syscall.h>
39 --# if defined(SYS_pidfd_send_signal)
40 -+# if defined(SYS_pidfd_send_signal) && defined(SYS_pidfd_open)
41 - # include <sys/types.h>
42 -
43 --# ifndef HAVE_PIDFD_OPEN
44 -+# ifndef HAVE_PIDFD_SEND_SIGNAL
45 - static inline int pidfd_send_signal(int pidfd, int sig, siginfo_t *info,
46 - unsigned int flags)
47 - {
48 -@@ -14,7 +14,7 @@ static inline int pidfd_send_signal(int pidfd, int sig, siginfo_t *info,
49 - }
50 - # endif
51 -
52 --# ifndef HAVE_PIDFD_SEND_SIGNAL
53 -+# ifndef HAVE_PIDFD_OPEN
54 - static inline int pidfd_open(pid_t pid, unsigned int flags)
55 - {
56 - return syscall(SYS_pidfd_open, pid, flags);