patching file MAINTAINERS Hunk #1 FAILED at 7725. 1 out of 1 hunk FAILED -- saving rejects to file MAINTAINERS.rej can't find file to patch at input line 105 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/kernel/Makefile b/kernel/Makefile |index 4df609be42d0..3f6ab5d5041b 100644 |--- a/kernel/Makefile |+++ b/kernel/Makefile -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored patching file kernel/futex/Makefile Cannot rename file without two valid file names 1 out of 1 hunk ignored can't find file to patch at input line 233 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- | |From patchwork Thu Sep 23 17:10:51 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 45371 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id 5BDFF3857C4F | for ; Thu, 23 Sep 2021 17:13:17 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5BDFF3857C4F |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1632417197; | bh=88qRtH0gWyA0Rzot12Et5NGLGcFIX4w194kv7pgI8tA=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=LtOsOF3MJxcCRzePF3/wKQBNM5aKQugOhGdgCzcDcKzesbPHcxjJNCESHR5EiU5hB | 1ElAKtWTuYY9k6PJs3n2/ponk4iYxtJYimacHIqGvOZwBea/+SIhy9e6HAY6nTuoT7 | jbzXoxjPxIcQtZ7hNwdCt0X094Dhpxhn8UOWg238= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) | by sourceware.org (Postfix) with ESMTPS id B8F103858005 | for ; Thu, 23 Sep 2021 17:11:35 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B8F103858005 |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id CF7691F445FD |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v2 02/22] futex: Split out syscalls |Date: Thu, 23 Sep 2021 14:10:51 -0300 |Message-Id: <20210923171111.300673-3-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.33.0 |In-Reply-To: <20210923171111.300673-1-andrealmeid@collabora.com> |References: <20210923171111.300673-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.0 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: Davidlohr Bueso , libc-alpha@sourceware.org, | linux-api@vger.kernel.org, mtk.manpages@gmail.com, =?utf-8?q?Andr=C3=A9_Alm?= | =?utf-8?q?eida?= , kernel@collabora.com, | krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |From: Peter Zijlstra | |Put the syscalls in their own little file. | |Suggested-by: Thomas Gleixner |Signed-off-by: Peter Zijlstra (Intel) |Reviewed-by: André Almeida |Signed-off-by: André Almeida |--- | include/linux/syscalls.h | 2 +- | kernel/futex/Makefile | 2 +- | kernel/futex/core.c | 532 +++++++++------------------------------ | kernel/futex/futex.h | 58 +++++ | kernel/futex/syscalls.c | 279 ++++++++++++++++++++ | kernel/sys_ni.c | 2 +- | 6 files changed, 455 insertions(+), 420 deletions(-) | create mode 100644 kernel/futex/futex.h | create mode 100644 kernel/futex/syscalls.c | |diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h |index 252243c7783d..25979682ade5 100644 |--- a/include/linux/syscalls.h |+++ b/include/linux/syscalls.h -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored patching file kernel/futex/Makefile can't find file to patch at input line 255 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/kernel/futex/core.c b/kernel/futex/core.c |index f9bc9aa0ce1e..69d98929f2f5 100644 |--- a/kernel/futex/core.c |+++ b/kernel/futex/core.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 15 out of 15 hunks ignored patching file kernel/futex/futex.h patching file kernel/futex/syscalls.c can't find file to patch at input line 1273 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/kernel/sys_ni.c b/kernel/sys_ni.c |index f43d89d92860..13ee8334ab6e 100644 |--- a/kernel/sys_ni.c |+++ b/kernel/sys_ni.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 1371 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- | |From patchwork Thu Sep 23 17:10:52 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 45372 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id 7589E3857C50 | for ; Thu, 23 Sep 2021 17:14:08 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7589E3857C50 |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1632417248; | bh=xwZ5FYUYpMUes77V33GGiEvNMj8lKKcmJXYHm7Dzk8M=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=o//HqgW3KI1hgorYM78J+ubEycoHbO6Oe+5fUD/QwATBJRdTsMqntYXedKfPSyq5h | a1Uouq9kRnBkwmV+P6I1XtaaCWt+WICdZxSDNikOUjyLC+VfQljs+DQa8rt55h9rNZ | q9DHmX8bpbpLHmoWh6R8mK9/ezPiTwZEc3V3/Jyo= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) | by sourceware.org (Postfix) with ESMTPS id 1795B3857C50 | for ; Thu, 23 Sep 2021 17:11:40 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 1795B3857C50 |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id 7071C1F445FF |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v2 03/22] futex: Rename {,__}{,un}queue_me() |Date: Thu, 23 Sep 2021 14:10:52 -0300 |Message-Id: <20210923171111.300673-4-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.33.0 |In-Reply-To: <20210923171111.300673-1-andrealmeid@collabora.com> |References: <20210923171111.300673-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.0 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: Davidlohr Bueso , libc-alpha@sourceware.org, | linux-api@vger.kernel.org, mtk.manpages@gmail.com, =?utf-8?q?Andr=C3=A9_Alm?= | =?utf-8?q?eida?= , kernel@collabora.com, | krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |From: Peter Zijlstra | |In order to prepare introducing these symbols into the global |namespace; rename them: | | s/\<\(__\)*\(un\)*queue_me/\1futex_\2queue/g | |Signed-off-by: Peter Zijlstra (Intel) |Reviewed-by: André Almeida |Signed-off-by: André Almeida |--- | kernel/futex/core.c | 46 ++++++++++++++++++++++----------------------- | 1 file changed, 23 insertions(+), 23 deletions(-) | |diff --git a/kernel/futex/core.c b/kernel/futex/core.c |index 69d98929f2f5..91f94b45c2e8 100644 |--- a/kernel/futex/core.c |+++ b/kernel/futex/core.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 13 out of 13 hunks ignored can't find file to patch at input line 1625 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- | |From patchwork Thu Sep 23 17:10:53 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 45373 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id C1B0E385803D | for ; Thu, 23 Sep 2021 17:14:50 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C1B0E385803D |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1632417290; | bh=aAUtVg8/Ej9uAhgG2umlm24kmkT9tMyIQQQNfJz/pt0=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=enr/YzU4LOJBWnYOUjlPedj+XAO95gc+tQRh40s483wjUV7F7yaUmAlJctaOGEe0H | d6o0mqvHGt4kjnnzKCXcEWmKeqYXNaR7YD1GcKo9dw+X5t62s3H5748fLkGwA9y6hx | cRS1PkEHJCoekD9uZK9vHK7/SEZ1JmqJIeUZZH5E= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) | by sourceware.org (Postfix) with ESMTPS id DB4A5385801A | for ; Thu, 23 Sep 2021 17:11:44 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org DB4A5385801A |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id C74871F44601 |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v2 04/22] futex: Rename futex_wait_queue_me() |Date: Thu, 23 Sep 2021 14:10:53 -0300 |Message-Id: <20210923171111.300673-5-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.33.0 |In-Reply-To: <20210923171111.300673-1-andrealmeid@collabora.com> |References: <20210923171111.300673-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.0 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: Davidlohr Bueso , libc-alpha@sourceware.org, | linux-api@vger.kernel.org, mtk.manpages@gmail.com, =?utf-8?q?Andr=C3=A9_Alm?= | =?utf-8?q?eida?= , kernel@collabora.com, | krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |From: Peter Zijlstra | |In order to prepare introducing these symbols into the global |namespace; rename them: | | s/futex_wait_queue_me/futex_wait_queue/g | |Signed-off-by: Peter Zijlstra (Intel) |Reviewed-by: André Almeida |Signed-off-by: André Almeida |--- | kernel/futex/core.c | 10 +++++----- | 1 file changed, 5 insertions(+), 5 deletions(-) | |diff --git a/kernel/futex/core.c b/kernel/futex/core.c |index 91f94b45c2e8..e70e81c61ea2 100644 |--- a/kernel/futex/core.c |+++ b/kernel/futex/core.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 4 out of 4 hunks ignored can't find file to patch at input line 1756 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- | |From patchwork Thu Sep 23 17:10:54 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 45374 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id E3C7E385843E | for ; Thu, 23 Sep 2021 17:15:32 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E3C7E385843E |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1632417332; | bh=/MVF5ep0/WFwTlFOENoNVRPCLO9rCdbutc1oJcoTOmY=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=ClwyA4xeeLpUEgUa+Zn7IoFob74SChTf1UyZa4kfSux3TJwu08iBA/e8R8U38XdeU | 03+npR8d1aZ9tvpmdT9bvezx1Nl3RXA/nv5kGFkhu7gK89xhZcX3hfYzhRzJIF6msQ | QmvhfoMSVSJxGHJLi1sbiw40n+pC0uqroq8R+KiY= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) | by sourceware.org (Postfix) with ESMTPS id 4AC683857C4F | for ; Thu, 23 Sep 2021 17:11:49 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 4AC683857C4F |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id 959631F44602 |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v2 05/22] futex: Rename: queue_{,un}lock() |Date: Thu, 23 Sep 2021 14:10:54 -0300 |Message-Id: <20210923171111.300673-6-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.33.0 |In-Reply-To: <20210923171111.300673-1-andrealmeid@collabora.com> |References: <20210923171111.300673-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.0 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: Davidlohr Bueso , libc-alpha@sourceware.org, | linux-api@vger.kernel.org, mtk.manpages@gmail.com, =?utf-8?q?Andr=C3=A9_Alm?= | =?utf-8?q?eida?= , kernel@collabora.com, | krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |From: Peter Zijlstra | |In order to prepare introducing these symbols into the global |namespace; rename them: | | s/queue_\(un\)*lock/futex_q_\1lock/g | |Signed-off-by: Peter Zijlstra (Intel) |Reviewed-by: André Almeida |Signed-off-by: André Almeida |--- | kernel/futex/core.c | 26 +++++++++++++------------- | 1 file changed, 13 insertions(+), 13 deletions(-) | |diff --git a/kernel/futex/core.c b/kernel/futex/core.c |index e70e81c61ea2..63cf0da2e413 100644 |--- a/kernel/futex/core.c |+++ b/kernel/futex/core.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 11 out of 11 hunks ignored can't find file to patch at input line 1953 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- | |From patchwork Thu Sep 23 17:10:55 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 45375 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id 17FDA385840A | for ; Thu, 23 Sep 2021 17:16:15 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 17FDA385840A |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1632417375; | bh=4E+l9LMMnDZBy1S8XmWeU74y2DX5eEJ34kGnUkDGOnw=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=eq0bNTsPpww0ctsljgxsRPBo5G8YHKOBqFQZalHJplu1XqrFpngfCtrubbTDPZmVe | QA23EMhTRrEZA+tO/HA6PHonKzjDfUyyGXoEbOAQp6XryfCLXlXr5cVCi3S8kSIArd | TB27UZJmQH1Kf0XsvAk5dEXrczwFfkVdaPljms84= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) | by sourceware.org (Postfix) with ESMTPS id B7B34385842B | for ; Thu, 23 Sep 2021 17:11:53 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B7B34385842B |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id 041D81F44603 |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v2 06/22] futex: Rename __unqueue_futex() |Date: Thu, 23 Sep 2021 14:10:55 -0300 |Message-Id: <20210923171111.300673-7-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.33.0 |In-Reply-To: <20210923171111.300673-1-andrealmeid@collabora.com> |References: <20210923171111.300673-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.0 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: Davidlohr Bueso , libc-alpha@sourceware.org, | linux-api@vger.kernel.org, mtk.manpages@gmail.com, =?utf-8?q?Andr=C3=A9_Alm?= | =?utf-8?q?eida?= , kernel@collabora.com, | krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |From: Peter Zijlstra | |In order to prepare introducing these symbols into the global |namespace; rename: | | s/__unqueue_futex/__futex_unqueue/g | |Signed-off-by: Peter Zijlstra (Intel) |Reviewed-by: André Almeida |Signed-off-by: André Almeida |--- | kernel/futex/core.c | 14 +++++++------- | 1 file changed, 7 insertions(+), 7 deletions(-) | |diff --git a/kernel/futex/core.c b/kernel/futex/core.c |index 63cf0da2e413..88541fba57ea 100644 |--- a/kernel/futex/core.c |+++ b/kernel/futex/core.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 5 out of 5 hunks ignored can't find file to patch at input line 2101 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- | |From patchwork Thu Sep 23 17:10:56 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 45376 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id 45AB23857C50 | for ; Thu, 23 Sep 2021 17:16:57 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 45AB23857C50 |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1632417417; | bh=QcgiIp8pvXjSGvNccIYmhuoIiKE75Ru2IBpimlc6B+Y=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=CDnAkag7CfOTjJNviJkx6aQzTYfTnCDyAp2Noa1BInzz3PYVs6Uv7SFvVcXO7jamE | +iMO1Q02NZn+EtJcz6fZX6EwyFgOWdcvTM9KdhZFIEK3pgoLdQpFcukOkDW3uHsjeh | GOFThTpiJnH770GIwODFyzD90YhSEZbGqnEE/L3g= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk | [IPv6:2a00:1098:0:82:1000:25:2eeb:e3e3]) | by sourceware.org (Postfix) with ESMTPS id 2920D3857C53 | for ; Thu, 23 Sep 2021 17:11:58 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 2920D3857C53 |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id 79F071F44601 |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v2 07/22] futex: Rename hash_futex() |Date: Thu, 23 Sep 2021 14:10:56 -0300 |Message-Id: <20210923171111.300673-8-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.33.0 |In-Reply-To: <20210923171111.300673-1-andrealmeid@collabora.com> |References: <20210923171111.300673-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: Davidlohr Bueso , libc-alpha@sourceware.org, | linux-api@vger.kernel.org, mtk.manpages@gmail.com, =?utf-8?q?Andr=C3=A9_Alm?= | =?utf-8?q?eida?= , kernel@collabora.com, | krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |From: Peter Zijlstra | |In order to prepare introducing these symbols into the global |namespace; rename: | | s/hash_futex/futex_hash/g | |Signed-off-by: Peter Zijlstra (Intel) |Reviewed-by: André Almeida |Signed-off-by: André Almeida |--- | kernel/futex/core.c | 22 +++++++++++----------- | 1 file changed, 11 insertions(+), 11 deletions(-) | |diff --git a/kernel/futex/core.c b/kernel/futex/core.c |index 88541fba57ea..032189fa7b7f 100644 |--- a/kernel/futex/core.c |+++ b/kernel/futex/core.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 8 out of 8 hunks ignored can't find file to patch at input line 2273 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- | |From patchwork Thu Sep 23 17:10:57 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 45377 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id 6C9593858401 | for ; Thu, 23 Sep 2021 17:17:46 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6C9593858401 |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1632417466; | bh=UI+X9bw3soAHuQ8+zfOZRF2hGdYqOelOa8Lv6uJ3jrI=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=bILT4pH9vnNqNxuODW+u/NjvsE/5VSq4wFF1AkyrCGKE2tyRKMH23NIqki0XQz3zo | ZOnnsyiguFwKpKSRrA3VhzTIZZSQ77BeysWbWGwH1RT2nzXhTVEy2nRup5alB1V5Md | 6B29y17xVsDRcC5cWneEW5L8QCS+rUfHagjKzvZ0= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) | by sourceware.org (Postfix) with ESMTPS id 919063858438 | for ; Thu, 23 Sep 2021 17:12:02 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 919063858438 |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id DAF181F44602 |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v2 08/22] futex: Rename: {get,cmpxchg}_futex_value_locked() |Date: Thu, 23 Sep 2021 14:10:57 -0300 |Message-Id: <20210923171111.300673-9-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.33.0 |In-Reply-To: <20210923171111.300673-1-andrealmeid@collabora.com> |References: <20210923171111.300673-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.0 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: Davidlohr Bueso , libc-alpha@sourceware.org, | linux-api@vger.kernel.org, mtk.manpages@gmail.com, =?utf-8?q?Andr=C3=A9_Alm?= | =?utf-8?q?eida?= , kernel@collabora.com, | krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |From: Peter Zijlstra | |In order to prepare introducing these symbols into the global |namespace; rename them: | | s/\<\([^_ ]*\)_futex_value_locked/futex_\1_value_locked/g | |Signed-off-by: Peter Zijlstra (Intel) |Reviewed-by: André Almeida |Signed-off-by: André Almeida |--- | kernel/futex/core.c | 30 +++++++++++++++--------------- | 1 file changed, 15 insertions(+), 15 deletions(-) | |diff --git a/kernel/futex/core.c b/kernel/futex/core.c |index 032189fa7b7f..0e10aeef3468 100644 |--- a/kernel/futex/core.c |+++ b/kernel/futex/core.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 14 out of 14 hunks ignored patching file kernel/futex/Makefile can't find file to patch at input line 2506 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/kernel/futex/core.c b/kernel/futex/core.c |index 0e10aeef3468..a8ca5b5cbc99 100644 |--- a/kernel/futex/core.c |+++ b/kernel/futex/core.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 21 out of 21 hunks ignored patching file kernel/futex/futex.h patching file kernel/futex/pi.c can't find file to patch at input line 5644 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- | |From patchwork Thu Sep 23 17:10:59 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 45378 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id B0B433857C52 | for ; Thu, 23 Sep 2021 17:18:28 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B0B433857C52 |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1632417508; | bh=0pheH773RSPSbrx0Q+FKOLdrpNlXm0VrQIIS16x93/0=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=G/CVYSNbKt/AxD+rM1btcOtD5RckT/L3Yz29h6dWW6FFOBQI0gerdL2VPbY6ZgIhf | aVNTcRTT+imDxS5x+kcbARDd1e/GRrVJB9rAdVLVUf5L6yRUhALFohW6hUUznmJYck | h4qVI8pyhmhJlEQMKmmz2rNtkqG+KuEDU9W9xq0Y= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) | by sourceware.org (Postfix) with ESMTPS id 9072A385803F | for ; Thu, 23 Sep 2021 17:12:11 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 9072A385803F |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id E67B61F44602 |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v2 10/22] futex: Rename: hb_waiter_{inc,dec,pending}() |Date: Thu, 23 Sep 2021 14:10:59 -0300 |Message-Id: <20210923171111.300673-11-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.33.0 |In-Reply-To: <20210923171111.300673-1-andrealmeid@collabora.com> |References: <20210923171111.300673-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: Davidlohr Bueso , libc-alpha@sourceware.org, | linux-api@vger.kernel.org, mtk.manpages@gmail.com, =?utf-8?q?Andr=C3=A9_Alm?= | =?utf-8?q?eida?= , kernel@collabora.com, | krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |From: Peter Zijlstra | |In order to prepare introducing these symbols into the global |namespace; rename them: | | s/hb_waiters_/futex_&/g | |Signed-off-by: Peter Zijlstra (Intel) |Reviewed-by: André Almeida |Signed-off-by: André Almeida |--- | kernel/futex/core.c | 34 +++++++++++++++++----------------- | 1 file changed, 17 insertions(+), 17 deletions(-) | |diff --git a/kernel/futex/core.c b/kernel/futex/core.c |index a8ca5b5cbc99..a26045e17fac 100644 |--- a/kernel/futex/core.c |+++ b/kernel/futex/core.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 14 out of 14 hunks ignored can't find file to patch at input line 5871 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- | |From patchwork Thu Sep 23 17:11:00 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 45380 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id CD67C385803F | for ; Thu, 23 Sep 2021 17:20:24 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org CD67C385803F |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1632417624; | bh=Ac7yBOkRv+lJfM7PlsuCbUEvMv969AL3RGsgnMs1JdA=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=qVsT0gthWNMZe1vzYX/oRk+2G9Fag3s/s2gVP+1hSnRuyoSfuRsRVL97Qwu2eCP8f | BNjJ8Xwb7Yiz6U7TUSTRUF82OimQ0r6xBEzNzVz0NjpOma9MHHpLOwvZIbEH1w4sJv | toJd0peoGRI2Wog1lMARq/PYFaNcNuHYZXLVSbE0= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) | by sourceware.org (Postfix) with ESMTPS id 06D673858437 | for ; Thu, 23 Sep 2021 17:12:16 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 06D673858437 |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id 4B9A41F4460A |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v2 11/22] futex: Rename: match_futex() |Date: Thu, 23 Sep 2021 14:11:00 -0300 |Message-Id: <20210923171111.300673-12-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.33.0 |In-Reply-To: <20210923171111.300673-1-andrealmeid@collabora.com> |References: <20210923171111.300673-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: Davidlohr Bueso , libc-alpha@sourceware.org, | linux-api@vger.kernel.org, mtk.manpages@gmail.com, =?utf-8?q?Andr=C3=A9_Alm?= | =?utf-8?q?eida?= , kernel@collabora.com, | krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |From: Peter Zijlstra | |In order to prepare introducing these symbols into the global |namespace; rename: | | s/match_futex/futex_match/g | |Signed-off-by: Peter Zijlstra (Intel) |Reviewed-by: André Almeida |Signed-off-by: André Almeida |--- | kernel/futex/core.c | 24 ++++++++++++------------ | 1 file changed, 12 insertions(+), 12 deletions(-) | |diff --git a/kernel/futex/core.c b/kernel/futex/core.c |index a26045e17fac..30246e63e74b 100644 |--- a/kernel/futex/core.c |+++ b/kernel/futex/core.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 11 out of 11 hunks ignored can't find file to patch at input line 6066 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- | |From patchwork Thu Sep 23 17:11:01 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 45381 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id 335CD3857C52 | for ; Thu, 23 Sep 2021 17:21:07 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 335CD3857C52 |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1632417667; | bh=pY+NnoaOXk0yhP/wY7jyDl0sjgyokOxGt259xk4Ly4o=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=Cvf51tdMPgM5dqo/cm82pWcYqEFDpdun9baxfq+XVkE7susxK8tY4beBDrUhfa8+e | +UlmaKACK5z+nEKWf7g0zWnpCrHqmXSR1I93GR50hVZk38s7aTjjVUIK5wTYnGQ0Am | 7IyWb4qlxrURbDr2hOV7Ziu/U0iQMsCZ2sCN8z1s= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) | by sourceware.org (Postfix) with ESMTPS id 596F93858D34 | for ; Thu, 23 Sep 2021 17:12:20 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 596F93858D34 |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id A49C01F4460D |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v2 12/22] futex: Rename mark_wake_futex() |Date: Thu, 23 Sep 2021 14:11:01 -0300 |Message-Id: <20210923171111.300673-13-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.33.0 |In-Reply-To: <20210923171111.300673-1-andrealmeid@collabora.com> |References: <20210923171111.300673-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: Davidlohr Bueso , libc-alpha@sourceware.org, | linux-api@vger.kernel.org, mtk.manpages@gmail.com, =?utf-8?q?Andr=C3=A9_Alm?= | =?utf-8?q?eida?= , kernel@collabora.com, | krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |From: Peter Zijlstra | |In order to prepare introducing these symbols into the global |namespace; rename: | | s/mark_wake_futex/futex_wake_mark/g | |Signed-off-by: Peter Zijlstra (Intel) |Reviewed-by: André Almeida |Signed-off-by: André Almeida |--- | kernel/futex/core.c | 10 +++++----- | 1 file changed, 5 insertions(+), 5 deletions(-) | |diff --git a/kernel/futex/core.c b/kernel/futex/core.c |index 30246e63e74b..bcc4aa052f9d 100644 |--- a/kernel/futex/core.c |+++ b/kernel/futex/core.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 5 out of 5 hunks ignored patching file kernel/futex/Makefile can't find file to patch at input line 6210 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/kernel/futex/core.c b/kernel/futex/core.c |index bcc4aa052f9d..42f2735e9abf 100644 |--- a/kernel/futex/core.c |+++ b/kernel/futex/core.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 10 out of 10 hunks ignored patching file kernel/futex/futex.h patching file kernel/futex/requeue.c patching file kernel/futex/Makefile can't find file to patch at input line 8365 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/kernel/futex/core.c b/kernel/futex/core.c |index 42f2735e9abf..25d8a88b32e5 100644 |--- a/kernel/futex/core.c |+++ b/kernel/futex/core.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 7 out of 7 hunks ignored patching file kernel/futex/futex.h patching file kernel/futex/waitwake.c patching file kernel/futex/futex.h patching file MAINTAINERS Hunk #1 FAILED at 7718. 1 out of 1 hunk FAILED -- saving rejects to file MAINTAINERS.rej can't find file to patch at input line 9755 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h |index 25979682ade5..528a478dbda8 100644 |--- a/include/linux/syscalls.h |+++ b/include/linux/syscalls.h -------------------------- File to patch: Skip this patch? [y] Skipping patch. 2 out of 2 hunks ignored can't find file to patch at input line 9778 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/include/uapi/asm-generic/unistd.h b/include/uapi/asm-generic/unistd.h |index 1c5fb86d455a..4557a8b6086f 100644 |--- a/include/uapi/asm-generic/unistd.h |+++ b/include/uapi/asm-generic/unistd.h -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 9795 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/include/uapi/linux/futex.h b/include/uapi/linux/futex.h |index 235e5b2facaa..71a5df8d2689 100644 |--- a/include/uapi/linux/futex.h |+++ b/include/uapi/linux/futex.h -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored patching file kernel/futex/futex.h patching file kernel/futex/syscalls.c patching file kernel/futex/waitwake.c can't find file to patch at input line 10197 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/kernel/sys_ni.c b/kernel/sys_ni.c |index 13ee8334ab6e..d1944258cfc0 100644 |--- a/kernel/sys_ni.c |+++ b/kernel/sys_ni.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 10289 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- | |From patchwork Thu Sep 23 17:11:06 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 45386 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id B91E0385803D | for ; Thu, 23 Sep 2021 17:25:06 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B91E0385803D |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1632417906; | bh=AQmKgfH3qEqOtDyuCan45GTszTZszAW9eky6Y41uuFc=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=Z4QvaGKiL4UbAwBI5XZ73+lLs8pQ8j2K/9aOL7ypaYfqoPf+xwnnWF84uVY59AkkN | seUsWKHRWlGHnFD5IRC5uFRFOyfPAFuuL1mKCVN5uZ1fG18ORsFskjdkHnXXE4FzJR | A85FbAeGTLbuewvSnMsJlEaJkHMsi+pGO+jb5xAk= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk | [IPv6:2a00:1098:0:82:1000:25:2eeb:e3e3]) | by sourceware.org (Postfix) with ESMTPS id 54D5F3857C50 | for ; Thu, 23 Sep 2021 17:12:42 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 54D5F3857C50 |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id A70A01F44612 |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v2 17/22] futex,x86: Wire up sys_futex_waitv() |Date: Thu, 23 Sep 2021 14:11:06 -0300 |Message-Id: <20210923171111.300673-18-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.33.0 |In-Reply-To: <20210923171111.300673-1-andrealmeid@collabora.com> |References: <20210923171111.300673-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: Davidlohr Bueso , libc-alpha@sourceware.org, | linux-api@vger.kernel.org, mtk.manpages@gmail.com, =?utf-8?q?Andr=C3=A9_Alm?= | =?utf-8?q?eida?= , kernel@collabora.com, | krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |Wire up syscall entry point for x86 arch, for both i386 and x86_64. | |Signed-off-by: André Almeida |--- | arch/x86/entry/syscalls/syscall_32.tbl | 1 + | arch/x86/entry/syscalls/syscall_64.tbl | 1 + | 2 files changed, 2 insertions(+) | |diff --git a/arch/x86/entry/syscalls/syscall_32.tbl b/arch/x86/entry/syscalls/syscall_32.tbl |index 960a021d543e..7e25543693de 100644 |--- a/arch/x86/entry/syscalls/syscall_32.tbl |+++ b/arch/x86/entry/syscalls/syscall_32.tbl -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 10298 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/arch/x86/entry/syscalls/syscall_64.tbl b/arch/x86/entry/syscalls/syscall_64.tbl |index 18b5500ea8bf..fe8f8dd157b4 100644 |--- a/arch/x86/entry/syscalls/syscall_64.tbl |+++ b/arch/x86/entry/syscalls/syscall_64.tbl -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 10390 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- | |From patchwork Thu Sep 23 17:11:07 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 45387 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id E2E173857C4A | for ; Thu, 23 Sep 2021 17:25:48 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E2E173857C4A |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1632417948; | bh=TcUgeK1f7MYUTxeE4wkOszpYbkRNjGhnupZq43vQbJI=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=VdZr6apJRGfYyQF9zEBOrn4luLt08Vl2IovE2UnfD+dLLI1UX8piV3iHX6hxaMKUD | jX8Nuhtm9IHBuppbiFqxXf+2dotpzA8jdt2GjAHfeSC4870brEVrD6XqwtYmJMqG3J | RL2mGNXLdrzZIauK55lk6YxJjwL9BWFCGa2KLLG8= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) | by sourceware.org (Postfix) with ESMTPS id D1AEC3858438 | for ; Thu, 23 Sep 2021 17:12:46 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org D1AEC3858438 |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id 1C63D1F44614 |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v2 18/22] futex,arm: Wire up sys_futex_waitv() |Date: Thu, 23 Sep 2021 14:11:07 -0300 |Message-Id: <20210923171111.300673-19-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.33.0 |In-Reply-To: <20210923171111.300673-1-andrealmeid@collabora.com> |References: <20210923171111.300673-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.2 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: Davidlohr Bueso , libc-alpha@sourceware.org, | linux-api@vger.kernel.org, mtk.manpages@gmail.com, =?utf-8?q?Andr=C3=A9_Alm?= | =?utf-8?q?eida?= , kernel@collabora.com, | krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |Wire up syscall entry point for ARM architectures, for both 32 and 64-bit. | |Signed-off-by: André Almeida |--- | arch/arm/tools/syscall.tbl | 1 + | arch/arm64/include/asm/unistd.h | 2 +- | arch/arm64/include/asm/unistd32.h | 2 ++ | 3 files changed, 4 insertions(+), 1 deletion(-) | |diff --git a/arch/arm/tools/syscall.tbl b/arch/arm/tools/syscall.tbl |index e842209e135d..543100151f2b 100644 |--- a/arch/arm/tools/syscall.tbl |+++ b/arch/arm/tools/syscall.tbl -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 10399 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/arch/arm64/include/asm/unistd.h b/arch/arm64/include/asm/unistd.h |index 3cb206aea3db..6bdb5f5db438 100644 |--- a/arch/arm64/include/asm/unistd.h |+++ b/arch/arm64/include/asm/unistd.h -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 10412 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/arch/arm64/include/asm/unistd32.h b/arch/arm64/include/asm/unistd32.h |index 844f6ae58662..41ea1195e44b 100644 |--- a/arch/arm64/include/asm/unistd32.h |+++ b/arch/arm64/include/asm/unistd32.h -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 10511 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- | |From patchwork Thu Sep 23 17:11:08 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 45388 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id 13544385803F | for ; Thu, 23 Sep 2021 17:26:31 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 13544385803F |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1632417991; | bh=vBLzsib0fyDu+zCuNtp3/sfnlAIuR0tFFY29G4lh2IM=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=WhjgCi1n+DTkUTjXBgnFeX/oZ58Rj5aF2eaJsCGgQIe+IDUOdYi0wOm4hjuEY/ZDy | 1MoghJRVI8cQN/Sa8NEIaOl4KPFJyrSpCDXpt10w6FQjNLV0jm9y/JbObhQYoP7BXl | eDC8XKm5BD3STKe3a/uIUUsz5ssJeSximxBfQkbk= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) | by sourceware.org (Postfix) with ESMTPS id 27873385842B | for ; Thu, 23 Sep 2021 17:12:51 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 27873385842B |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id 78F871F44612 |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v2 19/22] selftests: futex: Add sys_futex_waitv() test |Date: Thu, 23 Sep 2021 14:11:08 -0300 |Message-Id: <20210923171111.300673-20-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.33.0 |In-Reply-To: <20210923171111.300673-1-andrealmeid@collabora.com> |References: <20210923171111.300673-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.2 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: Davidlohr Bueso , libc-alpha@sourceware.org, | linux-api@vger.kernel.org, mtk.manpages@gmail.com, =?utf-8?q?Andr=C3=A9_Alm?= | =?utf-8?q?eida?= , kernel@collabora.com, | krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |Create a new file to test the waitv mechanism. Test both private and |shared futexes. Wake the last futex in the array, and check if the |return value from futex_waitv() is the right index. | |Signed-off-by: André Almeida |--- | .../selftests/futex/functional/.gitignore | 1 + | .../selftests/futex/functional/Makefile | 3 +- | .../selftests/futex/functional/futex_waitv.c | 237 ++++++++++++++++++ | .../testing/selftests/futex/functional/run.sh | 3 + | .../selftests/futex/include/futex2test.h | 22 ++ | 5 files changed, 265 insertions(+), 1 deletion(-) | create mode 100644 tools/testing/selftests/futex/functional/futex_waitv.c | create mode 100644 tools/testing/selftests/futex/include/futex2test.h | |diff --git a/tools/testing/selftests/futex/functional/.gitignore b/tools/testing/selftests/futex/functional/.gitignore |index 0e78b49d0f2f..fbcbdb6963b3 100644 |--- a/tools/testing/selftests/futex/functional/.gitignore |+++ b/tools/testing/selftests/futex/functional/.gitignore -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 10520 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/tools/testing/selftests/futex/functional/Makefile b/tools/testing/selftests/futex/functional/Makefile |index bd1fec59e010..5cc38de9d8ea 100644 |--- a/tools/testing/selftests/futex/functional/Makefile |+++ b/tools/testing/selftests/futex/functional/Makefile -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored patching file tools/testing/selftests/futex/functional/futex_waitv.c can't find file to patch at input line 10777 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/tools/testing/selftests/futex/functional/run.sh b/tools/testing/selftests/futex/functional/run.sh |index 11a9d62290f5..5ccd599da6c3 100755 |--- a/tools/testing/selftests/futex/functional/run.sh |+++ b/tools/testing/selftests/futex/functional/run.sh -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored patching file tools/testing/selftests/futex/include/futex2test.h can't find file to patch at input line 10895 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- | |From patchwork Thu Sep 23 17:11:09 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 45389 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id 4FAD9385803F | for ; Thu, 23 Sep 2021 17:27:21 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4FAD9385803F |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1632418041; | bh=2w7v0mNX8zD/8dTr98CQ1AsS4kDq8CV69PRioawRlrE=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=AAp4H0T0rmIG2SRuVfUD9LaO2RueA8dq/G7QL0HPK88QxB4GYdw20bi1LF0kAdsDh | vI2WkcBfApQ2T9AZLaSdfhWpGe5qc4usn+jp3/p3Pd2gZUzUjYEIsU4xIcK1jxjnAR | 4Z5qGO7/nsz0hCbTUXL8fG/UEpdUabYb1enGeJjw= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) | by sourceware.org (Postfix) with ESMTPS id 9110E3858401 | for ; Thu, 23 Sep 2021 17:12:55 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 9110E3858401 |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id DBB121F44618 |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v2 20/22] selftests: futex: Test sys_futex_waitv() timeout |Date: Thu, 23 Sep 2021 14:11:09 -0300 |Message-Id: <20210923171111.300673-21-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.33.0 |In-Reply-To: <20210923171111.300673-1-andrealmeid@collabora.com> |References: <20210923171111.300673-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.2 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: Davidlohr Bueso , libc-alpha@sourceware.org, | linux-api@vger.kernel.org, mtk.manpages@gmail.com, =?utf-8?q?Andr=C3=A9_Alm?= | =?utf-8?q?eida?= , kernel@collabora.com, | krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |Test if the futex_waitv timeout is working as expected, using the |supported clockid options. | |Signed-off-by: André Almeida |--- | .../futex/functional/futex_wait_timeout.c | 21 ++++++++++++++++++- | 1 file changed, 20 insertions(+), 1 deletion(-) | |diff --git a/tools/testing/selftests/futex/functional/futex_wait_timeout.c b/tools/testing/selftests/futex/functional/futex_wait_timeout.c |index 1f8f6daaf1e7..3651ce17beeb 100644 |--- a/tools/testing/selftests/futex/functional/futex_wait_timeout.c |+++ b/tools/testing/selftests/futex/functional/futex_wait_timeout.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 4 out of 4 hunks ignored can't find file to patch at input line 11027 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- | |From patchwork Thu Sep 23 17:11:10 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 45390 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id 713A8385803D | for ; Thu, 23 Sep 2021 17:28:03 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 713A8385803D |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1632418083; | bh=QlcA4ic5lMDECYhSdWsS3abSp0JPkUuu+E1kqFl+wUI=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=kOdVPFfWChmmG6CBQCkgQjT8toXJaqE0vNznasdQRwE7WwJprrGBdFsXE9uY2/edX | 8StVBtoCYjsrSwnVIePwjM/8ri1nJbTmhCvO7fW6lwLB+hoIrMChWIKWaaQO3iSr5A | ihsGTtC+rNsJBB64M0m2Nzqlzit0+Wo/38x6J4UQ= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) | by sourceware.org (Postfix) with ESMTPS id EE2C53857C52 | for ; Thu, 23 Sep 2021 17:12:59 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org EE2C53857C52 |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id 4E8311F44619 |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v2 21/22] selftests: futex: Test sys_futex_waitv() wouldblock |Date: Thu, 23 Sep 2021 14:11:10 -0300 |Message-Id: <20210923171111.300673-22-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.33.0 |In-Reply-To: <20210923171111.300673-1-andrealmeid@collabora.com> |References: <20210923171111.300673-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.2 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: Davidlohr Bueso , libc-alpha@sourceware.org, | linux-api@vger.kernel.org, mtk.manpages@gmail.com, =?utf-8?q?Andr=C3=A9_Alm?= | =?utf-8?q?eida?= , kernel@collabora.com, | krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |Test if futex_waitv() returns -EWOULDBLOCK correctly when the expected |value is different from the actual value for a waiter. | |Signed-off-by: André Almeida |--- | .../futex/functional/futex_wait_wouldblock.c | 41 +++++++++++++++++-- | 1 file changed, 37 insertions(+), 4 deletions(-) | |diff --git a/tools/testing/selftests/futex/functional/futex_wait_wouldblock.c b/tools/testing/selftests/futex/functional/futex_wait_wouldblock.c |index 0ae390ff8164..7d7a6a06cdb7 100644 |--- a/tools/testing/selftests/futex/functional/futex_wait_wouldblock.c |+++ b/tools/testing/selftests/futex/functional/futex_wait_wouldblock.c -------------------------- File to patch: Skip this patch? [y] Skipping patch. 3 out of 3 hunks ignored patching file Documentation/userspace-api/futex2.rst can't find file to patch at input line 11276 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/Documentation/userspace-api/index.rst b/Documentation/userspace-api/index.rst |index c432be070f67..a61eac0c73f8 100644 |--- a/Documentation/userspace-api/index.rst |+++ b/Documentation/userspace-api/index.rst -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored