From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH 1/1] Increase BLOCK_ALIGN from =?UTF-8?Q?2=C2=B9=E2=81=B0to_?= =?UTF-8?Q?2=C2=B9=E2=81=B5?= Resent-From: Konstantin Kharlamov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 13 Feb 2023 20:01:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 61489@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.167631844622733 (code B ref -1); Mon, 13 Feb 2023 20:01:02 +0000 Received: (at submit) by debbugs.gnu.org; 13 Feb 2023 20:00:46 +0000 Received: from localhost ([127.0.0.1]:51697 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRf0I-0005ua-7O for submit@debbugs.gnu.org; Mon, 13 Feb 2023 15:00:46 -0500 Received: from lists.gnu.org ([209.51.188.17]:39194) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRf0G-0005uS-SK for submit@debbugs.gnu.org; Mon, 13 Feb 2023 15:00:45 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRf05-0002mn-DP for bug-gnu-emacs@gnu.org; Mon, 13 Feb 2023 15:00:35 -0500 Received: from forward501b.mail.yandex.net ([178.154.239.145]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRf02-0005H8-Hu for bug-gnu-emacs@gnu.org; Mon, 13 Feb 2023 15:00:33 -0500 Received: from myt5-69594d4a41fa.qloud-c.yandex.net (myt5-69594d4a41fa.qloud-c.yandex.net [IPv6:2a02:6b8:c12:3ca5:0:640:6959:4d4a]) by forward501b.mail.yandex.net (Yandex) with ESMTP id 981425ED6E for ; Mon, 13 Feb 2023 23:00:23 +0300 (MSK) Received: by myt5-69594d4a41fa.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id D0pfBF3ZDeA1-cEWBKD0d; Mon, 13 Feb 2023 23:00:23 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1676318423; bh=KregnTdk5XQungtMTSbWt7ivIrNXYdSwiXb2WYQ3Jnw=; h=In-Reply-To:Message-Id:Date:Subject:References:To:From; b=Uwce7WwsEPeDzK2zx66bs+3RZmYjh3XoNzRAlOg9znKlLSv+LeVJhphQUFF4YGAJK O5p66ADV/IWdztbJwH3MuUxsAcDPgpd9WzFSXgxy7i8D33yS8C9GWySeYFLhc/61ol 3yXM9ZDH9oLIToOdgivribGGlKZi1U0HRRxZixdw= Authentication-Results: myt5-69594d4a41fa.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru From: Konstantin Kharlamov Date: Mon, 13 Feb 2023 23:00:06 +0300 Message-Id: <20230213200006.663502-2-Hi-Angel@yandex.ru> X-Mailer: git-send-email 2.39.0 In-Reply-To: <20230213200006.663502-1-Hi-Angel@yandex.ru> References: <20230213200006.663502-1-Hi-Angel@yandex.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.154.239.145; envelope-from=Hi-Angel@yandex.ru; helo=forward501b.mail.yandex.net X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) Originally discovered by Tyler Dodge in his article "Significant Garbage Collection Improvement For Emacs". While testing this change on Archlinux system with Intel i5-7200U CPU, average time of garbage collection gets reduced by ≈25%. While monitoring PSS of emacs with and without customizations loaded before and after the patch, no statistically significant differences were discovered. So overall, this change is a win. * src/alloc.c (BLOCK_ALIGN): increase from 2¹⁰ to 2¹⁵ --- src/alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/alloc.c b/src/alloc.c index c25e81d1dde..d278b01343d 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1083,7 +1083,7 @@ lisp_free (void *block) BLOCK_BYTES and guarantees they are aligned on a BLOCK_ALIGN boundary. */ /* Byte alignment of storage blocks. */ -#define BLOCK_ALIGN (1 << 10) +#define BLOCK_ALIGN (1 << 15) verify (POWER_OF_2 (BLOCK_ALIGN)); /* Use aligned_alloc if it or a simple substitute is available. -- 2.39.0 From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: Acknowledgement ([PATCH 1/1] Increase BLOCK_ALIGN from =?UTF-8?Q?2=C2=B9=E2=81=B0to_?= =?UTF-8?Q?2=C2=B9=E2=81=B5?=) Resent-From: Konstantin Kharlamov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 13 Feb 2023 20:06:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 61489@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.167631872623279 (code B ref 61489); Mon, 13 Feb 2023 20:06:01 +0000 Received: (at 61489) by debbugs.gnu.org; 13 Feb 2023 20:05:26 +0000 Received: from localhost ([127.0.0.1]:51712 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRf4n-00063O-NI for submit@debbugs.gnu.org; Mon, 13 Feb 2023 15:05:25 -0500 Received: from forward501c.mail.yandex.net ([178.154.239.209]:38434) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRf4l-00063G-SW for 61489@debbugs.gnu.org; Mon, 13 Feb 2023 15:05:24 -0500 Received: from iva3-7261916416be.qloud-c.yandex.net (iva3-7261916416be.qloud-c.yandex.net [IPv6:2a02:6b8:c0c:c19:0:640:7261:9164]) by forward501c.mail.yandex.net (Yandex) with ESMTP id 37F2F5ECAB for <61489@debbugs.gnu.org>; Mon, 13 Feb 2023 23:05:22 +0300 (MSK) Received: by iva3-7261916416be.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id L5pflS3Y8Gk1-BP4cdjeG; Mon, 13 Feb 2023 23:05:21 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1676318721; bh=KV8IejGgYmJdhDJKj9pktF5xFUYZDsn4LHqDd7URO70=; h=In-Reply-To:Date:References:To:From:Subject:Message-ID; b=eptNPYcS2uWTRDAzrvUHUDmRjYVh5vt5qYsiDeGtlf8aoZn1eOZo5XoSERhXHhCj/ cCEuJl+bkm8p8z9X/w5cdd0o18v7QcHUQ7+vyQu2FzW1BACtvPcwdzsC4+n5lBK70a x9azTl0seQtoYU/OqEbJ8HlDiDnAzY0qbuml+CEk= Authentication-Results: iva3-7261916416be.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: From: Konstantin Kharlamov Date: Mon, 13 Feb 2023 23:05:21 +0300 In-Reply-To: References: <20230213200006.663502-2-Hi-Angel@yandex.ru> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.3 MIME-Version: 1.0 X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Idk if it's a feature (bugtracker is an odd way of managing the patches in general, so who knows), but for the safe case I'll mention that debbugs cre= ated for the cover-letter email a separate page bug#61490 From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH 1/1] Increase BLOCK_ALIGN from =?UTF-8?Q?2=C2=B9=E2=81=B0to_?= =?UTF-8?Q?2=C2=B9=E2=81=B5?= Resent-From: Ihor Radchenko Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 13 Feb 2023 22:31:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Konstantin Kharlamov Cc: 61489@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.16763274087139 (code B ref 61489); Mon, 13 Feb 2023 22:31:01 +0000 Received: (at 61489) by debbugs.gnu.org; 13 Feb 2023 22:30:08 +0000 Received: from localhost ([127.0.0.1]:51909 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRhKp-0001r2-BQ for submit@debbugs.gnu.org; Mon, 13 Feb 2023 17:30:07 -0500 Received: from mout02.posteo.de ([185.67.36.66]:46663) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRhKl-0001pq-2d for 61489@debbugs.gnu.org; Mon, 13 Feb 2023 17:30:06 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id 75C04240336 for <61489@debbugs.gnu.org>; Mon, 13 Feb 2023 23:29:53 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1676327396; bh=Ou564x3zDBT8IEo1qWA5/h4HwvnIxtF8h14mo0JikvY=; h=From:To:Cc:Subject:Date:From; b=hseJQmsreTEEehXc+Z2yoobcqlKy720j3TlcXvbSbC2mU3TPbFZ/3e3MRF0hLr424 FVCJHKMZY8jBsNMhWo2d4idZSY43hjDeEUMIajaatssELbNn0vH67gedoC+xLloJYf BrCDt50OYCcpQ8/irrPPA9pgid6TC6xn476stk8gcpjYQR8Cpqw37PFM3heOb5lE4Y GrugWzp9uzxSvRDKKXeM2xqYzZGBx7bzPtjlNscmi0aVSOezfJtUymUxygJSnU8HEB uvqQo6WIVOFtYeS86ANtwzqKVpt0bWETy2l+78TpAD2fJQ10UIe0KKvTZ4x7AxU5GJ CHRwNMs4ajXGg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4PFzYB6x03z6tmP; Mon, 13 Feb 2023 23:29:50 +0100 (CET) From: Ihor Radchenko In-Reply-To: <20230213200006.663502-2-Hi-Angel@yandex.ru> References: <20230213200006.663502-1-Hi-Angel@yandex.ru> <20230213200006.663502-2-Hi-Angel@yandex.ru> Date: Mon, 13 Feb 2023 22:30:27 +0000 Message-ID: <87wn4lgpvg.fsf@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Konstantin Kharlamov writes: > While testing this change on Archlinux system with Intel i5-7200U CPU, > average time of garbage collection gets reduced by =E2=89=8825%. While > monitoring PSS of emacs with and without customizations loaded before > and after the patch, no statistically significant differences were > discovered. So overall, this change is a win. In GNU Emacs 30.0.50 (build 9, x86_64-pc-linux-gnu, GTK+ Version 3.24.35, cairo version 1.17.6) of 2023-02-14 built on localhost Repository revision: 51320630cfbc452326e1d0d7b8a313f682129ec1 Repository branch: kk/bug-61489-increase-block Windowing system distributor 'The X.Org Foundation', version 11.0.12101006 System Description: Gentoo Linux Linux localhost 6.1.9-gentoo-x86_64 #1 SMP PREEMPT_DYNAMIC Mon Feb 13 14:05:49 +03 2023 x86_64 Intel(R) Core(TM) i7-10510U CPU @ 1.80GHz GenuineIntel GNU/Linux Running the benchmark from the blog post: - without the patch: 0.600450 - with the patch: 0.321723 (~50% improvement) I also changed gc-cons-threshold to 250,000,000 and gc-cons-percentage to 0.0001. The results are nearly the same. Running (1) gc-cons-threshold <- most-positive-fixnum; (2) org-element-parse-buffer on huge Org file (22Mb) (3) garbage-collect: - with the patch: 1.2494823932647705 - without the patch: 1.1721010208129883 (~6% improvement) Memory consumption nearly unchanged. --=20 Ihor Radchenko // yantar92, Org mode contributor, Learn more about Org mode at . Support Org development at , or support my work at From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: Acknowledgement ([PATCH 1/1] Increase BLOCK_ALIGN from =?UTF-8?Q?2=C2=B9=E2=81=B0to_?= =?UTF-8?Q?2=C2=B9=E2=81=B5?=) Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 14 Feb 2023 03:30:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Konstantin Kharlamov Cc: 61489@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.16763453936313 (code B ref 61489); Tue, 14 Feb 2023 03:30:02 +0000 Received: (at 61489) by debbugs.gnu.org; 14 Feb 2023 03:29:53 +0000 Received: from localhost ([127.0.0.1]:52178 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRm0v-0001dj-Cp for submit@debbugs.gnu.org; Mon, 13 Feb 2023 22:29:53 -0500 Received: from eggs.gnu.org ([209.51.188.92]:44116) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRm0u-0001dY-48 for 61489@debbugs.gnu.org; Mon, 13 Feb 2023 22:29:52 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRm0o-0005zP-Rx; Mon, 13 Feb 2023 22:29:46 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=XVZ99ne35oKwj6Sx0yqmJYMxk4wFx1prYOL0jig3TAY=; b=FjfZ31olzxyYTrH3fQli A1QjsIdzFT9uwCTJEO4R5XdGaRHOUlQ4tPw9LEL9IxdvjuRTHWywa8WtsvWHq8K2jiXWBlwXm2M7b 3emrr6ydo+GmsHhj7zVEGETPs77pO8E9YuwWJw2HcJ4fRuj75oFueecmXDAURPlh7pqk0AjjajVQh gLXbtx9gb5fDTod9QxFxqlBxaViBiowAyCJkmi5HV5z008owWyFFxp9zZ8+Wk2+g1Z3Kw7O2C42Om PwlObGGpbAZ3SQxN4N9W8MRe4P021B/yhmggAfTGjBCvE+yJWZr74DXv6MqJh2bwdZyPCzMmNbT6O 0KXkpoKpV2//dA==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRm0o-00062Y-1y; Mon, 13 Feb 2023 22:29:46 -0500 Date: Tue, 14 Feb 2023 05:29:24 +0200 Message-Id: <83k00kexgr.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: (message from Konstantin Kharlamov on Mon, 13 Feb 2023 23:05:21 +0300) References: <20230213200006.663502-2-Hi-Angel@yandex.ru> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Konstantin Kharlamov > Date: Mon, 13 Feb 2023 23:05:21 +0300 > > Idk if it's a feature (bugtracker is an odd way of managing the patches in > general, so who knows), but for the safe case I'll mention that debbugs created > for the cover-letter email a separate page bug#61490 You should never change the Subject of a bug report, unless you want a new bug created by the tracker. From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: Acknowledgement ([PATCH 1/1] Increase BLOCK_ALIGN from =?UTF-8?Q?2=C2=B9=E2=81=B0to_?= =?UTF-8?Q?2=C2=B9=E2=81=B5?=) Resent-From: Konstantin Kharlamov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 14 Feb 2023 06:47:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: 61489@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.167635716314459 (code B ref 61489); Tue, 14 Feb 2023 06:47:02 +0000 Received: (at 61489) by debbugs.gnu.org; 14 Feb 2023 06:46:03 +0000 Received: from localhost ([127.0.0.1]:52333 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRp4l-0003l6-9p for submit@debbugs.gnu.org; Tue, 14 Feb 2023 01:46:03 -0500 Received: from forward502b.mail.yandex.net ([178.154.239.146]:53300) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRp4h-0003kR-RX for 61489@debbugs.gnu.org; Tue, 14 Feb 2023 01:46:01 -0500 Received: from sas1-d879273d667a.qloud-c.yandex.net (sas1-d879273d667a.qloud-c.yandex.net [IPv6:2a02:6b8:c14:3a29:0:640:d879:273d]) by forward502b.mail.yandex.net (Yandex) with ESMTP id 8052E5EC48; Tue, 14 Feb 2023 09:45:56 +0300 (MSK) Received: by sas1-d879273d667a.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id tjcIMC8aMGk1-Ow7hb66z; Tue, 14 Feb 2023 09:45:56 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1676357156; bh=jxmx0mxmVf840vLJ5LiGmUDnaTsOD0kAJfX+AGeRG1c=; h=References:Date:In-Reply-To:Cc:To:From:Subject:Message-ID; b=Jj3qzxbOXyNIB4y6Qtn17ukIH/Z0Y0PUXgRo6+OIVy2bqF0QpZ8btn35m00LD8epz n3wl1uYM5+v6ju+KDrfdy2XhrDYIJPro0mJKpbJk6TsFD9jFh+CH7eJl+5OvSzesfA hY2h5RW7FWPDTaiaYmRfsUqJDu4n9hoDIpnrU2pI= Authentication-Results: sas1-d879273d667a.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: From: Konstantin Kharlamov Date: Tue, 14 Feb 2023 09:45:54 +0300 In-Reply-To: <83k00kexgr.fsf@gnu.org> References: <20230213200006.663502-2-Hi-Angel@yandex.ru> <83k00kexgr.fsf@gnu.org> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.3 MIME-Version: 1.0 X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Tue, 2023-02-14 at 05:29 +0200, Eli Zaretskii wrote: > > From: Konstantin Kharlamov > > Date: Mon, 13 Feb 2023 23:05:21 +0300 > >=20 > > Idk if it's a feature (bugtracker is an odd way of managing the patches= in > > general, so who knows), but for the safe case I'll mention that debbugs > > created > > for the cover-letter email a separate page bug#61490 >=20 > You should never change the Subject of a bug report, unless you want a > new bug created by the tracker. Thank you. But, how one sends a patch series then? From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: Acknowledgement ([PATCH 1/1] Increase BLOCK_ALIGN from =?UTF-8?Q?2=C2=B9=E2=81=B0to_?= =?UTF-8?Q?2=C2=B9=E2=81=B5?=) Resent-From: Konstantin Kharlamov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 14 Feb 2023 06:57:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: 61489@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.167635778615722 (code B ref 61489); Tue, 14 Feb 2023 06:57:02 +0000 Received: (at 61489) by debbugs.gnu.org; 14 Feb 2023 06:56:26 +0000 Received: from localhost ([127.0.0.1]:52341 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRpEo-00045W-8j for submit@debbugs.gnu.org; Tue, 14 Feb 2023 01:56:26 -0500 Received: from forward502b.mail.yandex.net ([178.154.239.146]:40112) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRpEl-00045K-Il for 61489@debbugs.gnu.org; Tue, 14 Feb 2023 01:56:24 -0500 Received: from sas2-ef0d127adaec.qloud-c.yandex.net (sas2-ef0d127adaec.qloud-c.yandex.net [IPv6:2a02:6b8:c14:6d1f:0:640:ef0d:127a]) by forward502b.mail.yandex.net (Yandex) with ESMTP id A98195F01A; Tue, 14 Feb 2023 09:56:21 +0300 (MSK) Received: by sas2-ef0d127adaec.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id KucVN08Z1Cg1-ktv2onYj; Tue, 14 Feb 2023 09:56:21 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1676357781; bh=Lhy3fV3BytK8T/UU0aiO2nDrWqyaLFn67/lOsYlr0hU=; h=References:Date:In-Reply-To:Cc:To:From:Subject:Message-ID; b=LHXi3xtbyLwQSdW9wBRSnVcRkCLYWo8WrC8SaY3vEFZGCM4SOsxI5UfR7fAyQoZOQ N1U4UwAmWnVESZmzlxtqdjEQp4whS1vuraVc+qszr+/ji6sKugyBzMYc0mihZcqp4t BuJrL01S0buIimqJ4xTxan3N/KL05QxHkVuAupQw= Authentication-Results: sas2-ef0d127adaec.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <54c4b591cceb5b5a3b4b7eb531e6e881e9bb63b2.camel@yandex.ru> From: Konstantin Kharlamov Date: Tue, 14 Feb 2023 09:56:19 +0300 In-Reply-To: References: <20230213200006.663502-2-Hi-Angel@yandex.ru> <83k00kexgr.fsf@gnu.org> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.3 MIME-Version: 1.0 X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Tue, 2023-02-14 at 09:45 +0300, Konstantin Kharlamov wrote: > On Tue, 2023-02-14 at 05:29 +0200, Eli Zaretskii wrote: > > > From: Konstantin Kharlamov > > > Date: Mon, 13 Feb 2023 23:05:21 +0300 > > >=20 > > > Idk if it's a feature (bugtracker is an odd way of managing the patch= es in > > > general, so who knows), but for the safe case I'll mention that debbu= gs > > > created > > > for the cover-letter email a separate page bug#61490 > >=20 > > You should never change the Subject of a bug report, unless you want a > > new bug created by the tracker. >=20 > Thank you. But, how one sends a patch series then? FTR, I vaguely remember this problem has been discussed, probably on the ma= iling list. I recall someone said this shouldn't happen while sending a ser= ies with `git-send-email`, then someone (me or not) mentioned that with deb= uggs `git-send-email` exactly result like this; and after that I don't reme= mber anything. It probably has been discussed as part of the thread about g= it forges, so it's possible the discussion just moved on then. From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: Acknowledgement ([PATCH 1/1] Increase BLOCK_ALIGN from =?UTF-8?Q?2=C2=B9=E2=81=B0to_?= =?UTF-8?Q?2=C2=B9=E2=81=B5?=) Resent-From: Robert Pluim Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 14 Feb 2023 08:22:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Konstantin Kharlamov Cc: Eli Zaretskii , 61489@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.167636286824489 (code B ref 61489); Tue, 14 Feb 2023 08:22:02 +0000 Received: (at 61489) by debbugs.gnu.org; 14 Feb 2023 08:21:08 +0000 Received: from localhost ([127.0.0.1]:52450 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRqYm-0006Mv-0d for submit@debbugs.gnu.org; Tue, 14 Feb 2023 03:21:08 -0500 Received: from mail-wr1-f46.google.com ([209.85.221.46]:37451) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRqYj-0006M1-So for 61489@debbugs.gnu.org; Tue, 14 Feb 2023 03:21:06 -0500 Received: by mail-wr1-f46.google.com with SMTP id m10so5836446wrn.4 for <61489@debbugs.gnu.org>; Tue, 14 Feb 2023 00:21:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:message-id:date:references:in-reply-to:subject:cc:to :from:from:to:cc:subject:date:message-id:reply-to; bh=E78FVv8IXSDSjeKuOIJ+JpbCmcljr4Bz96BJHFKBwfo=; b=i97ESKqM/fe0N+Tilk2h50oGd+aFTHkalu3WLiAUb2nTngqA7Q12YmYKOdhaCnFAxi XWRqnL5I4JOSFiLPDPScft7DZuhz95i0bWda2NPrhK9NP+AwdlSaIstciC5Sufeql9gC QHt9xqLUPo3l7htQTOPRdb1poV6MumC3qGMh8/CHVKXv0APFDRFL7uHCI6ZZfQ9SGym6 o2sCyJlFKf3QlmKX7URhyHmYYTSgsK0jloIDAz8q5LvjfODX9bfQpr2OUNcE580GPdds qFQ6Honu30hmros6voqOcRJTCHRTmGjOJejaUfnAcS1BVZv2sl11zMH8vgRN3r7Xh8eB mkZg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=mime-version:message-id:date:references:in-reply-to:subject:cc:to :from:x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=E78FVv8IXSDSjeKuOIJ+JpbCmcljr4Bz96BJHFKBwfo=; b=QMNVG+tkSLgOf8pJIB36lIRXWGzJItvWWMrb85pMHW0KJpDUv9SUXNBeN1bi7tBwCN N3DUDJpV78w7L3sJJFS9cWGdP1qTNFI3Kp5QroX0vyUL1hfnqX1XO38yHnuulE/GStK3 AAEucFpaq2Z+zF6/NeRiJ6Xdm/3MRIZ4fSsEM1qYIDSIpHQZu1vhTeK9I7D8CcTYLIO1 UH3SJIqk09OV5jp4FZIawThpKAZVTE1pHCVQT0WlM1bWG4SKgU85QsMYrSkzu2+Kj/y/ 10o7aSvjs31hHaOmFGrsZDJicENbPFoUdE0TTy6ZHrs0N8hPK375E1IGhD9JetSIWEpp g2IQ== X-Gm-Message-State: AO0yUKU89dQsKzemO0rfdU8Okg9Kf0x41c5Csjcy88qk9i8jDKKrL4pb cmAoU9iPZdub01j4lej9UCr3Gr+0yMo= X-Google-Smtp-Source: AK7set+weuLyCMf9z03Yh57vTxNYMA9TNy/GsWACq8+UZSJYTNRmsP6kMVgswJ88THDNBrsyqgE5Ww== X-Received: by 2002:adf:f08b:0:b0:2c3:f4fe:c77f with SMTP id n11-20020adff08b000000b002c3f4fec77fmr1311835wro.57.1676362859607; Tue, 14 Feb 2023 00:20:59 -0800 (PST) Received: from rltb ([82.66.8.55]) by smtp.gmail.com with ESMTPSA id w1-20020a5d4041000000b002c546d169ddsm10817333wrp.11.2023.02.14.00.20.58 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 14 Feb 2023 00:20:59 -0800 (PST) From: Robert Pluim In-Reply-To: <54c4b591cceb5b5a3b4b7eb531e6e881e9bb63b2.camel@yandex.ru> (Konstantin Kharlamov's message of "Tue, 14 Feb 2023 09:56:19 +0300") References: <20230213200006.663502-2-Hi-Angel@yandex.ru> <83k00kexgr.fsf@gnu.org> <54c4b591cceb5b5a3b4b7eb531e6e881e9bb63b2.camel@yandex.ru> Date: Tue, 14 Feb 2023 09:20:58 +0100 Message-ID: <87ilg4psid.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) >>>>> On Tue, 14 Feb 2023 09:56:19 +0300, Konstantin Kharlamov said: Konstantin> On Tue, 2023-02-14 at 09:45 +0300, Konstantin Kharlamov wrote: >> On Tue, 2023-02-14 at 05:29 +0200, Eli Zaretskii wrote: >> > > From: Konstantin Kharlamov >> > > Date: Mon, 13 Feb 2023 23:05:21 +0300 >> > > >> > > Idk if it's a feature (bugtracker is an odd way of managing the patches in >> > > general, so who knows), but for the safe case I'll mention that debbugs >> > > created >> > > for the cover-letter email a separate page bug#61490 >> > >> > You should never change the Subject of a bug report, unless you want a >> > new bug created by the tracker. >> >> Thank you. But, how one sends a patch series then? You send your cover letter to bug-gnu-emacs, which creates a bug . You then send the rest of the series to @debbugs.gnu.org (for extra credit, you put the bug number in the commit message before doing this). Robert -- From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: Acknowledgement ([PATCH 1/1] Increase BLOCK_ALIGN from =?UTF-8?Q?2=C2=B9=E2=81=B0to_?= =?UTF-8?Q?2=C2=B9=E2=81=B5?=) Resent-From: Konstantin Kharlamov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 14 Feb 2023 08:23:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Robert Pluim Cc: Eli Zaretskii , 61489@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.167636297624679 (code B ref 61489); Tue, 14 Feb 2023 08:23:02 +0000 Received: (at 61489) by debbugs.gnu.org; 14 Feb 2023 08:22:56 +0000 Received: from localhost ([127.0.0.1]:52461 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRqaW-0006Pz-2X for submit@debbugs.gnu.org; Tue, 14 Feb 2023 03:22:56 -0500 Received: from forward502b.mail.yandex.net ([178.154.239.146]:39164) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRqaT-0006Pp-19 for 61489@debbugs.gnu.org; Tue, 14 Feb 2023 03:22:54 -0500 Received: from myt5-69594d4a41fa.qloud-c.yandex.net (myt5-69594d4a41fa.qloud-c.yandex.net [IPv6:2a02:6b8:c12:3ca5:0:640:6959:4d4a]) by forward502b.mail.yandex.net (Yandex) with ESMTP id 13FD05EFD2; Tue, 14 Feb 2023 11:22:51 +0300 (MSK) Received: by myt5-69594d4a41fa.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id nMeTrb0YACg1-thy1euI6; Tue, 14 Feb 2023 11:22:50 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1676362970; bh=u72zSltkx7Od91HoJW4kqtT7CxMluyI6dvmbYJ2Bjrg=; h=References:Date:In-Reply-To:Cc:To:From:Subject:Message-ID; b=sa4DzpCzkzxmeYG/nnneQkiMoxCaT212aGs41l+ceBuXa93sW1/jpnNuKzt/LuzMn ibqKbMEXm0HW02vdfrdE4aSCOm2Ep9w6ksIJhXYnHdi92hZXMVnjXjY0XcHKHfqN4B jiRSI1h5n0nxKT5vaZ38hVRaLieMIxaDuY1iIgSI= Authentication-Results: myt5-69594d4a41fa.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <9fa5c7981f273454f87ddd04b104be857bb7c7d7.camel@yandex.ru> From: Konstantin Kharlamov Date: Tue, 14 Feb 2023 11:22:49 +0300 In-Reply-To: <87ilg4psid.fsf@gmail.com> References: <20230213200006.663502-2-Hi-Angel@yandex.ru> <83k00kexgr.fsf@gnu.org> <54c4b591cceb5b5a3b4b7eb531e6e881e9bb63b2.camel@yandex.ru> <87ilg4psid.fsf@gmail.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.3 MIME-Version: 1.0 X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Tue, 2023-02-14 at 09:20 +0100, Robert Pluim wrote: > > > > > > On Tue, 14 Feb 2023 09:56:19 +0300, Konstantin Kharlamov > > > > > > said: >=20 > =C2=A0=C2=A0=C2=A0 Konstantin> On Tue, 2023-02-14 at 09:45 +0300, Konstan= tin Kharlamov wrote: > =C2=A0=C2=A0=C2=A0 >> On Tue, 2023-02-14 at 05:29 +0200, Eli Zaretskii wr= ote: > =C2=A0=C2=A0=C2=A0 >> > > From: Konstantin Kharlamov > =C2=A0=C2=A0=C2=A0 >> > > Date: Mon, 13 Feb 2023 23:05:21 +0300 > =C2=A0=C2=A0=C2=A0 >> > >=20 > =C2=A0=C2=A0=C2=A0 >> > > Idk if it's a feature (bugtracker is an odd way= of managing the > patches in > =C2=A0=C2=A0=C2=A0 >> > > general, so who knows), but for the safe case I= 'll mention that > debbugs > =C2=A0=C2=A0=C2=A0 >> > > created > =C2=A0=C2=A0=C2=A0 >> > > for the cover-letter email a separate page bug#= 61490 > =C2=A0=C2=A0=C2=A0 >> >=20 > =C2=A0=C2=A0=C2=A0 >> > You should never change the Subject of a bug repo= rt, unless you want > a > =C2=A0=C2=A0=C2=A0 >> > new bug created by the tracker. > =C2=A0=C2=A0=C2=A0 >>=20 > =C2=A0=C2=A0=C2=A0 >> Thank you. But, how one sends a patch series then? >=20 > You send your cover letter to bug-gnu-emacs, which creates a bug > . You then send the rest of the series to > @debbugs.gnu.org (for extra credit, you put the bug number > in the commit message before doing this). But this won't work, because every patch has a different title. So if debbu= gs creates a new report per title, this means the problem will still persist. From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: Acknowledgement ([PATCH 1/1] Increase BLOCK_ALIGN from =?UTF-8?Q?2=C2=B9=E2=81=B0to_?= =?UTF-8?Q?2=C2=B9=E2=81=B5?=) Resent-From: Konstantin Kharlamov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 14 Feb 2023 08:30:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Robert Pluim Cc: Eli Zaretskii , 61489@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.167636336425342 (code B ref 61489); Tue, 14 Feb 2023 08:30:02 +0000 Received: (at 61489) by debbugs.gnu.org; 14 Feb 2023 08:29:24 +0000 Received: from localhost ([127.0.0.1]:52475 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRqgm-0006af-EF for submit@debbugs.gnu.org; Tue, 14 Feb 2023 03:29:24 -0500 Received: from forward500c.mail.yandex.net ([178.154.239.208]:47092) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRqgi-0006aV-JL for 61489@debbugs.gnu.org; Tue, 14 Feb 2023 03:29:21 -0500 Received: from myt6-459ab7c4bc67.qloud-c.yandex.net (myt6-459ab7c4bc67.qloud-c.yandex.net [IPv6:2a02:6b8:c12:201c:0:640:459a:b7c4]) by forward500c.mail.yandex.net (Yandex) with ESMTP id 277465EAF1; Tue, 14 Feb 2023 11:29:19 +0300 (MSK) Received: by myt6-459ab7c4bc67.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id HTen4f0YdGk1-cwFboDVZ; Tue, 14 Feb 2023 11:29:18 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1676363358; bh=NeNvg/Q8PvT8uI59uLw+++UvgMlLggQu5ExLTQ0sG7M=; h=References:Date:In-Reply-To:Cc:To:From:Subject:Message-ID; b=fUbDjfd7mBSm1ALuBJAv1eE4cGogvUn1criIq8DxcdnLD7ckyWRYuQMQL1p64VN7H hldQAjIzgowGk4o9MsnzP69yPDfujmvQRvWE7Ss4an1aNNfttlOXLck8cJq2LOMHfJ gHj73c0kOfxXykpBxaasJo+Zbwd7K3idhFnb42I4= Authentication-Results: myt6-459ab7c4bc67.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: From: Konstantin Kharlamov Date: Tue, 14 Feb 2023 11:29:17 +0300 In-Reply-To: <9fa5c7981f273454f87ddd04b104be857bb7c7d7.camel@yandex.ru> References: <20230213200006.663502-2-Hi-Angel@yandex.ru> <83k00kexgr.fsf@gnu.org> <54c4b591cceb5b5a3b4b7eb531e6e881e9bb63b2.camel@yandex.ru> <87ilg4psid.fsf@gmail.com> <9fa5c7981f273454f87ddd04b104be857bb7c7d7.camel@yandex.ru> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.3 MIME-Version: 1.0 X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Tue, 2023-02-14 at 11:22 +0300, Konstantin Kharlamov wrote: > On Tue, 2023-02-14 at 09:20 +0100, Robert Pluim wrote: > > > > > > > On Tue, 14 Feb 2023 09:56:19 +0300, Konstantin Kharlamov > > > > > > > said: > >=20 > > =C2=A0=C2=A0=C2=A0 Konstantin> On Tue, 2023-02-14 at 09:45 +0300, Konst= antin Kharlamov > > wrote: > > =C2=A0=C2=A0=C2=A0 >> On Tue, 2023-02-14 at 05:29 +0200, Eli Zaretskii = wrote: > > =C2=A0=C2=A0=C2=A0 >> > > From: Konstantin Kharlamov > > =C2=A0=C2=A0=C2=A0 >> > > Date: Mon, 13 Feb 2023 23:05:21 +0300 > > =C2=A0=C2=A0=C2=A0 >> > >=20 > > =C2=A0=C2=A0=C2=A0 >> > > Idk if it's a feature (bugtracker is an odd w= ay of managing the > > patches in > > =C2=A0=C2=A0=C2=A0 >> > > general, so who knows), but for the safe case= I'll mention that > > debbugs > > =C2=A0=C2=A0=C2=A0 >> > > created > > =C2=A0=C2=A0=C2=A0 >> > > for the cover-letter email a separate page bu= g#61490 > > =C2=A0=C2=A0=C2=A0 >> >=20 > > =C2=A0=C2=A0=C2=A0 >> > You should never change the Subject of a bug re= port, unless you > > want > > a > > =C2=A0=C2=A0=C2=A0 >> > new bug created by the tracker. > > =C2=A0=C2=A0=C2=A0 >>=20 > > =C2=A0=C2=A0=C2=A0 >> Thank you. But, how one sends a patch series then= ? > >=20 > > You send your cover letter to bug-gnu-emacs, which creates a bug > > . You then send the rest of the series to > > @debbugs.gnu.org (for extra credit, you put the bug number > > in the commit message before doing this). >=20 > But this won't work, because every patch has a different title. So if deb= bugs > creates a new report per title, this means the problem will still persist= . Oh, sorry, I'm being stupid. Right, there's no report will be created becau= se I send the series to the existing report. Sorry. From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: Acknowledgement ([PATCH 1/1] Increase BLOCK_ALIGN from =?UTF-8?Q?2=C2=B9=E2=81=B0to_?= =?UTF-8?Q?2=C2=B9=E2=81=B5?=) Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 14 Feb 2023 13:27:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Robert Pluim Cc: 61489@debbugs.gnu.org, hi-angel@yandex.ru Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.16763811982502 (code B ref 61489); Tue, 14 Feb 2023 13:27:01 +0000 Received: (at 61489) by debbugs.gnu.org; 14 Feb 2023 13:26:38 +0000 Received: from localhost ([127.0.0.1]:52885 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRvKP-0000eH-Qq for submit@debbugs.gnu.org; Tue, 14 Feb 2023 08:26:38 -0500 Received: from eggs.gnu.org ([209.51.188.92]:47168) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRvKO-0000e2-EU for 61489@debbugs.gnu.org; Tue, 14 Feb 2023 08:26:36 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRvKI-0006nN-PM; Tue, 14 Feb 2023 08:26:30 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=LFREtUAejUUmKEYslMqviVYgM3G5QHtf7Jds+A6pIus=; b=hYU1kwUNWiVc/5rWr8An Hno3hJtwIb5puu1wyMQD0QkvWBLV3zMISiKqrqKaps/B7dAvKrb6hl4ru7znPM/gKe+ZGjT2bMFhK 5wHYmMddQ3zhWNsRu8Sq60P9YAZM8pGl9Bx3ZHoP8YGUnzSntrzH/pjVle0LJh6uDI/T+YbSHfnlv g4gf53tA2SdesZ24nAaWpHc67keutv9P3C5snwGPDaBfdMmyymJIF4oY0NfZllWjBpuLvKPrIXZzo mePe1fFbLVLZ3Y8iI9mb9CZQxTVU32OQM6Msfk8oPF0hktsEwS6LAkwyzae7rAblEhbRiVXm6p4mX EitD7sNdkXS/Pw==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRvKH-0003sI-RB; Tue, 14 Feb 2023 08:26:30 -0500 Date: Tue, 14 Feb 2023 15:26:08 +0200 Message-Id: <835yc4e5u7.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: <87ilg4psid.fsf@gmail.com> (message from Robert Pluim on Tue, 14 Feb 2023 09:20:58 +0100) References: <20230213200006.663502-2-Hi-Angel@yandex.ru> <83k00kexgr.fsf@gnu.org> <54c4b591cceb5b5a3b4b7eb531e6e881e9bb63b2.camel@yandex.ru> <87ilg4psid.fsf@gmail.com> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Robert Pluim > Cc: Eli Zaretskii , 61489@debbugs.gnu.org > Date: Tue, 14 Feb 2023 09:20:58 +0100 > > >>>>> On Tue, 14 Feb 2023 09:56:19 +0300, Konstantin Kharlamov said: > > >> Thank you. But, how one sends a patch series then? > > You send your cover letter to bug-gnu-emacs, which creates a bug > . You then send the rest of the series to > @debbugs.gnu.org (for extra credit, you put the bug number > in the commit message before doing this). Alternatively, send all of the patches in a single email message as attachments, then you don't need to wait for the bug tracker to allocate a number. Whether this is convenient enough for you depends on your workflows vis-a-vis Git and "git format-patch", and also what is your MUA and how it is configured. From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: Open a bug report with git-send-email (was: bug#61489: Acknowledgement ([PATCH 1/1] Increase BLOCK_ALIGN from =?UTF-8?Q?2=C2=B9=E2=81=B0to_?= =?UTF-8?Q?2=C2=B9=E2=81=B5?=)) Resent-From: =?UTF-8?Q?K=C3=A9vin?= Le Gouguec Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 15 Feb 2023 07:05:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: Robert Pluim , 61489@debbugs.gnu.org, hi-angel@yandex.ru Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.16764446456338 (code B ref 61489); Wed, 15 Feb 2023 07:05:02 +0000 Received: (at 61489) by debbugs.gnu.org; 15 Feb 2023 07:04:05 +0000 Received: from localhost ([127.0.0.1]:57625 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pSBpl-0001eA-BG for submit@debbugs.gnu.org; Wed, 15 Feb 2023 02:04:05 -0500 Received: from mail-wr1-f45.google.com ([209.85.221.45]:38767) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pSBpk-0001dh-5m for 61489@debbugs.gnu.org; Wed, 15 Feb 2023 02:04:04 -0500 Received: by mail-wr1-f45.google.com with SMTP id k3so10387862wrv.5 for <61489@debbugs.gnu.org>; Tue, 14 Feb 2023 23:04:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:user-agent:message-id:date:references:in-reply-to :subject:cc:to:from:from:to:cc:subject:date:message-id:reply-to; bh=3zoqMrXO6MKMlGTldD7rQ5cDD5XscBOwrt9Ii53ncAA=; b=mEO/edm70lEE7eHu8nLtEfHoEHzsLfcHo4u5G6ZNPD/i/I6FQUYy0ep1V5A1h19rRT tI7dISqbDaJbUAHdZDbd90yl5+ZCM9LjowCUZzxL8q3koTI8GT7UuiAYhQKbrCnllVpu 4uBRvHTQuqdY9svMbU2+iUQ7dJh3XTN29uRdj2nyrCdjZM2GZclYPvV3LBWsoBDlrLvy UTHVcS1nLccJspGlVpFMie2umtyZmDhmSnOmdovwEcfzl4GUKbD57fmQq6WlhdvdS0Q/ EIDMp9mQi5NSIbRHv//oRbgC+pPIOF+GLgwEY6n37jvmDZ6IF2mMS2PdSZtbgFMY0pgy XoZQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=mime-version:user-agent:message-id:date:references:in-reply-to :subject:cc:to:from:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=3zoqMrXO6MKMlGTldD7rQ5cDD5XscBOwrt9Ii53ncAA=; b=jWS7qZG4N5HN514LxsMwmSC3oio9PSgS+t+tHXcENnxHX10xF1Rl3EP9hmhKfbL1da wPe4qOOk40u0ZehJFHu4clEeu1D1uHZE78A4CiezSLAqFwuVlsPSLdK9crRJiJYWFEeH FJXsBBd+Cea8CoBsQzKnVwCdG7sGQoLjnFxJ+TBb6sUzMeQjvxiAeVX2AbIsdtDxSlMP 242TFn65Iey2f06f5PHeact+2zOshdg3XoDHmxX1aSUAUKMJiCKuq06QHl1Ssc07fpG9 hYPDbNu2aFgXd1yDVvSVM38vro2bLGPCLbybCo4lPwtLM4JJtHpcaSAJYjhpiS08oL/D vEyw== X-Gm-Message-State: AO0yUKXtSmb2EwPyavhyJiwjnjBhcS1gByeaBdMeEr0mgKR6t7uCoPB1 q+Iq+7AcwZJwB/bjwZF40UQ= X-Google-Smtp-Source: AK7set97DG+DjGT4LEsoXL9saGNfVkZRhKYAjb5SCa5Vkdmho5QQMGYgZUmpR8r7QompwyOZkPZtdg== X-Received: by 2002:adf:ef91:0:b0:2c5:4d16:8d73 with SMTP id d17-20020adfef91000000b002c54d168d73mr811903wro.40.1676444637975; Tue, 14 Feb 2023 23:03:57 -0800 (PST) Received: from amdahl30 ([2a01:e0a:253:fe0:2ef0:5dff:fed2:7b49]) by smtp.gmail.com with ESMTPSA id v12-20020a5d610c000000b002c56a991971sm1860086wrt.76.2023.02.14.23.03.56 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 14 Feb 2023 23:03:57 -0800 (PST) From: =?UTF-8?Q?K=C3=A9vin?= Le Gouguec In-Reply-To: <835yc4e5u7.fsf@gnu.org> (Eli Zaretskii's message of "Tue, 14 Feb 2023 15:26:08 +0200") References: <20230213200006.663502-2-Hi-Angel@yandex.ru> <83k00kexgr.fsf@gnu.org> <54c4b591cceb5b5a3b4b7eb531e6e881e9bb63b2.camel@yandex.ru> <87ilg4psid.fsf@gmail.com> <835yc4e5u7.fsf@gnu.org> Date: Wed, 15 Feb 2023 08:03:56 +0100 Message-ID: <877cwjpfz7.fsf_-_@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Eli Zaretskii writes: >> From: Robert Pluim >> Cc: Eli Zaretskii , 61489@debbugs.gnu.org >> Date: Tue, 14 Feb 2023 09:20:58 +0100 >> >> >>>>> On Tue, 14 Feb 2023 09:56:19 +0300, Konstantin Kharlamov >> said: >> >> >> Thank you. But, how one sends a patch series then? >> >> You send your cover letter to bug-gnu-emacs, which creates a bug >> . You then send the rest of the series to >> @debbugs.gnu.org (for extra credit, you put the bug number >> in the commit message before doing this). > > Alternatively, send all of the patches in a single email message as > attachments, then you don't need to wait for the bug tracker to > allocate a number. Whether this is convenient enough for you depends > on your workflows vis-a-vis Git and "git format-patch", and also what > is your MUA and how it is configured. See e.g. bug#48592 for an example of Robert's procedure (modulo amending the commit messages with the bug number): https://debbugs.gnu.org/cgi/bugreport.cgi?bug=48592 https://yhetil.org/emacs-bugs/20210522202519.32549-1-jonas@bernoul.li/ GUIX documents this in more detail: https://guix.gnu.org/manual/en/html_node/Sending-a-Patch-Series.html#Multiple-Patches-1 IIUC we have bug#15361 open to make debbugs understand this kind of submission without this workaround. From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 References: <20230213200006.663502-2-Hi-Angel@yandex.ru> In-Reply-To: <20230213200006.663502-2-Hi-Angel@yandex.ru> Resent-From: Konstantin Kharlamov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 16 Feb 2023 15:09:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 61489@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.167656011325146 (code B ref 61489); Thu, 16 Feb 2023 15:09:01 +0000 Received: (at 61489) by debbugs.gnu.org; 16 Feb 2023 15:08:33 +0000 Received: from localhost ([127.0.0.1]:37220 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pSfs8-0006XV-UP for submit@debbugs.gnu.org; Thu, 16 Feb 2023 10:08:33 -0500 Received: from forward101p.mail.yandex.net ([77.88.28.101]:43614) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pSfs5-0006XA-T7 for 61489@debbugs.gnu.org; Thu, 16 Feb 2023 10:08:30 -0500 Received: from myt5-18b0513eae63.qloud-c.yandex.net (myt5-18b0513eae63.qloud-c.yandex.net [IPv6:2a02:6b8:c12:571f:0:640:18b0:513e]) by forward101p.mail.yandex.net (Yandex) with ESMTP id 188AB59CEACE for <61489@debbugs.gnu.org>; Thu, 16 Feb 2023 18:08:23 +0300 (MSK) Received: by myt5-18b0513eae63.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id 38nsQ3CYMeA1-CH4FFUUU; Thu, 16 Feb 2023 18:08:22 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1676560102; bh=C51/vTi82smkeU/D6lAdfqs9j60DDd2vLmF3g4pJaJY=; h=Message-Id:Date:Subject:To:From; b=tTJsgRyhz2yLreAvjGAaWstSviWhyjebF+vOE1haJ2h0os8BSNYUHrRWBogiBazkQ vnC0XZ/NxIrXm/xJupKKPl7OgJ7rYkwYNGJb7XHpP03fjksTtV2etKtjWWxzGZf/hC UY9Q5WzwYeFOlSwtXs1yljvjEHAh5qNUOmvoVOR4= Authentication-Results: myt5-18b0513eae63.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru From: Konstantin Kharlamov Date: Thu, 16 Feb 2023 18:07:55 +0300 Message-Id: <20230216150755.27359-1-Hi-Angel@yandex.ru> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Originally discovered by Tyler Dodge in his article "Significant Garbage Collection Improvement For Emacs". While testing this change on Archlinux system with Intel i5-7200U CPU, average time of garbage collection gets reduced by ≈25%. Other users report improvements up to 50%. While monitoring PSS of emacs with and without customizations loaded before and after the patch, no statistically significant differences were discovered. So overall, this change is a win. * src/alloc.c (BLOCK_ALIGN): increase from 1024 to 32768 --- v2: * Richard Stallman: don't use non-ASCII in the description * Me: mention the report by Ihor Radchenko where performance improved by 50% src/alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/alloc.c b/src/alloc.c index c25e81d1dde..d278b01343d 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1083,7 +1083,7 @@ lisp_free (void *block) BLOCK_BYTES and guarantees they are aligned on a BLOCK_ALIGN boundary. */ /* Byte alignment of storage blocks. */ -#define BLOCK_ALIGN (1 << 10) +#define BLOCK_ALIGN (1 << 15) verify (POWER_OF_2 (BLOCK_ALIGN)); /* Use aligned_alloc if it or a simple substitute is available. -- 2.39.2 From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Konstantin Kharlamov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 23 Feb 2023 15:31:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 61489@debbugs.gnu.org Cc: 61490@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.1677166206773 (code B ref 61489); Thu, 23 Feb 2023 15:31:02 +0000 Received: (at 61489) by debbugs.gnu.org; 23 Feb 2023 15:30:06 +0000 Received: from localhost ([127.0.0.1]:35010 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVDXq-0000CO-4X for submit@debbugs.gnu.org; Thu, 23 Feb 2023 10:30:06 -0500 Received: from forward500a.mail.yandex.net ([178.154.239.80]:47588) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVDXn-0000Bq-NK; Thu, 23 Feb 2023 10:30:05 -0500 Received: from vla5-ea54f853bdd2.qloud-c.yandex.net (vla5-ea54f853bdd2.qloud-c.yandex.net [IPv6:2a02:6b8:c18:3e9f:0:640:ea54:f853]) by forward500a.mail.yandex.net (Yandex) with ESMTP id 457E95E558; Thu, 23 Feb 2023 18:30:01 +0300 (MSK) Received: by vla5-ea54f853bdd2.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id 0URLnj6ZHqM1-lhL9VCje; Thu, 23 Feb 2023 18:30:00 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1677166200; bh=TBjroJD4vPv9Td6hKF2NMMHrjcKH+rEO5ak2KuboOWw=; h=References:Date:In-Reply-To:Cc:To:From:Subject:Message-ID; b=LhR3DGC3qitTg6D7gIrCMGGCaqYXknyffMltZW5nt8XW8MWvjpXSc6U9N2R4RlxMg NRLwGzFL+d55J5Q5JQFl1WeSFv6yt+YcLNpyraFdPeJhtw3YsJsZG95dCkKzdhrxhl 8tTX2EM8SGuJOASZ8D4xwGvoGSSdPsarLI4ayYNk= Authentication-Results: vla5-ea54f853bdd2.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <91c854289aa121d38d91699e976832e463ba90ba.camel@yandex.ru> From: Konstantin Kharlamov Date: Thu, 23 Feb 2023 18:30:00 +0300 In-Reply-To: <20230216150755.27359-1-Hi-Angel@yandex.ru> References: <20230216150755.27359-1-Hi-Angel@yandex.ru> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.4 MIME-Version: 1.0 X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) So, it's been a week since version 2 was posted and 10-11 days since I star= ted using the change locally. Everything has been nice and dandy, and in absenc= e of further comments, I wonder if somebody with write permissions could merge t= his patch? P.S.: since there's a duplicate issues (one for the cover letter of the pat= ch and another for the patch itself, I decided to add the second issue to CC). From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Robert Pluim Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 23 Feb 2023 15:50:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Konstantin Kharlamov Cc: 61489@debbugs.gnu.org, 61490@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.16771673572859 (code B ref 61489); Thu, 23 Feb 2023 15:50:02 +0000 Received: (at 61489) by debbugs.gnu.org; 23 Feb 2023 15:49:17 +0000 Received: from localhost ([127.0.0.1]:35036 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVDqO-0000jx-OV for submit@debbugs.gnu.org; Thu, 23 Feb 2023 10:49:17 -0500 Received: from mail-wm1-f49.google.com ([209.85.128.49]:39442) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVDqM-0000jf-1o; Thu, 23 Feb 2023 10:49:14 -0500 Received: by mail-wm1-f49.google.com with SMTP id o4-20020a05600c4fc400b003e1f5f2a29cso11015831wmq.4; Thu, 23 Feb 2023 07:49:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:references :in-reply-to:subject:cc:to:from:from:to:cc:subject:date:message-id :reply-to; bh=nEy69gwNvKDHzesznljIL1u1CYoCAj8j1ZkqEccwLLI=; b=T7JkIPSIz7YFFgx3vqU2XtUTWN6aY0VRwLWDI8cLzc6mbHf7WNzk9IlR97LZy7RX8o k9gm4wzn+IVjSKQumWm9hJs1wTUkA+8kyBAnEIDszKqdXHM/q+y15fHJSt6mfeeaTpgS bBG9+oRJVLMkr90ovxELQ+ymaDlzgLQWffbh/RcWAxaCDU7aXkuxBMgoj0rSFh8uMD7H JK7qFaYQAve3MI3npY30Q97bZNBbT00eJdCpPG1e5crZgAI3KAXyaF3L7epMZjHi+J5a 8kg51FAuzDMNlrTXYIYLmHmgXNXEhvE3qqE8bIOrI5FS+QbKnXsB3vQzo1Ant67drtZr w2qA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:references :in-reply-to:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=nEy69gwNvKDHzesznljIL1u1CYoCAj8j1ZkqEccwLLI=; b=XhQ9n20ff8WxsAVT6Fu9S88qGLA+EAwMaLR/NHYnb/wGB6xIoKfBpTOtpnpsQoYJbp M2IorgI296ywbscqVwBZ9kCNcIz9QjHz9ERcAFulbWONL74F4H/kxTTlNfwRoSjGY9Zz SBZM/t7FxsCCGwfnqs66RuG6t3KE412xJvHzxVkV7rJBuCKTwEiBwSRxXPU6JjeUpYcy 6A93KUwQRW5lnpJwLUJLR/q238eRK1PGfAVta2he9g9oBItA2iUPX9f6m7ozKe3NX+ed yXhvSxYrrqusRTCPhmoSREkRxtfmEHJSY4i7CbEIm1vggkSExvzYEzko0hcdN6AL+Izp j+xw== X-Gm-Message-State: AO0yUKXJFSVedVLHPT4nbWPhCckHqU1qspF4sUspI+OHZjB8fNz52kHo YBBZ4TaA+cHYxtsdQrkdqOtz9gxXdWw= X-Google-Smtp-Source: AK7set8QdzD8VQRRnLZyR3PS5FZUuUj2RIoKngPMWiPCKnvhzHHgHKwz2iarMTCdrCGfYvx/oeITMQ== X-Received: by 2002:a05:600c:2ad6:b0:3e8:fade:3795 with SMTP id t22-20020a05600c2ad600b003e8fade3795mr4784051wme.17.1677167345949; Thu, 23 Feb 2023 07:49:05 -0800 (PST) Received: from rltb ([82.66.8.55]) by smtp.gmail.com with ESMTPSA id bl1-20020adfe241000000b002c54d8b89efsm11322992wrb.26.2023.02.23.07.49.05 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 23 Feb 2023 07:49:05 -0800 (PST) From: Robert Pluim In-Reply-To: <91c854289aa121d38d91699e976832e463ba90ba.camel@yandex.ru> (Konstantin Kharlamov's message of "Thu, 23 Feb 2023 18:30:00 +0300") References: <20230216150755.27359-1-Hi-Angel@yandex.ru> <91c854289aa121d38d91699e976832e463ba90ba.camel@yandex.ru> Date: Thu, 23 Feb 2023 16:49:04 +0100 Message-ID: <87edqg8jrj.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) >>>>> On Thu, 23 Feb 2023 18:30:00 +0300, Konstantin Kharlamov said: Konstantin> So, it's been a week since version 2 was posted and 10-11 d= ays since I started Konstantin> using the change locally. Everything has been nice and dand= y, and in absence of Konstantin> further comments, I wonder if somebody with write permissio= ns could merge this Konstantin> patch? I=CA=BCve had no issues with it. Eli? Does this require 'Copyright-paperwor= k-exempt: yes'? Konstantin> P.S.: since there's a duplicate issues (one for the cover l= etter of the patch Konstantin> and another for the patch itself, I decided to add the seco= nd issue to CC). We can close 61489 or merge it with 61490. Probably the latter is best. Robert --=20 From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Konstantin Kharlamov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 23 Feb 2023 15:54:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Robert Pluim Cc: 61489@debbugs.gnu.org, 61490@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.16771675893206 (code B ref 61489); Thu, 23 Feb 2023 15:54:01 +0000 Received: (at 61489) by debbugs.gnu.org; 23 Feb 2023 15:53:09 +0000 Received: from localhost ([127.0.0.1]:35041 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVDu9-0000pd-Er for submit@debbugs.gnu.org; Thu, 23 Feb 2023 10:53:09 -0500 Received: from forward501b.mail.yandex.net ([178.154.239.145]:60624) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVDu6-0000pO-Tw; Thu, 23 Feb 2023 10:53:08 -0500 Received: from sas1-61ab5dc724a3.qloud-c.yandex.net (sas1-61ab5dc724a3.qloud-c.yandex.net [IPv6:2a02:6b8:c08:162d:0:640:61ab:5dc7]) by forward501b.mail.yandex.net (Yandex) with ESMTP id 6339E5EBCE; Thu, 23 Feb 2023 18:53:03 +0300 (MSK) Received: by sas1-61ab5dc724a3.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id 2rRw6q5bdiE1-AHfGLaPj; Thu, 23 Feb 2023 18:53:03 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1677167583; bh=buFYyEAzvM5Fuv6w6ojT8E3ABcQqboAHCQcRVIuznlM=; h=References:Date:In-Reply-To:Cc:To:From:Subject:Message-ID; b=siTlBCz4e9iKjnxXHnsaRAx+VdIAvy+vDHJLfMxveioQzrwTKslYkFGTkF2ec3KHU diER48nyllI0FVZr2P6jZXq7YA/eAds7DHGEcg69ci6Dn1F9BGcQ6n+5pzEIc9ih/x XIBneuUkgAD7gdqJeOAghUOZ7/DDakzjWDo0/Wbo= Authentication-Results: sas1-61ab5dc724a3.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: From: Konstantin Kharlamov Date: Thu, 23 Feb 2023 18:53:02 +0300 In-Reply-To: <87edqg8jrj.fsf@gmail.com> References: <20230216150755.27359-1-Hi-Angel@yandex.ru> <91c854289aa121d38d91699e976832e463ba90ba.camel@yandex.ru> <87edqg8jrj.fsf@gmail.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.4 MIME-Version: 1.0 X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 2023-02-23 at 16:49 +0100, Robert Pluim wrote: > > > > > > On Thu, 23 Feb 2023 18:30:00 +0300, Konstantin Kharlamov > > > > > > said: >=20 > =C2=A0=C2=A0=C2=A0 Konstantin> So, it's been a week since version 2 was p= osted and 10-11 days > since I started > =C2=A0=C2=A0=C2=A0 Konstantin> using the change locally. Everything has b= een nice and dandy, > and in absence of > =C2=A0=C2=A0=C2=A0 Konstantin> further comments, I wonder if somebody wit= h write permissions > could merge this > =C2=A0=C2=A0=C2=A0 Konstantin> patch? >=20 > I=CA=BCve had no issues with it. Eli? Does this require 'Copyright-paperw= ork- > exempt: yes'? No, I have a copyright assignment with GNU for Emacs, it's just that I don'= t write permissions :) From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Robert Pluim Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 23 Feb 2023 15:58:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Konstantin Kharlamov Cc: 61489@debbugs.gnu.org, 61490@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.16771678403646 (code B ref 61489); Thu, 23 Feb 2023 15:58:01 +0000 Received: (at 61489) by debbugs.gnu.org; 23 Feb 2023 15:57:20 +0000 Received: from localhost ([127.0.0.1]:35061 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVDyC-0000wf-Fk for submit@debbugs.gnu.org; Thu, 23 Feb 2023 10:57:20 -0500 Received: from mail-wr1-f43.google.com ([209.85.221.43]:34453) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVDyA-0000wM-4i; Thu, 23 Feb 2023 10:57:18 -0500 Received: by mail-wr1-f43.google.com with SMTP id c12so11053954wrw.1; Thu, 23 Feb 2023 07:57:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:references :in-reply-to:subject:cc:to:from:from:to:cc:subject:date:message-id :reply-to; bh=RxS2CZrkpemjc9/yQA3ijHhXn+HfxUEXVFwTXkUqrLs=; b=MOQF3XgYv8TllVwMe84nJetKQGM1+MSn4U22VPHrzkzGlyhOFYBIzqZKi1Z0vtJT42 ye0Vft9cqcvPg7aQmHN9xNzAgk6hd3SjoeSJjt6CMZDyjCDfC2b3QMqUj01gn4R7KYVK TFogVyNmn1A4e9bNFf4UfPK/vo3P2W2zY4xHoSWaYzdOUDczDLOk4TXZX6+BoO5d/hl8 VHXgx0h8Zf7IoqSmP/sRBHI55DVaDALnMZgiIq7T7rcG1iu5g9ur94bDIwgLW4nQr3FD jzq7aUT3qIJkIYy+/HnfL+aWPojd2HGNbHI9eR3sp7vi5VaYGhnggNYCPhVrCyL5BXeS j8Cg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:references :in-reply-to:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=RxS2CZrkpemjc9/yQA3ijHhXn+HfxUEXVFwTXkUqrLs=; b=4FpEJuCEgPh7Sc7gIIJ5JjzwD9r2oCi0ccB3kKU2bWRVYRzM0O58Kwks7fL1D6x16c T6qrrwCEW39bWYqN6VqpeAcCQWL3aFWrnF3IdXW+p2bV1MqmcMRkgnRu4xi2OzKaTiix X+Y9m5+nt0JdoRRjHcuKS5ZHHAmWCgRJZF1EWc3lNJGjdFNetPixzJVEuC1XUXetRzZs MQyfz+gGZhEJuq3Nfklw1AvmvzuLDj0nngonEWxcusO2GmkUXuuKffwJ8N9MbV/kuc4u vp60csWYwlE+CwTbaaQk3qNZvoa+IgrKBpTclhfWWzDWaamCHLF5KtMUu+v/ngnWMRJw /3QA== X-Gm-Message-State: AO0yUKVUPaPJAOo4dHN2QR6zJuiAmaC8512KOs9fh73yb8+yhDa8h6bE fy60FYCgNcetY6s/2tlJQUSR04s/dr4= X-Google-Smtp-Source: AK7set/bf+QBdltYu3GZ91NRdRYs9hG2+9nASeMAMnQls/6TELiF40cLRjXbgaWo7Q8eB8q0KA3/Uw== X-Received: by 2002:a5d:5045:0:b0:2c5:8a5a:fc01 with SMTP id h5-20020a5d5045000000b002c58a5afc01mr11143596wrt.11.1677167831814; Thu, 23 Feb 2023 07:57:11 -0800 (PST) Received: from rltb ([82.66.8.55]) by smtp.gmail.com with ESMTPSA id p14-20020a5d4e0e000000b002c5a790e959sm13062597wrt.19.2023.02.23.07.57.11 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 23 Feb 2023 07:57:11 -0800 (PST) From: Robert Pluim In-Reply-To: (Konstantin Kharlamov's message of "Thu, 23 Feb 2023 18:53:02 +0300") References: <20230216150755.27359-1-Hi-Angel@yandex.ru> <91c854289aa121d38d91699e976832e463ba90ba.camel@yandex.ru> <87edqg8jrj.fsf@gmail.com> Date: Thu, 23 Feb 2023 16:57:10 +0100 Message-ID: <87a6148je1.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) >>>>> On Thu, 23 Feb 2023 18:53:02 +0300, Konstantin Kharlamov said: Konstantin> On Thu, 2023-02-23 at 16:49 +0100, Robert Pluim wrote: >> > > > > > On Thu, 23 Feb 2023 18:30:00 +0300, Konstantin Kharlamov >> > > > > > said: >>=20 >> =C2=A0=C2=A0=C2=A0 Konstantin> So, it's been a week since version 2 = was posted and 10-11 days >> since I started >> =C2=A0=C2=A0=C2=A0 Konstantin> using the change locally. Everything = has been nice and dandy, >> and in absence of >> =C2=A0=C2=A0=C2=A0 Konstantin> further comments, I wonder if somebod= y with write permissions >> could merge this >> =C2=A0=C2=A0=C2=A0 Konstantin> patch? >>=20 >> I=CA=BCve had no issues with it. Eli? Does this require 'Copyright-p= aperwork- >> exempt: yes'? Konstantin> No, I have a copyright assignment with GNU for Emacs, it's = just that I don't write permissions :) OK. I can=CA=BCt find any commits in your name using 'hi-angel@yandex.ru>' as the email address, is it under a different one? Thanks Robert --=20 From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Konstantin Kharlamov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 23 Feb 2023 16:06:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Robert Pluim Cc: 61489@debbugs.gnu.org, 61490@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.16771683284539 (code B ref 61489); Thu, 23 Feb 2023 16:06:02 +0000 Received: (at 61489) by debbugs.gnu.org; 23 Feb 2023 16:05:28 +0000 Received: from localhost ([127.0.0.1]:35084 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVE64-0001B8-87 for submit@debbugs.gnu.org; Thu, 23 Feb 2023 11:05:28 -0500 Received: from forward500a.mail.yandex.net ([178.154.239.80]:59138) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVE61-0001Au-IS; Thu, 23 Feb 2023 11:05:27 -0500 Received: from vla5-91e5293da019.qloud-c.yandex.net (vla5-91e5293da019.qloud-c.yandex.net [IPv6:2a02:6b8:c18:3e1f:0:640:91e5:293d]) by forward500a.mail.yandex.net (Yandex) with ESMTP id 091A15EA39; Thu, 23 Feb 2023 19:05:23 +0300 (MSK) Received: by vla5-91e5293da019.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id M5SHJu6iD4Y1-WtTU3rTC; Thu, 23 Feb 2023 19:05:22 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1677168322; bh=9ik/RT6mf/xba+VoXgIv+ZLVquYaLkWLi9MtgFXCk38=; h=References:Date:In-Reply-To:Cc:To:From:Subject:Message-ID; b=NcPRCzINFy4XKKoHhAijMa/4oqHoSvdHqDOzLcDgA16tOiJQITwwWu7lrH3kL/mvQ qtlHsDGunpuiUwrYYkRtVrGeu/u+ZngL1xs3IG0FOZO6a8hXze+71mp3QpVKX6H2w8 beFdP5PJNvs3iIXk7q18zreg7o0G8KFrHdJkGems= Authentication-Results: vla5-91e5293da019.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <9ed2f583346431e979022db775815bb62dc36db0.camel@yandex.ru> From: Konstantin Kharlamov Date: Thu, 23 Feb 2023 19:05:22 +0300 In-Reply-To: <87a6148je1.fsf@gmail.com> References: <20230216150755.27359-1-Hi-Angel@yandex.ru> <91c854289aa121d38d91699e976832e463ba90ba.camel@yandex.ru> <87edqg8jrj.fsf@gmail.com> <87a6148je1.fsf@gmail.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.4 MIME-Version: 1.0 X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 2023-02-23 at 16:57 +0100, Robert Pluim wrote: > > > > > > On Thu, 23 Feb 2023 18:53:02 +0300, Konstantin Kharlamov > > > > > > said: >=20 > =C2=A0=C2=A0=C2=A0 Konstantin> On Thu, 2023-02-23 at 16:49 +0100, Robert = Pluim wrote: > =C2=A0=C2=A0=C2=A0 >> > > > > > On Thu, 23 Feb 2023 18:30:00 +0300, Konst= antin Kharlamov > =C2=A0=C2=A0=C2=A0 >> > > > > > said: > =C2=A0=C2=A0=C2=A0 >>=20 > =C2=A0=C2=A0=C2=A0 >> =C2=A0=C2=A0=C2=A0 Konstantin> So, it's been a week= since version 2 was posted and 10- > 11 days > =C2=A0=C2=A0=C2=A0 >> since I started > =C2=A0=C2=A0=C2=A0 >> =C2=A0=C2=A0=C2=A0 Konstantin> using the change loc= ally. Everything has been nice and > dandy, > =C2=A0=C2=A0=C2=A0 >> and in absence of > =C2=A0=C2=A0=C2=A0 >> =C2=A0=C2=A0=C2=A0 Konstantin> further comments, I = wonder if somebody with write > permissions > =C2=A0=C2=A0=C2=A0 >> could merge this > =C2=A0=C2=A0=C2=A0 >> =C2=A0=C2=A0=C2=A0 Konstantin> patch? > =C2=A0=C2=A0=C2=A0 >>=20 > =C2=A0=C2=A0=C2=A0 >> I=CA=BCve had no issues with it. Eli? Does this req= uire 'Copyright- > paperwork- > =C2=A0=C2=A0=C2=A0 >> exempt: yes'? >=20 > =C2=A0=C2=A0=C2=A0 Konstantin> No, I have a copyright assignment with GNU= for Emacs, it's > just that I don't write permissions :) >=20 > OK. I can=CA=BCt find any commits in your name using 'hi-angel@yandex.ru>= ' > as the email address, is it under a different one? Well, the "Hi-Angel" is my old nickname, so I typically upcase it, includin= g inside the email address. So my email inside git config is "email =3D Hi-Angel@yandex.ru", and similarly to find my commits with `git-log` you go= tta use a: git log --author=3D"Hi-Angel@yandex.ru" From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Robert Pluim Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 23 Feb 2023 16:35:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Konstantin Kharlamov Cc: 61489@debbugs.gnu.org, 61490@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.16771700617366 (code B ref 61489); Thu, 23 Feb 2023 16:35:01 +0000 Received: (at 61489) by debbugs.gnu.org; 23 Feb 2023 16:34:21 +0000 Received: from localhost ([127.0.0.1]:35130 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVEY0-0001ug-RW for submit@debbugs.gnu.org; Thu, 23 Feb 2023 11:34:21 -0500 Received: from mail-wr1-f48.google.com ([209.85.221.48]:42982) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVEXz-0001uN-9v; Thu, 23 Feb 2023 11:34:19 -0500 Received: by mail-wr1-f48.google.com with SMTP id j2so10965980wrh.9; Thu, 23 Feb 2023 08:34:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:references :in-reply-to:subject:cc:to:from:from:to:cc:subject:date:message-id :reply-to; bh=s3ipNJs/CSCU3vnVTWs9RoULwWDL7YN7+/hSizHF+3c=; b=RLB4QTIsc5roDYHpr4kyRGGJdM8hPlHXCfGVihU1NEo87zqbhlgPPl05I0sEb/YK12 1k4/i5Gdj6L51MceY8ESDyluyiQAfDEMVawf0c/COpyWCcatbyml/Y8IFB86+/ba47nt 6MjfqY2ZFxpwJ/VXm1uKU0Cw2AWFSGJ+pDho0MM1GsgeZ8UR0NR+vG37W2UkIyLFnLUa dHvAYVKflcaMSfQ/BufoPziKBSaZNGOCqYFICgivvGnNUjbeVv1Yhbla+53ofIm7UXp8 I1bvAoXZZpKt269vjEhg72aL/c95cFZABw+yrZ/awiHhz0k+2kz9FAuoEibeF9hiCZl+ K0jg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:references :in-reply-to:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=s3ipNJs/CSCU3vnVTWs9RoULwWDL7YN7+/hSizHF+3c=; b=5hcX2FgJBF2bbw/etzdjCB5qqsLpWEYnkA1hqXXRioAONOI7R4Ka53lV4IwuENfDWc pEaKBxe3X2zXgYYx/8bdntTDdeuCeEz7/0afSv4V7kAy2yfWtXP9ETExK7URmtJ1+LVq KaXmsnw/NhiPyEEVyM3e6O4ZEfMxalTVVC/LY6oYxlQLgDu6ACKuBHF/xv+6bY2X0DQG aJq1/nZlzCWPPLXSzuL4O69zIYmdAedFVnrwnPnxtUzWWLQNZO1N5HVe6MXiyf5fnId3 jBl36RB11rVXnn/VTZGWQ72H8pUbvIMzu38d82lBK7acyMJXqr5DSPajS9FuvaY1cymi 3NWw== X-Gm-Message-State: AO0yUKW7QxY7J3d+aHZZL/e90vorGHToFmIFzPHvNv5MFXPcdOkG3ERi Yr0IPYdNOQ4WHJf/ITCGa+rM/6bLZS0= X-Google-Smtp-Source: AK7set/R2FHIwRpasz3XR4PUsxn42PEGTz+vvtz228zlpgkOc9mfDJNA8yoNwpnc5WuwWrXaDt32DA== X-Received: by 2002:a5d:40c9:0:b0:2c7:13e4:2094 with SMTP id b9-20020a5d40c9000000b002c713e42094mr2161710wrq.42.1677170053237; Thu, 23 Feb 2023 08:34:13 -0800 (PST) Received: from rltb ([82.66.8.55]) by smtp.gmail.com with ESMTPSA id n3-20020a1c7203000000b003dc522dd25esm11694796wmc.30.2023.02.23.08.34.12 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 23 Feb 2023 08:34:12 -0800 (PST) From: Robert Pluim In-Reply-To: <9ed2f583346431e979022db775815bb62dc36db0.camel@yandex.ru> (Konstantin Kharlamov's message of "Thu, 23 Feb 2023 19:05:22 +0300") References: <20230216150755.27359-1-Hi-Angel@yandex.ru> <91c854289aa121d38d91699e976832e463ba90ba.camel@yandex.ru> <87edqg8jrj.fsf@gmail.com> <87a6148je1.fsf@gmail.com> <9ed2f583346431e979022db775815bb62dc36db0.camel@yandex.ru> Date: Thu, 23 Feb 2023 17:34:12 +0100 Message-ID: <871qmg8hob.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 1.0 (+) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) >>>>> On Thu, 23 Feb 2023 19:05:22 +0300, Konstantin Kharlamov said: Konstantin> On Thu, 2023-02-23 at 16:57 +0100, Robert Pluim wrote: >> > > > > > On Thu, 23 Feb 2023 18:53:02 +0300, Konstantin Kharlamov >> > > > > > said: >>=20 >> =C2=A0=C2=A0=C2=A0 Konstantin> On Thu, 2023-02-23 at 16:49 +0100, Ro= bert Pluim wrote: >> =C2=A0=C2=A0=C2=A0 >> > > > > > On Thu, 23 Feb 2023 18:30:00 +0300, = Konstantin Kharlamov >> =C2=A0=C2=A0=C2=A0 >> > > > > > said: >> =C2=A0=C2=A0=C2=A0 >>=20 >> =C2=A0=C2=A0=C2=A0 >> =C2=A0=C2=A0=C2=A0 Konstantin> So, it's been a= week since version 2 was posted and 10- >> 11 days >> =C2=A0=C2=A0=C2=A0 >> since I started >> =C2=A0=C2=A0=C2=A0 >> =C2=A0=C2=A0=C2=A0 Konstantin> using the chang= e locally. Everything has been nice and >> dandy, >> =C2=A0=C2=A0=C2=A0 >> and in absence of >> =C2=A0=C2=A0=C2=A0 >> =C2=A0=C2=A0=C2=A0 Konstantin> further comment= s, I wonder if somebody with write >> permissions >> =C2=A0=C2=A0=C2=A0 >> could merge this >> =C2=A0=C2=A0=C2=A0 >> =C2=A0=C2=A0=C2=A0 Konstantin> patch? >> =C2=A0=C2=A0=C2=A0 >>=20 >> =C2=A0=C2=A0=C2=A0 >> I=CA=BCve had no issues with it. Eli? Does thi= s require 'Copyright- >> paperwork- >> =C2=A0=C2=A0=C2=A0 >> exempt: yes'? >>=20 >> =C2=A0=C2=A0=C2=A0 Konstantin> No, I have a copyright assignment wit= h GNU for Emacs, it's >> just that I don't write permissions :) >>=20 >> OK. I can=CA=BCt find any commits in your name using 'hi-angel@yande= x.ru>' >> as the email address, is it under a different one? Konstantin> Well, the "Hi-Angel" is my old nickname, so I typically upc= ase it, including Konstantin> inside the email address. So my email inside git config is = "email =3D Konstantin> Hi-Angel@yandex.ru", and similarly to find my commits with = `git-log` you gotta Konstantin> use a: Konstantin> git log --author=3D"Hi-Angel@yandex.ru" TIL that I haven=CA=BCt turned on enough case-insensitivity in my git aliases :-) Robert --=20 From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 23 Feb 2023 16:41:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Robert Pluim Cc: 61489@debbugs.gnu.org, 61490@debbugs.gnu.org, hi-angel@yandex.ru Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.16771704477984 (code B ref 61489); Thu, 23 Feb 2023 16:41:01 +0000 Received: (at 61489) by debbugs.gnu.org; 23 Feb 2023 16:40:47 +0000 Received: from localhost ([127.0.0.1]:35138 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVEeE-00024b-VH for submit@debbugs.gnu.org; Thu, 23 Feb 2023 11:40:47 -0500 Received: from eggs.gnu.org ([209.51.188.92]:42668) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVEeC-00024J-Ek; Thu, 23 Feb 2023 11:40:44 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pVEe6-0001nK-PV; Thu, 23 Feb 2023 11:40:38 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=A1rruiMj0O57a8k1wY3Ndo0EllXs6eCUg91xy5i9gig=; b=GPdhZzu5j+rH7xQcF4ws uKVNZzKVMZj5ICZjNWjac6s5MZsI6w+QDTA5bwM7U3omYrbiUNqi0etVCLREqiVw41N6YuiMy5JP2 SymmZRnhNLUa0Jec1b8gend+WEwQqjP8Oes4nK5XqR8xHMcnoaneIjOPUrCuFewgfg+FGXbX/opmC acYZ5R0OrSh7yuz0laIPcISW0TlCtDgvwLcp41hQ0RG1nTc3LxQwnFU8pHcjKcX2kBDecTYce6+jo recEgw+DLAnzR92itGSdl5KKeoLOPxZzWVL/PfgMFD3qcVdvQOdvWFOMhnLHwkUglLYgt38xnvppW /ycluj+KCXLE2Q==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pVEe6-0005fU-2E; Thu, 23 Feb 2023 11:40:38 -0500 Date: Thu, 23 Feb 2023 18:40:35 +0200 Message-Id: <83pma0pc70.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: <87edqg8jrj.fsf@gmail.com> (message from Robert Pluim on Thu, 23 Feb 2023 16:49:04 +0100) References: <20230216150755.27359-1-Hi-Angel@yandex.ru> <91c854289aa121d38d91699e976832e463ba90ba.camel@yandex.ru> <87edqg8jrj.fsf@gmail.com> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > Cc: 61489@debbugs.gnu.org, 61490@debbugs.gnu.org > From: Robert Pluim > Date: Thu, 23 Feb 2023 16:49:04 +0100 > > >>>>> On Thu, 23 Feb 2023 18:30:00 +0300, Konstantin Kharlamov said: > > Konstantin> So, it's been a week since version 2 was posted and 10-11 days since I started > Konstantin> using the change locally. Everything has been nice and dandy, and in absence of > Konstantin> further comments, I wonder if somebody with write permissions could merge this > Konstantin> patch? > > Iʼve had no issues with it. Eli? Does this require 'Copyright-paperwork-exempt: yes'? Yes, it does. From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: bug#61490: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Thu, 23 Feb 2023 16:42:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Konstantin Kharlamov Cc: rpluim@gmail.com, 61489@debbugs.gnu.org, 61490@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.16771705118135 (code B ref 61489); Thu, 23 Feb 2023 16:42:02 +0000 Received: (at 61489) by debbugs.gnu.org; 23 Feb 2023 16:41:51 +0000 Received: from localhost ([127.0.0.1]:35146 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVEfG-000277-P3 for submit@debbugs.gnu.org; Thu, 23 Feb 2023 11:41:51 -0500 Received: from eggs.gnu.org ([209.51.188.92]:35096) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVEf8-00026g-Ko; Thu, 23 Feb 2023 11:41:49 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pVEf3-00021c-F1; Thu, 23 Feb 2023 11:41:37 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=AO4qbcM4EatXOoNGnR8J5oKyLuES2PKPNFtewzzfcOw=; b=pLBOUMGjJvCM7LsFsiEL Le7oKwAUCmsZC4YpTEVYEr0nThJfSQLPKa5RGX4ajwW1k4SYcWTkG7lZDv0Cbk6jlxoZSBWmLtYak FnZPkf1GvUs3T5osr7rMgOFBgxEV0A48Kt3GJbufP7U4ADlqf9x6dHfTRmlkaiOuhN3hzpNRObLV7 JP+nT0XoNCVlzF37WC7UHj5gTiItInv9O+Fd+FzO+mXHwX7ZwIF5tt/IgiixHId0p4bbC/mnwsU7j oFj5hOKgNlSaPryl8d5salpuyo39wM2TD/gFTBTrrIIDcyYBgQxEy3EgT27dSUQ7VRFGFJd0ae2L3 SlZ33ApzW9HSng==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pVEf2-0005pZ-Ti; Thu, 23 Feb 2023 11:41:37 -0500 Date: Thu, 23 Feb 2023 18:41:34 +0200 Message-Id: <83o7pkpc5d.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: (message from Konstantin Kharlamov on Thu, 23 Feb 2023 18:53:02 +0300) References: <20230216150755.27359-1-Hi-Angel@yandex.ru> <91c854289aa121d38d91699e976832e463ba90ba.camel@yandex.ru> <87edqg8jrj.fsf@gmail.com> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > Cc: 61489@debbugs.gnu.org, 61490@debbugs.gnu.org > From: Konstantin Kharlamov > Date: Thu, 23 Feb 2023 18:53:02 +0300 > > On Thu, 2023-02-23 at 16:49 +0100, Robert Pluim wrote: > > > > > > > On Thu, 23 Feb 2023 18:30:00 +0300, Konstantin Kharlamov > > > > > > > said: > > > >     Konstantin> So, it's been a week since version 2 was posted and 10-11 days > > since I started > >     Konstantin> using the change locally. Everything has been nice and dandy, > > and in absence of > >     Konstantin> further comments, I wonder if somebody with write permissions > > could merge this > >     Konstantin> patch? > > > > Iʼve had no issues with it. Eli? Does this require 'Copyright-paperwork- > > exempt: yes'? > > No, I have a copyright assignment with GNU for Emacs, it's just that I don't write permissions :) Sorry, you are right. Ignore my previous message where I said the Copyright-paperwork-exempt thingy is necessary. From debbugs-submit-bounces@debbugs.gnu.org Fri Feb 24 05:48:40 2023 Received: (at control) by debbugs.gnu.org; 24 Feb 2023 10:48:40 +0000 Received: from localhost ([127.0.0.1]:36031 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVVd2-0000Ee-D1 for submit@debbugs.gnu.org; Fri, 24 Feb 2023 05:48:40 -0500 Received: from mail-wr1-f47.google.com ([209.85.221.47]:33660) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVVcz-0000EA-Un for control@debbugs.gnu.org; Fri, 24 Feb 2023 05:48:38 -0500 Received: by mail-wr1-f47.google.com with SMTP id bo30so12901122wrb.0 for ; Fri, 24 Feb 2023 02:48:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:message-id:date:subject:to:from:from:to:cc:subject :date:message-id:reply-to; bh=EHVkQ6uHF5FF2eCkvKCHSmUgTEw7dwyLFUPZPrUBsQ0=; b=SRUDJTZe2R+cwQYmzuECfLydpW3UCSomR++3Q0qazLH59gU0wOl+1KGQnd0gd7pPBw MbJQ4+6BrqJNUyKWbMfI9wcQzhgcLO59fG1fFlnUa3BAM8I5hw8B0v+0VYdqjDj2eUKv Lu6IHvzA542ckbL7JBvcTb0rAdQsktOdUpIRQn5A2sv4tQ8FwyPTyt7oJOzIZxyohCwi 94oACYnbhUpxd+jFuF4fBpxhzVSZ25SKKKYND7T4Tbtjf6hquj9d1m1Qkuh1umJad5oj fQAqDggsXD+zIzP+Ppcb4XoyXO6H/rv6axkYkd7G8Iv8ESVxxJKbfZgigdB8PLMnD84l W4wQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=mime-version:message-id:date:subject:to:from:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=EHVkQ6uHF5FF2eCkvKCHSmUgTEw7dwyLFUPZPrUBsQ0=; b=jEkFA4cY6GdYCA55pd21xeY+l9ddPlqvbiNU3sCALWgbPaZm9XjFAscHT1HNYYmiDA jOercW3haAZwfuzARBpJjCMjjIzRCr2AjYqlP3Hx/6GBnaKu7D6A3EZpwrfawwOou9TE BFxCaHxG9etj/hScyKhAcAWray/ali/Xsvhp1PBAHNr+hr3rUkR01PN2SWZ1aDZHjzWh cxlYhFfOyNFarVcWX7R5ZEkJ6jXRaZnZLUw586z+uZtGx7v38bZ3B4E2TPQljwO+ePNT 2/2DZLePnXj454thxWMhoWWoZGFXxE7f2x5ydEiTakndFbKDq+zs+FQ1Ozvn2oaPLbmH JXqw== X-Gm-Message-State: AO0yUKVIuYptxL8dX5n7RBfxlfUIEEduq8p0uFx2tFOWHw+AINgxls0r htNG48eSRH3A0lZEUk6L0srXJMfKdWQ= X-Google-Smtp-Source: AK7set8dElxyxDekeNbYAbRGEjW4gj4Ag6Smu2cwT4uYGkaq3q+r3jpETuqvggmyXpy1vglMepztVQ== X-Received: by 2002:adf:fa0a:0:b0:2c7:851:c0bf with SMTP id m10-20020adffa0a000000b002c70851c0bfmr8474612wrr.0.1677235711601; Fri, 24 Feb 2023 02:48:31 -0800 (PST) Received: from rltb ([82.66.8.55]) by smtp.gmail.com with ESMTPSA id n5-20020adffe05000000b002c5539171d1sm15100167wrr.41.2023.02.24.02.48.31 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 24 Feb 2023 02:48:31 -0800 (PST) From: Robert Pluim To: control@debbugs.gnu.org Subject: control message for bug #61489 Date: Fri, 24 Feb 2023 11:48:30 +0100 Message-ID: <87r0uf730h.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) merge 61489 61490 quit From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: bug#61490: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Robert Pluim Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 24 Feb 2023 10:51:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: 61489@debbugs.gnu.org, 61490@debbugs.gnu.org, Konstantin Kharlamov Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.16772358521139 (code B ref 61489); Fri, 24 Feb 2023 10:51:02 +0000 Received: (at 61489) by debbugs.gnu.org; 24 Feb 2023 10:50:52 +0000 Received: from localhost ([127.0.0.1]:36038 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVVfA-0000ID-54 for submit@debbugs.gnu.org; Fri, 24 Feb 2023 05:50:52 -0500 Received: from mail-wr1-f53.google.com ([209.85.221.53]:40797) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVVf8-0000Hu-FW; Fri, 24 Feb 2023 05:50:50 -0500 Received: by mail-wr1-f53.google.com with SMTP id t15so13574960wrz.7; Fri, 24 Feb 2023 02:50:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:references :in-reply-to:subject:cc:to:from:from:to:cc:subject:date:message-id :reply-to; bh=8htOy76ngowleaksR2tCWxMQzw/I97PsIzFtx4/oEv4=; b=GVH1fI9ozoka+LGMa0xuYc19StTRA0IEYubRmHhmcaOt5e++J9hJaeKR5bx0obk49b xsPKAuTi4OmH6LtJ9D1LzuUXAYCSSYbxNd1fGs2edB1M1M/i6gjRprf8+f14/dNWL5Sg in8C4DhlT+WmgXF33mlFahgH8wRsoz105MVTQsPZc63I84soJPy1Z5XZQIcMTNjyz5fy EEz+6r8nMW3pnJYNvaIuBTNHTZkuIocUouoZDEr+h26lGt2c43r2uft2gEg31zJhx76b PO7tS8Xdmdqe99xz5gVcnKw8ZR4of9cF2RGf0/ZIOmJBbcgg0QsCr2LYR3KH/uzWLUoF +yJA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:references :in-reply-to:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=8htOy76ngowleaksR2tCWxMQzw/I97PsIzFtx4/oEv4=; b=dJ28PjmtzVNXm7+UBGnTKSRrYbkeAxn96ptVf9zysxjmbXQN0F4XuwKLtDLD+oKh6J JqnAwNRrvAarO/B+IKKD80uPTBeBY2/7LpFIhGdkoE+AwIxVDHKH6/6vXqvRYVxBtPVM b/a6POEodn/E4QJi0iGFYL4JeCzo8TwKeAAvbBObIWOCEzebOekpvBUC1AEuoje4AbHO Y4aCr2NfgsJtQiE/NhcO8TXVeMoBHtUI/1MrjEU9OvXXY69l8SCduhqwOKcI1S7/Suw2 X0Bz5HDnQa3O1Ufd1W2/JUbiNFH2zVCwryBqmCUV2ZJnUH/QfNXIGvx021xxC7XVI7OB VZ2Q== X-Gm-Message-State: AO0yUKXn5ye8d4n3fNRE3v3lHjC6LRW3egdsF5ZLYleGE3SGC+5kDPJx qS4k2E+O5VVR+m6xrHh0UonPaMzUuQ8= X-Google-Smtp-Source: AK7set/Vo1YUqYpCHulCxUIH7J/xWnh8Xn0kd3A3cbgUevmnBbKwBF9J8nR56HWy5mv0o9/EWnyGpQ== X-Received: by 2002:a5d:6089:0:b0:2c5:5327:1b09 with SMTP id w9-20020a5d6089000000b002c553271b09mr13992618wrt.37.1677235844405; Fri, 24 Feb 2023 02:50:44 -0800 (PST) Received: from rltb ([82.66.8.55]) by smtp.gmail.com with ESMTPSA id v7-20020a5d6107000000b002c559626a50sm13246350wrt.13.2023.02.24.02.50.43 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 24 Feb 2023 02:50:43 -0800 (PST) From: Robert Pluim In-Reply-To: <83o7pkpc5d.fsf@gnu.org> (Eli Zaretskii's message of "Thu, 23 Feb 2023 18:41:34 +0200") References: <20230216150755.27359-1-Hi-Angel@yandex.ru> <91c854289aa121d38d91699e976832e463ba90ba.camel@yandex.ru> <87edqg8jrj.fsf@gmail.com> <83o7pkpc5d.fsf@gnu.org> Date: Fri, 24 Feb 2023 11:50:43 +0100 Message-ID: <87lekn72ws.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) >>>>> On Thu, 23 Feb 2023 18:41:34 +0200, Eli Zaretskii said: >> Cc: 61489@debbugs.gnu.org, 61490@debbugs.gnu.org >> From: Konstantin Kharlamov >> Date: Thu, 23 Feb 2023 18:53:02 +0300 >>=20 >> On Thu, 2023-02-23 at 16:49 +0100, Robert Pluim wrote: >> > > > > > > On Thu, 23 Feb 2023 18:30:00 +0300, Konstantin Kharlamov >> > > > > > > said: >> >=20 >> > =C2=A0=C2=A0=C2=A0 Konstantin> So, it's been a week since version = 2 was posted and 10-11 days >> > since I started >> > =C2=A0=C2=A0=C2=A0 Konstantin> using the change locally. Everythin= g has been nice and dandy, >> > and in absence of >> > =C2=A0=C2=A0=C2=A0 Konstantin> further comments, I wonder if someb= ody with write permissions >> > could merge this >> > =C2=A0=C2=A0=C2=A0 Konstantin> patch? >> >=20 >> > I=CA=BCve had no issues with it. Eli? Does this require 'Copyright= -paperwork- >> > exempt: yes'? >>=20 >> No, I have a copyright assignment with GNU for Emacs, it's just that= I don't write permissions :) Eli> Sorry, you are right. Ignore my previous message where I said the Eli> Copyright-paperwork-exempt thingy is necessary. OK, I=CA=BCve merged the two bugs. I can push whenever you deem it=CA=BCs r= eady. Robert --=20 From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: bug#61490: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Konstantin Kharlamov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 27 Feb 2023 10:31:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Robert Pluim , Eli Zaretskii Cc: 61489@debbugs.gnu.org, 61490@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.16774938195961 (code B ref 61489); Mon, 27 Feb 2023 10:31:02 +0000 Received: (at 61489) by debbugs.gnu.org; 27 Feb 2023 10:30:19 +0000 Received: from localhost ([127.0.0.1]:46164 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWalu-0001Y3-Hx for submit@debbugs.gnu.org; Mon, 27 Feb 2023 05:30:18 -0500 Received: from forward502b.mail.yandex.net ([178.154.239.146]:34588) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pWals-0001Xn-0q; Mon, 27 Feb 2023 05:30:17 -0500 Received: from myt6-1289f562e823.qloud-c.yandex.net (myt6-1289f562e823.qloud-c.yandex.net [IPv6:2a02:6b8:c12:259d:0:640:1289:f562]) by forward502b.mail.yandex.net (Yandex) with ESMTP id 97C045ED4F; Mon, 27 Feb 2023 13:30:11 +0300 (MSK) Received: by myt6-1289f562e823.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id AUQ3cj0cv8c1-jRUcjFUI; Mon, 27 Feb 2023 13:30:11 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1677493811; bh=7CpM01+Js6noDXy3SHQ73cZAwI3gomiWFaaY/yxgyAI=; h=References:Date:In-Reply-To:Cc:To:From:Subject:Message-ID; b=X+JVM9J7iz0ZDRJI8Omwpb1pMDPN3fJTL4ZVKESHJp5D0NENic2mO01V3VqZ6U7pD xindvIQtwLkHRRcY9v/o9x6k7Rp8+HYdX+FvQBOHubba8Xy5tg5kX6r4IlZ8jn4+o8 1UJiOnmGmy33vc1BHNXmgjmeDB4n3F05twHMSEUI= Authentication-Results: myt6-1289f562e823.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: From: Konstantin Kharlamov Date: Mon, 27 Feb 2023 13:30:10 +0300 In-Reply-To: <87lekn72ws.fsf@gmail.com> References: <20230216150755.27359-1-Hi-Angel@yandex.ru> <91c854289aa121d38d91699e976832e463ba90ba.camel@yandex.ru> <87edqg8jrj.fsf@gmail.com> <83o7pkpc5d.fsf@gnu.org> <87lekn72ws.fsf@gmail.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.4 MIME-Version: 1.0 X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Fri, 2023-02-24 at 11:50 +0100, Robert Pluim wrote: > > > > > > On Thu, 23 Feb 2023 18:41:34 +0200, Eli Zaretskii > > > > > > said: >=20 > =C2=A0=C2=A0=C2=A0 >> Cc: 61489@debbugs.gnu.org, 61490@debbugs.gnu.org > =C2=A0=C2=A0=C2=A0 >> From: Konstantin Kharlamov > =C2=A0=C2=A0=C2=A0 >> Date: Thu, 23 Feb 2023 18:53:02 +0300 > =C2=A0=C2=A0=C2=A0 >>=20 > =C2=A0=C2=A0=C2=A0 >> On Thu, 2023-02-23 at 16:49 +0100, Robert Pluim wro= te: > =C2=A0=C2=A0=C2=A0 >> > > > > > > On Thu, 23 Feb 2023 18:30:00 +0300, Kon= stantin Kharlamov > =C2=A0=C2=A0=C2=A0 >> > > > > > > said: > =C2=A0=C2=A0=C2=A0 >> >=20 > =C2=A0=C2=A0=C2=A0 >> > =C2=A0=C2=A0=C2=A0 Konstantin> So, it's been a we= ek since version 2 was posted and > 10-11 days > =C2=A0=C2=A0=C2=A0 >> > since I started > =C2=A0=C2=A0=C2=A0 >> > =C2=A0=C2=A0=C2=A0 Konstantin> using the change l= ocally. Everything has been nice > and dandy, > =C2=A0=C2=A0=C2=A0 >> > and in absence of > =C2=A0=C2=A0=C2=A0 >> > =C2=A0=C2=A0=C2=A0 Konstantin> further comments, = I wonder if somebody with write > permissions > =C2=A0=C2=A0=C2=A0 >> > could merge this > =C2=A0=C2=A0=C2=A0 >> > =C2=A0=C2=A0=C2=A0 Konstantin> patch? > =C2=A0=C2=A0=C2=A0 >> >=20 > =C2=A0=C2=A0=C2=A0 >> > I=CA=BCve had no issues with it. Eli? Does this r= equire 'Copyright- > paperwork- > =C2=A0=C2=A0=C2=A0 >> > exempt: yes'? > =C2=A0=C2=A0=C2=A0 >>=20 > =C2=A0=C2=A0=C2=A0 >> No, I have a copyright assignment with GNU for Emac= s, it's just that I > don't write permissions :) >=20 > =C2=A0=C2=A0=C2=A0 Eli> Sorry, you are right.=C2=A0 Ignore my previous me= ssage where I said the > =C2=A0=C2=A0=C2=A0 Eli> Copyright-paperwork-exempt thingy is necessary. >=20 > OK, I=CA=BCve merged the two bugs. I can push whenever you deem it=CA=BCs= ready. There was no opposition in any of the answers, so I presume it is ready=E2= =80=A6? From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: bug#61490: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 References: <20230213200006.663502-2-Hi-Angel@yandex.ru> In-Reply-To: <20230213200006.663502-2-Hi-Angel@yandex.ru> Resent-From: Konstantin Kharlamov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 03 Mar 2023 10:45:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 61490@debbugs.gnu.org Cc: Eli Zaretskii , 61489@debbugs.gnu.org, Konstantin Kharlamov Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.167784027927851 (code B ref 61489); Fri, 03 Mar 2023 10:45:02 +0000 Received: (at 61489) by debbugs.gnu.org; 3 Mar 2023 10:44:39 +0000 Received: from localhost ([127.0.0.1]:59700 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pY2tz-0007F7-1T for submit@debbugs.gnu.org; Fri, 03 Mar 2023 05:44:39 -0500 Received: from forward202c.mail.yandex.net ([178.154.239.219]:52572) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pY2tv-0007Er-JG; Fri, 03 Mar 2023 05:44:37 -0500 Received: from myt6-65ee53fe8ed8.qloud-c.yandex.net (myt6-65ee53fe8ed8.qloud-c.yandex.net [IPv6:2a02:6b8:c12:1d8e:0:640:65ee:53fe]) by forward202c.mail.yandex.net (Yandex) with ESMTP id 8023860109; Fri, 3 Mar 2023 13:44:33 +0300 (MSK) Received: by myt6-65ee53fe8ed8.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id WiUQxk8bgqM1-2ZPNcDSL; Fri, 03 Mar 2023 13:44:33 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1677840273; bh=BhsA1aKlglGjpRdMu2peVecDmERAuTyLLhI53Hw2hvM=; h=Date:Cc:To:From:Subject:Message-ID; b=XuJcNmHsdgfjRc1qKpKeaItSsENkHx9oQBxfzz2ETONtbBzg6Qej/QlYtcWsIz5sT h+qSyjWTNGqWcCs67aXercJMchYWuaNtpQyE/GQ+q7ITjBHsOcjWOl6+ptaUCoYTB7 AtGxRbXkO7w5ka7GyIgc7JCiOjWb1L8Bye2UtjBk= Authentication-Results: myt6-65ee53fe8ed8.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: From: Konstantin Kharlamov Date: Fri, 03 Mar 2023 13:44:32 +0300 Content-Type: text/plain Content-Transfer-Encoding: 7bit User-Agent: Evolution 3.46.4 MIME-Version: 1.0 X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Ping From unknown Tue Sep 23 19:46:18 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Konstantin Kharlamov Subject: bug#61489: closed (Re: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768) Message-ID: References: <83y1ocaha5.fsf@gnu.org> <20230213200006.663502-2-Hi-Angel@yandex.ru> X-Gnu-PR-Message: they-closed 61489 X-Gnu-PR-Package: emacs X-Gnu-PR-Keywords: patch Reply-To: 61489@debbugs.gnu.org Date: Sat, 04 Mar 2023 11:28:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1677929282-1597-1" This is a multi-part message in MIME format... ------------=_1677929282-1597-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #61489: [PATCH 1/1] Increase BLOCK_ALIGN from 2=C2=B9=E2=81=B0to 2=C2=B9=E2= =81=B5 which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 61489@debbugs.gnu.org. --=20 61489: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D61489 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1677929282-1597-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 61489-done) by debbugs.gnu.org; 4 Mar 2023 11:27:20 +0000 Received: from localhost ([127.0.0.1]:35311 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYQ2q-0000Oo-Fy for submit@debbugs.gnu.org; Sat, 04 Mar 2023 06:27:20 -0500 Received: from eggs.gnu.org ([209.51.188.92]:53242) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYQ2o-0000Oc-UX for 61489-done@debbugs.gnu.org; Sat, 04 Mar 2023 06:27:19 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pYQ2j-0004LI-Dh; Sat, 04 Mar 2023 06:27:13 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=bL3+PLHaHPVTu+RXNDXU+4vMo5hj94vffDH27D8m2wc=; b=nxKpez04Z1PnIqvBQKGr 1rlCqLYiQN9sctSnkjQUWJMqHEd5bUa9YF4LTheuKL82X7v4trAyaIxP4kDqld6JewnWxIvkPIgiV Wd5QFHHGHwAeA1lySauWv9YKofQH7qvSaON7IFWXMMi/4V65lPjeJvumskxsWTgSplEjPEepx3KdQ qnApaQVu4xciCb/2SRp7zqP+HGVTP1ZhO6b3VlbQPMeCMSksYGsSDN2mxBK3mLwt7uO0bwGJ25Vpa a2wUksZQAtfV5KMN2Khs5nYprJbJ26CIf1DUqt7njhXOA8l5h0rp9OzLP0QHMWW3zt+tiQ62ZTn+1 asY1ZtHW9YpaGA==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pYQ2g-0003tZ-GE; Sat, 04 Mar 2023 06:27:12 -0500 Date: Sat, 04 Mar 2023 13:26:58 +0200 Message-Id: <83y1ocaha5.fsf@gnu.org> From: Eli Zaretskii To: Konstantin Kharlamov In-Reply-To: <20230216150755.27359-1-Hi-Angel@yandex.ru> (message from Konstantin Kharlamov on Thu, 16 Feb 2023 18:07:55 +0300) Subject: Re: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 References: <20230213200006.663502-2-Hi-Angel@yandex.ru> <20230216150755.27359-1-Hi-Angel@yandex.ru> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 61489-done Cc: 61489-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Konstantin Kharlamov > Date: Thu, 16 Feb 2023 18:07:55 +0300 > > Originally discovered by Tyler Dodge in his article "Significant Garbage > Collection Improvement For Emacs". > > While testing this change on Archlinux system with Intel i5-7200U CPU, > average time of garbage collection gets reduced by ≈25%. Other users > report improvements up to 50%. While monitoring PSS of emacs with and > without customizations loaded before and after the patch, no > statistically significant differences were discovered. So overall, this > change is a win. > > * src/alloc.c (BLOCK_ALIGN): increase from 1024 to 32768 Thanks, installed on the master branch, and closing the bug. ------------=_1677929282-1597-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 13 Feb 2023 20:00:46 +0000 Received: from localhost ([127.0.0.1]:51697 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRf0I-0005ua-7O for submit@debbugs.gnu.org; Mon, 13 Feb 2023 15:00:46 -0500 Received: from lists.gnu.org ([209.51.188.17]:39194) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRf0G-0005uS-SK for submit@debbugs.gnu.org; Mon, 13 Feb 2023 15:00:45 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRf05-0002mn-DP for bug-gnu-emacs@gnu.org; Mon, 13 Feb 2023 15:00:35 -0500 Received: from forward501b.mail.yandex.net ([178.154.239.145]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRf02-0005H8-Hu for bug-gnu-emacs@gnu.org; Mon, 13 Feb 2023 15:00:33 -0500 Received: from myt5-69594d4a41fa.qloud-c.yandex.net (myt5-69594d4a41fa.qloud-c.yandex.net [IPv6:2a02:6b8:c12:3ca5:0:640:6959:4d4a]) by forward501b.mail.yandex.net (Yandex) with ESMTP id 981425ED6E for ; Mon, 13 Feb 2023 23:00:23 +0300 (MSK) Received: by myt5-69594d4a41fa.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id D0pfBF3ZDeA1-cEWBKD0d; Mon, 13 Feb 2023 23:00:23 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1676318423; bh=KregnTdk5XQungtMTSbWt7ivIrNXYdSwiXb2WYQ3Jnw=; h=In-Reply-To:Message-Id:Date:Subject:References:To:From; b=Uwce7WwsEPeDzK2zx66bs+3RZmYjh3XoNzRAlOg9znKlLSv+LeVJhphQUFF4YGAJK O5p66ADV/IWdztbJwH3MuUxsAcDPgpd9WzFSXgxy7i8D33yS8C9GWySeYFLhc/61ol 3yXM9ZDH9oLIToOdgivribGGlKZi1U0HRRxZixdw= Authentication-Results: myt5-69594d4a41fa.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru From: Konstantin Kharlamov To: bug-gnu-emacs@gnu.org Subject: [PATCH 1/1] =?UTF-8?q?Increase=20BLOCK=5FALIGN=20from=202=C2=B9?= =?UTF-8?q?=E2=81=B0to=202=C2=B9=E2=81=B5?= Date: Mon, 13 Feb 2023 23:00:06 +0300 Message-Id: <20230213200006.663502-2-Hi-Angel@yandex.ru> X-Mailer: git-send-email 2.39.0 In-Reply-To: <20230213200006.663502-1-Hi-Angel@yandex.ru> References: <20230213200006.663502-1-Hi-Angel@yandex.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.154.239.145; envelope-from=Hi-Angel@yandex.ru; helo=forward501b.mail.yandex.net X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) Originally discovered by Tyler Dodge in his article "Significant Garbage Collection Improvement For Emacs". While testing this change on Archlinux system with Intel i5-7200U CPU, average time of garbage collection gets reduced by ≈25%. While monitoring PSS of emacs with and without customizations loaded before and after the patch, no statistically significant differences were discovered. So overall, this change is a win. * src/alloc.c (BLOCK_ALIGN): increase from 2¹⁰ to 2¹⁵ --- src/alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/alloc.c b/src/alloc.c index c25e81d1dde..d278b01343d 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1083,7 +1083,7 @@ lisp_free (void *block) BLOCK_BYTES and guarantees they are aligned on a BLOCK_ALIGN boundary. */ /* Byte alignment of storage blocks. */ -#define BLOCK_ALIGN (1 << 10) +#define BLOCK_ALIGN (1 << 15) verify (POWER_OF_2 (BLOCK_ALIGN)); /* Use aligned_alloc if it or a simple substitute is available. -- 2.39.0 ------------=_1677929282-1597-1-- From unknown Tue Sep 23 19:46:18 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Konstantin Kharlamov Subject: bug#61490: closed (Re: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768) Message-ID: References: <83y1ocaha5.fsf@gnu.org> <20230213200006.663502-1-Hi-Angel@yandex.ru> X-Gnu-PR-Message: they-closed 61490 X-Gnu-PR-Package: emacs X-Gnu-PR-Keywords: patch Reply-To: 61490@debbugs.gnu.org Date: Sat, 04 Mar 2023 11:28:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1677929282-1597-3" This is a multi-part message in MIME format... ------------=_1677929282-1597-3 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #61489: [PATCH 0/1] Increase BLOCK_ALIGN from 2=C2=B9=E2=81=B0to 2=C2=B9=E2= =81=B5 which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 61490@debbugs.gnu.org. --=20 61489: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D61489 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1677929282-1597-3 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 61489-done) by debbugs.gnu.org; 4 Mar 2023 11:27:20 +0000 Received: from localhost ([127.0.0.1]:35311 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYQ2q-0000Oo-Fy for submit@debbugs.gnu.org; Sat, 04 Mar 2023 06:27:20 -0500 Received: from eggs.gnu.org ([209.51.188.92]:53242) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYQ2o-0000Oc-UX for 61489-done@debbugs.gnu.org; Sat, 04 Mar 2023 06:27:19 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pYQ2j-0004LI-Dh; Sat, 04 Mar 2023 06:27:13 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=bL3+PLHaHPVTu+RXNDXU+4vMo5hj94vffDH27D8m2wc=; b=nxKpez04Z1PnIqvBQKGr 1rlCqLYiQN9sctSnkjQUWJMqHEd5bUa9YF4LTheuKL82X7v4trAyaIxP4kDqld6JewnWxIvkPIgiV Wd5QFHHGHwAeA1lySauWv9YKofQH7qvSaON7IFWXMMi/4V65lPjeJvumskxsWTgSplEjPEepx3KdQ qnApaQVu4xciCb/2SRp7zqP+HGVTP1ZhO6b3VlbQPMeCMSksYGsSDN2mxBK3mLwt7uO0bwGJ25Vpa a2wUksZQAtfV5KMN2Khs5nYprJbJ26CIf1DUqt7njhXOA8l5h0rp9OzLP0QHMWW3zt+tiQ62ZTn+1 asY1ZtHW9YpaGA==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pYQ2g-0003tZ-GE; Sat, 04 Mar 2023 06:27:12 -0500 Date: Sat, 04 Mar 2023 13:26:58 +0200 Message-Id: <83y1ocaha5.fsf@gnu.org> From: Eli Zaretskii To: Konstantin Kharlamov In-Reply-To: <20230216150755.27359-1-Hi-Angel@yandex.ru> (message from Konstantin Kharlamov on Thu, 16 Feb 2023 18:07:55 +0300) Subject: Re: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 References: <20230213200006.663502-2-Hi-Angel@yandex.ru> <20230216150755.27359-1-Hi-Angel@yandex.ru> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 61489-done Cc: 61489-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Konstantin Kharlamov > Date: Thu, 16 Feb 2023 18:07:55 +0300 > > Originally discovered by Tyler Dodge in his article "Significant Garbage > Collection Improvement For Emacs". > > While testing this change on Archlinux system with Intel i5-7200U CPU, > average time of garbage collection gets reduced by ≈25%. Other users > report improvements up to 50%. While monitoring PSS of emacs with and > without customizations loaded before and after the patch, no > statistically significant differences were discovered. So overall, this > change is a win. > > * src/alloc.c (BLOCK_ALIGN): increase from 1024 to 32768 Thanks, installed on the master branch, and closing the bug. ------------=_1677929282-1597-3 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 13 Feb 2023 20:00:52 +0000 Received: from localhost ([127.0.0.1]:51700 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRf0N-0005us-Ib for submit@debbugs.gnu.org; Mon, 13 Feb 2023 15:00:51 -0500 Received: from lists.gnu.org ([209.51.188.17]:39208) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pRf0M-0005uZ-1Z for submit@debbugs.gnu.org; Mon, 13 Feb 2023 15:00:50 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRf05-0002mo-GY for bug-gnu-emacs@gnu.org; Mon, 13 Feb 2023 15:00:35 -0500 Received: from forward103o.mail.yandex.net ([37.140.190.177]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRf02-0005H7-Hb for bug-gnu-emacs@gnu.org; Mon, 13 Feb 2023 15:00:33 -0500 Received: from myt5-69594d4a41fa.qloud-c.yandex.net (myt5-69594d4a41fa.qloud-c.yandex.net [IPv6:2a02:6b8:c12:3ca5:0:640:6959:4d4a]) by forward103o.mail.yandex.net (Yandex) with ESMTP id 332DF10A9D72 for ; Mon, 13 Feb 2023 23:00:23 +0300 (MSK) Received: by myt5-69594d4a41fa.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id D0pfBF3ZDeA1-XX9bYPvS; Mon, 13 Feb 2023 23:00:22 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1676318422; bh=2O1XCCUfvpKsadwIy5MjN2TU0ZCR5zN3kSjn01GPrw4=; h=Message-Id:Date:Subject:To:From; b=hQiCgkBKS9cYhT6wBKa7r8MifwaJ/mxNGyFDA91ftwzIRPJDhtPPeZY5gxbe4HRAm nL8ReAmcEjs4veh5KezXKwwDDoNCwMGhlLRFe4zoJYqCp6DIyV98sSRxyMDYrg9zpz bjp1iS0SJPZwyjoY8lhkFloYIrlbVtYJS7oE5eBc= Authentication-Results: myt5-69594d4a41fa.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru From: Konstantin Kharlamov To: bug-gnu-emacs@gnu.org Subject: [PATCH 0/1] Increase BLOCK_ALIGN from 2¹⁰to 2¹⁵ Date: Mon, 13 Feb 2023 23:00:05 +0300 Message-Id: <20230213200006.663502-1-Hi-Angel@yandex.ru> X-Mailer: git-send-email 2.39.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=37.140.190.177; envelope-from=Hi-Angel@yandex.ru; helo=forward103o.mail.yandex.net X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) This nice optimization was discussed on emacs-devel here https://lists.gnu.org/archive/html/emacs-devel/2022-10/msg02174.html The thread is 3 months old at this point and nobody still picked that change up. I mentioned in the thread that I'm going to send the patch a day ago (it won't show up in the web-interface though, because apparently it's unable to show a thread from more than a single month), and now in absence of any opposition here's the patch. Konstantin Kharlamov (1): Increase BLOCK_ALIGN from 2¹⁰to 2¹⁵ src/alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.39.0 ------------=_1677929282-1597-3-- From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 04 Mar 2023 15:02:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Hi-Angel@yandex.ru Cc: 61489@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.167794207911634 (code B ref 61489); Sat, 04 Mar 2023 15:02:02 +0000 Received: (at 61489) by debbugs.gnu.org; 4 Mar 2023 15:01:19 +0000 Received: from localhost ([127.0.0.1]:37426 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYTNu-00031a-Nh for submit@debbugs.gnu.org; Sat, 04 Mar 2023 10:01:18 -0500 Received: from eggs.gnu.org ([209.51.188.92]:47884) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYTNs-00031M-AN for 61489@debbugs.gnu.org; Sat, 04 Mar 2023 10:01:16 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pYTNm-0004Ps-IO; Sat, 04 Mar 2023 10:01:10 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=I02NZVBbRbMODW63KzaV93A2BxuNDyXygA9+10FpC8M=; b=DjYFhNwIf8+D hOSsHgr88DrRTEqlo7LhxaOMsHCKjZQEQYeKVKD6JtIbxRPopEddAkal591HqBzTiKDssrnv90BPL YUpx16NdYwd6T7dJXl0Fks3/jG4DumS1yFci9IPpsOWUB8QEczUrBJDZIeXFPPcNNSs+NZlDibv6R r5xr8TRir3U4KWu5Bh2pCI70xX73k7AXyzgYZgArauxdilJRRJ/Ep4ADZ5c/zUM3WTMhf6YoQDsdi JOFxn68r4kBYevDAqFq/IygUqgIgcBfv5+4qmuo3JnZi+nDfNyuaA/NCOe+WvFAtsODTBi59sB6M0 IUXt7GElwr0DqfVnQg+d7Q==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pYTNl-0006qs-Pz; Sat, 04 Mar 2023 10:01:10 -0500 Date: Sat, 04 Mar 2023 17:00:58 +0200 Message-Id: <83o7p8a7dh.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: <83y1ocaha5.fsf@gnu.org> (message from Eli Zaretskii on Sat, 04 Mar 2023 13:26:58 +0200) References: <20230213200006.663502-2-Hi-Angel@yandex.ru> <20230216150755.27359-1-Hi-Angel@yandex.ru> <83y1ocaha5.fsf@gnu.org> X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > Cc: 61489-done@debbugs.gnu.org > Date: Sat, 04 Mar 2023 13:26:58 +0200 > From: Eli Zaretskii > > > * src/alloc.c (BLOCK_ALIGN): increase from 1024 to 32768 > > Thanks, installed on the master branch, and closing the bug. Note: this change breaks the unexec build, see bug#61960. From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Konstantin Kharlamov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 04 Mar 2023 15:34:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: 61489@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.167794401114815 (code B ref 61489); Sat, 04 Mar 2023 15:34:01 +0000 Received: (at 61489) by debbugs.gnu.org; 4 Mar 2023 15:33:31 +0000 Received: from localhost ([127.0.0.1]:37482 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYTt4-0003qt-Pm for submit@debbugs.gnu.org; Sat, 04 Mar 2023 10:33:31 -0500 Received: from forward501b.mail.yandex.net ([178.154.239.145]:34450) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYTt3-0003qk-2r for 61489@debbugs.gnu.org; Sat, 04 Mar 2023 10:33:29 -0500 Received: from sas8-d2832c3b6ed7.qloud-c.yandex.net (sas8-d2832c3b6ed7.qloud-c.yandex.net [IPv6:2a02:6b8:c1b:2a09:0:640:d283:2c3b]) by forward501b.mail.yandex.net (Yandex) with ESMTP id C3C985ECE8; Sat, 4 Mar 2023 18:33:26 +0300 (MSK) Received: by sas8-d2832c3b6ed7.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id PXagDWJbZ4Y1-asFL5Wfb; Sat, 04 Mar 2023 18:33:26 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1677944006; bh=dqVtV2KE58etP3infQOgzyO9bi4PAq+Ib9TODw5u3V4=; h=References:Date:In-Reply-To:Cc:To:From:Subject:Message-ID; b=V0h9fuavhk/0rkOhwEehneeMIb5I7jfz4zGzt8Ps98uf1NobLnhTYd266NW4tZGEW VBXFr342Cbzs9GUAN+NxCWy6BK8Vo92H6I811iQMkwciDaNXtNWOKOEJNeHp2xvxt0 GXuvDWBYcJ/oD3KZzSnHYjkVDrF3JyeS7lMJBWy0= Authentication-Results: sas8-d2832c3b6ed7.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <21d57e0d55919846bd5d29e9a32e46a7166bf6d2.camel@yandex.ru> From: Konstantin Kharlamov Date: Sat, 04 Mar 2023 18:33:25 +0300 In-Reply-To: <83o7p8a7dh.fsf@gnu.org> References: <20230213200006.663502-2-Hi-Angel@yandex.ru> <20230216150755.27359-1-Hi-Angel@yandex.ru> <83y1ocaha5.fsf@gnu.org> <83o7p8a7dh.fsf@gnu.org> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.4 MIME-Version: 1.0 X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Sat, 2023-03-04 at 17:00 +0200, Eli Zaretskii wrote: > > Cc: 61489-done@debbugs.gnu.org > > Date: Sat, 04 Mar 2023 13:26:58 +0200 > > From: Eli Zaretskii > >=20 > > > * src/alloc.c (BLOCK_ALIGN): increase from 1024 to 32768 > >=20 > > Thanks, installed on the master branch, and closing the bug. >=20 > Note: this change breaks the unexec build, see bug#61960. Oh, I see, thanks! I'll try to build Emacs with sanitizer, it's usually pre= tty good at that kind of bugs. Will see if there's anything obvious From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Konstantin Kharlamov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 04 Mar 2023 18:59:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: 61489@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.16779562933809 (code B ref 61489); Sat, 04 Mar 2023 18:59:02 +0000 Received: (at 61489) by debbugs.gnu.org; 4 Mar 2023 18:58:13 +0000 Received: from localhost ([127.0.0.1]:37732 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYX5A-0000zN-S8 for submit@debbugs.gnu.org; Sat, 04 Mar 2023 13:58:13 -0500 Received: from forward500a.mail.yandex.net ([178.154.239.80]:51136) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYX57-0000zD-NA for 61489@debbugs.gnu.org; Sat, 04 Mar 2023 13:58:11 -0500 Received: from vla1-11f05578dcd9.qloud-c.yandex.net (vla1-11f05578dcd9.qloud-c.yandex.net [IPv6:2a02:6b8:c0d:4201:0:640:11f0:5578]) by forward500a.mail.yandex.net (Yandex) with ESMTP id A2ADB5E993; Sat, 4 Mar 2023 21:58:07 +0300 (MSK) Received: by vla1-11f05578dcd9.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id 6wdDJpKbpCg1-QTovusIB; Sat, 04 Mar 2023 21:58:07 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1677956287; bh=BMr1Q0jc3dfn/HP4TJDfJnSYn+CS6VvNf0cyY7u8XoY=; h=References:Date:In-Reply-To:Cc:To:From:Subject:Message-ID; b=hiw7aLpIWCXWQGHpa5t/vNMv1AFzRaToi+x8SLwCpDUsyAEOxc3xmAUvcBiFd3Omg eFhsmFfLeYADSqDdAPN00DhkeEyJJwk+mCb08Bn+KhivNzITo6OVqmn9H0jbPhgy11 1n3kRvPMMoF7PKtSe5mW5j/RdyKI1J5npt3SidBE= Authentication-Results: vla1-11f05578dcd9.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: From: Konstantin Kharlamov Date: Sat, 04 Mar 2023 21:58:06 +0300 In-Reply-To: <21d57e0d55919846bd5d29e9a32e46a7166bf6d2.camel@yandex.ru> References: <20230213200006.663502-2-Hi-Angel@yandex.ru> <20230216150755.27359-1-Hi-Angel@yandex.ru> <83y1ocaha5.fsf@gnu.org> <83o7p8a7dh.fsf@gnu.org> <21d57e0d55919846bd5d29e9a32e46a7166bf6d2.camel@yandex.ru> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.4 MIME-Version: 1.0 X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Sat, 2023-03-04 at 18:33 +0300, Konstantin Kharlamov wrote: > On Sat, 2023-03-04 at 17:00 +0200, Eli Zaretskii wrote: > > > Cc: 61489-done@debbugs.gnu.org > > > Date: Sat, 04 Mar 2023 13:26:58 +0200 > > > From: Eli Zaretskii > > >=20 > > > > * src/alloc.c (BLOCK_ALIGN): increase from 1024 to 32768 > > >=20 > > > Thanks, installed on the master branch, and closing the bug. > >=20 > > Note: this change breaks the unexec build, see bug#61960. >=20 > Oh, I see, thanks! I'll try to build Emacs with sanitizer, it's usually p= retty > good at that kind of bugs. Will see if there's anything obvious FTR: it might take longer than I expected, because for unknown reason Emacs= built with sanitizer isn't built with sanitizer. Yeah, lol. I passed the `= -fsanitize=3Daddress,undefined` to CFLAGS, and `./configure =E2=80=A6` outp= ut even confirmed it registered them. However, after everything was built, = it does not make use of sanitizer. I also realised I forgot to pass `-lasan` to LDFLAGS, so the build should'v= e failed at link-stage. Apparently there are some bugs in the build system = related to passing cflags through to the actual compiler. From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 04 Mar 2023 19:55:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Konstantin Kharlamov Cc: 61489@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.167795964610672 (code B ref 61489); Sat, 04 Mar 2023 19:55:02 +0000 Received: (at 61489) by debbugs.gnu.org; 4 Mar 2023 19:54:06 +0000 Received: from localhost ([127.0.0.1]:37807 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYXxG-0002m4-1X for submit@debbugs.gnu.org; Sat, 04 Mar 2023 14:54:06 -0500 Received: from eggs.gnu.org ([209.51.188.92]:37996) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYXxD-0002lN-Sv for 61489@debbugs.gnu.org; Sat, 04 Mar 2023 14:54:04 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pYXx8-000699-Jd; Sat, 04 Mar 2023 14:53:58 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-version:References:Subject:In-Reply-To:To:From: Date; bh=iTdwXbx4s+u3fnzHRsvSo9Q9h/CgbJ30vTAzHxaxOlk=; b=lp+Avtlip4ovY4jhmp1O R9eL1qWgV2djnJ1WQ+wqyx6OYxnJOrRriSdrMjErcttt4HJuv0ZRc97w4ns4w0HeO1SJwVn83m2jM c/XBdizpDNx8KPKzdIEovEIdrbNoOZqkve1YutKTyFDcIqZJPTt9yOCjKTSPah15/g2ik3eMaRtbD ndfsR1c3VcpwLaVNy8cXhhspDtVGXUoqkJ8vy8PXa2Fq45+6FGyvJ9btwW/EYE8GiYzRJWHPLsYBQ 4qdzpw/iOoDCNTTB1hG/2zC7QQ7ppeTq+PDdM5Ww8xycpXPXF9EgTv7ydaA6ZWvWS/Mb8S72s8Iy3 4qC9TIZh52/Pcg==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pYXx7-0002yD-Vx; Sat, 04 Mar 2023 14:53:58 -0500 Date: Sat, 04 Mar 2023 21:53:46 +0200 Message-Id: <83edq49tth.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: (message from Konstantin Kharlamov on Sat, 04 Mar 2023 21:58:06 +0300) References: <20230213200006.663502-2-Hi-Angel@yandex.ru> <20230216150755.27359-1-Hi-Angel@yandex.ru> <83y1ocaha5.fsf@gnu.org> <83o7p8a7dh.fsf@gnu.org> <21d57e0d55919846bd5d29e9a32e46a7166bf6d2.camel@yandex.ru> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Konstantin Kharlamov > Cc: 61489@debbugs.gnu.org > Date: Sat, 04 Mar 2023 21:58:06 +0300 > > On Sat, 2023-03-04 at 18:33 +0300, Konstantin Kharlamov wrote: > > On Sat, 2023-03-04 at 17:00 +0200, Eli Zaretskii wrote: > > > > Cc: 61489-done@debbugs.gnu.org > > > > Date: Sat, 04 Mar 2023 13:26:58 +0200 > > > > From: Eli Zaretskii > > > > > > > > > * src/alloc.c (BLOCK_ALIGN): increase from 1024 to 32768 > > > > > > > > Thanks, installed on the master branch, and closing the bug. > > > > > > Note: this change breaks the unexec build, see bug#61960. > > > > Oh, I see, thanks! I'll try to build Emacs with sanitizer, it's usually pretty > > good at that kind of bugs. Will see if there's anything obvious > > FTR: it might take longer than I expected, because for unknown reason Emacs built with sanitizer isn't built with sanitizer. Yeah, lol. I passed the `-fsanitize=address,undefined` to CFLAGS, and `./configure …` output even confirmed it registered them. However, after everything was built, it does not make use of sanitizer. > > I also realised I forgot to pass `-lasan` to LDFLAGS, so the build should've failed at link-stage. Apparently there are some bugs in the build system related to passing cflags through to the actual compiler. Are you saying that the advice in etc/DEBUG how to set this up and how to run the resulting Emacs is inaccurate or incorrect or outdated? From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Konstantin Kharlamov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 04 Mar 2023 20:00:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: 61489@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.167795994411146 (code B ref 61489); Sat, 04 Mar 2023 20:00:02 +0000 Received: (at 61489) by debbugs.gnu.org; 4 Mar 2023 19:59:04 +0000 Received: from localhost ([127.0.0.1]:37811 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYY23-0002ti-Pn for submit@debbugs.gnu.org; Sat, 04 Mar 2023 14:59:04 -0500 Received: from forward501c.mail.yandex.net ([178.154.239.209]:40956) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYY21-0002tI-33 for 61489@debbugs.gnu.org; Sat, 04 Mar 2023 14:59:01 -0500 Received: from iva3-dd2bb2ff2b5f.qloud-c.yandex.net (iva3-dd2bb2ff2b5f.qloud-c.yandex.net [IPv6:2a02:6b8:c0c:7611:0:640:dd2b:b2ff]) by forward501c.mail.yandex.net (Yandex) with ESMTP id B98C55EC41; Sat, 4 Mar 2023 22:58:59 +0300 (MSK) Received: by iva3-dd2bb2ff2b5f.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id wweVdALc0Cg1-Hfq2pJ90; Sat, 04 Mar 2023 22:58:59 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1677959939; bh=w9cAT2mLgNtH3OmHmiC107oYTM6vS85ajNQtzceVwuU=; h=References:Date:In-Reply-To:Cc:To:From:Subject:Message-ID; b=cob2I2IYu2vIJsYCUNro/woJHk8KtHF2oVvXTeoYOY3LOl4jApHwrsAHvRGbDF5TM 1grhYRB/fa+vP5O3KIfGW/WP8nR/3hLzH+axcOCCVpxaf75aQtSlQ+jyun211BEsL3 pmeMdoYwgwjcklmFPYSRGmtjz4x/9gMO6iImo1CU= Authentication-Results: iva3-dd2bb2ff2b5f.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: From: Konstantin Kharlamov Date: Sat, 04 Mar 2023 22:58:58 +0300 In-Reply-To: <83edq49tth.fsf@gnu.org> References: <20230213200006.663502-2-Hi-Angel@yandex.ru> <20230216150755.27359-1-Hi-Angel@yandex.ru> <83y1ocaha5.fsf@gnu.org> <83o7p8a7dh.fsf@gnu.org> <21d57e0d55919846bd5d29e9a32e46a7166bf6d2.camel@yandex.ru> <83edq49tth.fsf@gnu.org> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.4 MIME-Version: 1.0 X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Sat, 2023-03-04 at 21:53 +0200, Eli Zaretskii wrote: > > From: Konstantin Kharlamov > > Cc: 61489@debbugs.gnu.org > > Date: Sat, 04 Mar 2023 21:58:06 +0300 > >=20 > > On Sat, 2023-03-04 at 18:33 +0300, Konstantin Kharlamov wrote: > > > On Sat, 2023-03-04 at 17:00 +0200, Eli Zaretskii wrote: > > > > > Cc: 61489-done@debbugs.gnu.org > > > > > Date: Sat, 04 Mar 2023 13:26:58 +0200 > > > > > From: Eli Zaretskii > > > > >=20 > > > > > > * src/alloc.c (BLOCK_ALIGN): increase from 1024 to 32768 > > > > >=20 > > > > > Thanks, installed on the master branch, and closing the bug. > > > >=20 > > > > Note: this change breaks the unexec build, see bug#61960. > > >=20 > > > Oh, I see, thanks! I'll try to build Emacs with sanitizer, it's usual= ly > > > pretty > > > good at that kind of bugs. Will see if there's anything obvious > >=20 > > FTR: it might take longer than I expected, because for unknown reason E= macs > > built with sanitizer isn't built with sanitizer. Yeah, lol. I passed th= e `- > > fsanitize=3Daddress,undefined` to CFLAGS, and `./configure =E2=80=A6` o= utput even > > confirmed it registered them. However, after everything was built, it d= oes > > not make use of sanitizer. > >=20 > > I also realised I forgot to pass `-lasan` to LDFLAGS, so the build shou= ld've > > failed at link-stage. Apparently there are some bugs in the build syste= m > > related to passing cflags through to the actual compiler. >=20 > Are you saying that the advice in etc/DEBUG how to set this up and how > to run the resulting Emacs is inaccurate or incorrect or outdated? Thanks for mentioning that part of documentation, I didn't know about it an= d didn't read it. I am simply saying there is a bug with passing through cflags. From unknown Tue Sep 23 19:46:18 2025 X-Loop: help-debbugs@gnu.org Subject: bug#61489: [PATCH v2] Increase BLOCK_ALIGN from 1024 to 32768 Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sun, 05 Mar 2023 05:49:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61489 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Konstantin Kharlamov Cc: 61489@debbugs.gnu.org Received: via spool by 61489-submit@debbugs.gnu.org id=B61489.16779952928407 (code B ref 61489); Sun, 05 Mar 2023 05:49:01 +0000 Received: (at 61489) by debbugs.gnu.org; 5 Mar 2023 05:48:12 +0000 Received: from localhost ([127.0.0.1]:38214 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYhEB-0002BW-Se for submit@debbugs.gnu.org; Sun, 05 Mar 2023 00:48:12 -0500 Received: from eggs.gnu.org ([209.51.188.92]:41252) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pYhEA-0002Aj-6R for 61489@debbugs.gnu.org; Sun, 05 Mar 2023 00:48:11 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pYhE3-0005Zk-QZ; Sun, 05 Mar 2023 00:48:04 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=D+Bo7AwhotYs3uqF1a7trtvQizZdksRNrbRBRJoSmak=; b=N75MZU5DWs75 wPZVKRxl36/WFiRAWARU3myJGrv14mFe9dxGvRg8vvIDJfNBYJqQqZcb4xG5HxO7dHfAKZNW3M4t2 rYiX99HuRLG6+BC2o+HoaAq7RAm/tTK4bvTm/0PKeBehXsmId2Pdbaj7YBxlg2XLXw7G0GseSYzq0 M5ErZKD/HRm2GP6XIiM0Bgggn4FrU5+7iSlIsTXi6F2at8B22182sQROIGfBYBtcogflBIz1DTMye cQ1PlEa9Dhkzl9GELUXA79rmOh4LGr30FRHBOmWu4UJOZ6O3UZIbAVp4kmnERJojmM0VC8PZsNmfA 96Xm5Nce0u8RopU2Y1P6zg==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pYhE2-0003jw-4i; Sun, 05 Mar 2023 00:48:03 -0500 Date: Sun, 05 Mar 2023 07:47:52 +0200 Message-Id: <83a60ragvr.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: (message from Konstantin Kharlamov on Sat, 04 Mar 2023 22:58:58 +0300) References: <20230213200006.663502-2-Hi-Angel@yandex.ru> <20230216150755.27359-1-Hi-Angel@yandex.ru> <83y1ocaha5.fsf@gnu.org> <83o7p8a7dh.fsf@gnu.org> <21d57e0d55919846bd5d29e9a32e46a7166bf6d2.camel@yandex.ru> <83edq49tth.fsf@gnu.org> X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Konstantin Kharlamov > Cc: 61489@debbugs.gnu.org > Date: Sat, 04 Mar 2023 22:58:58 +0300 > > I am simply saying there is a bug with passing through cflags. The way I do it always works: $ CFLAGS='...whatever...' ./configure ...