From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 832DB15800F for ; Thu, 9 Feb 2023 12:47:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3371E079E; Thu, 9 Feb 2023 12:47:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 902F7E079E for ; Thu, 9 Feb 2023 12:47:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 97582335DB3 for ; Thu, 9 Feb 2023 12:47:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4300288E for ; Thu, 9 Feb 2023 12:47:17 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1675946823.85941b985a0a1a23d17486db978bd18577b97dcc.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:6.1 commit in: / X-VCS-Repository: proj/linux-patches X-VCS-Files: 5021_sched-alt-missing-rq-lock-irq-function.patch X-VCS-Directories: / X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: 85941b985a0a1a23d17486db978bd18577b97dcc X-VCS-Branch: 6.1 Date: Thu, 9 Feb 2023 12:47:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 22844888-45b8-43c8-8acd-9689955ec16e X-Archives-Hash: 4ed540170380d365b2fb439544399ea9 commit: 85941b985a0a1a23d17486db978bd18577b97dcc Author: Mike Pagano gentoo org> AuthorDate: Thu Feb 9 12:47:03 2023 +0000 Commit: Mike Pagano gentoo org> CommitDate: Thu Feb 9 12:47:03 2023 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=85941b98 Remove BMQ Fix patch Signed-off-by: Mike Pagano gentoo.org> 5021_sched-alt-missing-rq-lock-irq-function.patch | 30 ----------------------- 1 file changed, 30 deletions(-) diff --git a/5021_sched-alt-missing-rq-lock-irq-function.patch b/5021_sched-alt-missing-rq-lock-irq-function.patch deleted file mode 100644 index 04cca612..00000000 --- a/5021_sched-alt-missing-rq-lock-irq-function.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 4157360d2e1cbdfb8065f151dbe057b17188a23f Mon Sep 17 00:00:00 2001 -From: Tor Vic -Date: Mon, 7 Nov 2022 15:11:54 +0100 -Subject: [PATCH] sched/alt: Add missing rq_lock_irq() function to header file - ---- - kernel/sched/alt_sched.h | 7 +++++++ - 1 file changed, 7 insertions(+) - -diff --git a/kernel/sched/alt_sched.h b/kernel/sched/alt_sched.h -index 93ff3bddd36f..a00bc84b93b2 100644 ---- a/kernel/sched/alt_sched.h -+++ b/kernel/sched/alt_sched.h -@@ -387,6 +387,13 @@ task_rq_unlock(struct rq *rq, struct task_struct *p, struct rq_flags *rf) - raw_spin_unlock_irqrestore(&p->pi_lock, rf->flags); - } - -+static inline void -+rq_lock_irq(struct rq *rq, struct rq_flags *rf) -+ __acquires(rq->lock) -+{ -+ raw_spin_lock_irq(&rq->lock); -+} -+ - static inline void - rq_lock(struct rq *rq, struct rq_flags *rf) - __acquires(rq->lock) --- -GitLab -