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 BCFFF15808B for ; Sun, 27 Mar 2022 22:08:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAD29E085E; Sun, 27 Mar 2022 22:08:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id A94F9E0870 for ; Sun, 27 Mar 2022 22:08:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id 9ABB0343699 for ; Sun, 27 Mar 2022 22:08:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C50A0342 for ; Sun, 27 Mar 2022 22:08:26 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1648418825.6aecaf3e657fbc7bc7746786060cb0b7e0866db0.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/bluez/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/bluez/files/bluez-5.63-use-queue_push_tail.patch X-VCS-Directories: net-wireless/bluez/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 6aecaf3e657fbc7bc7746786060cb0b7e0866db0 X-VCS-Branch: master Date: Sun, 27 Mar 2022 22:08:26 +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: f3ccc9de-96d6-40ec-82f5-ab84aabe0bac X-Archives-Hash: 87224a8ceb41325c63169c869a0b604e commit: 6aecaf3e657fbc7bc7746786060cb0b7e0866db0 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sun Mar 27 11:45:24 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Mar 27 22:07:05 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6aecaf3e net-wireless/bluez: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/24775 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> .../files/bluez-5.63-use-queue_push_tail.patch | 27 ---------------------- 1 file changed, 27 deletions(-) diff --git a/net-wireless/bluez/files/bluez-5.63-use-queue_push_tail.patch b/net-wireless/bluez/files/bluez-5.63-use-queue_push_tail.patch deleted file mode 100644 index 6644e250cc48..000000000000 --- a/net-wireless/bluez/files/bluez-5.63-use-queue_push_tail.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 7b41f0c38ab34c9a5eec1a70669d183535e86287 Mon Sep 17 00:00:00 2001 -From: Florian Schmaus -Date: Fri, 17 Dec 2021 14:05:50 +0100 -Subject: [PATCH] DRAFT shared/att: Use queue_push_tail for - BT_ATT_OP_READ_BLOB_REQ - -As repoorted by Christopher Schramm [1], this is supposed to fix #220. - -1: https://github.com/bluez/bluez/issues/220#issuecomment-996669412 - -Suggested-by: Christopher Schramm ---- - src/shared/att.c | 1 - - 1 file changed, 1 deletion(-) - -diff --git a/src/shared/att.c b/src/shared/att.c -index 169f726e4..5ce735a07 100644 ---- a/src/shared/att.c -+++ b/src/shared/att.c -@@ -1653,7 +1653,6 @@ int bt_att_resend(struct bt_att *att, unsigned int id, uint8_t opcode, - - switch (opcode) { - /* Only prepend requests that could be a continuation */ -- case BT_ATT_OP_READ_BLOB_REQ: - case BT_ATT_OP_PREP_WRITE_REQ: - case BT_ATT_OP_EXEC_WRITE_REQ: - result = queue_push_head(att->req_queue, op);