public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mike Pagano" <mpagano@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/linux-patches:5.15 commit in: /
Date: Sun,  3 Oct 2021 20:29:06 +0000 (UTC)	[thread overview]
Message-ID: <1633292900.08fdcee6ee1676be74fc36cd4659afa7c2589a13.mpagano@gentoo> (raw)

commit:     08fdcee6ee1676be74fc36cd4659afa7c2589a13
Author:     Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  3 20:28:20 2021 +0000
Commit:     Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Sun Oct  3 20:28:20 2021 +0000
URL:        https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=08fdcee6

Name CPU Opt patch properly and add other patches

Patch to enable link security restrictions by default.
Support for namespace user.pax.* on tmpfs
Enable link security restrictions by default.
Bluetooth: Check key sizes only when Secure Simple Pairing
is enabled. See bug #686758
tmp513 requies REGMAP_I2C to build.  Select it by default in
Kconfig. See bug #710790. Thanks to Phil Stracchino
sign-file: full functionality with modern LibreSSL
Add Gentoo Linux support config settings and defaults.
Kernel Self Protection patch CPU Optimization patch
Patch to print firmware info

Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>

 0000_README                                        | 32 +++++++++++
 1500_XATTR_USER_PREFIX.patch                       | 67 ++++++++++++++++++++++
 ...ble-link-security-restrictions-by-default.patch | 20 +++++++
 ...zes-only-if-Secure-Simple-Pairing-enabled.patch | 37 ++++++++++++
 ...3-Fix-build-issue-by-selecting-CONFIG_REG.patch | 30 ++++++++++
 2920_sign-file-patch-for-libressl.patch            | 16 ++++++
 3000_Support-printing-firmware-info.patch          | 14 +++++
 4567_distro-Gentoo-Kconfig.patch                   |  2 +-
 ...> 5010_enable-cpu-optimizations-universal.patch |  0
 9 files changed, 217 insertions(+), 1 deletion(-)

diff --git a/0000_README b/0000_README
index 9018993..0995b74 100644
--- a/0000_README
+++ b/0000_README
@@ -43,6 +43,38 @@ EXPERIMENTAL
 Individual Patch Descriptions:
 --------------------------------------------------------------------------
 
+Patch:  1500_XATTR_USER_PREFIX.patch
+From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
+Desc:   Support for namespace user.pax.* on tmpfs.
+
+Patch:  1510_fs-enable-link-security-restrictions-by-default.patch
+From:   http://sources.debian.net/src/linux/3.16.7-ckt4-3/debian/patches/debian/fs-enable-link-security-restrictions-by-default.patch/
+Desc:   Enable link security restrictions by default.
+
+Patch:  2000_BT-Check-key-sizes-only-if-Secure-Simple-Pairing-enabled.patch
+From:   https://lore.kernel.org/linux-bluetooth/20190522070540.48895-1-marcel@holtmann.org/raw
+Desc:   Bluetooth: Check key sizes only when Secure Simple Pairing is enabled. See bug #686758
+
+Patch:  2900_tmp513-Fix-build-issue-by-selecting-CONFIG_REG.patch
+From:   https://bugs.gentoo.org/710790
+Desc:   tmp513 requies REGMAP_I2C to build.  Select it by default in Kconfig. See bug #710790. Thanks to Phil Stracchino
+
+Patch:  2920_sign-file-patch-for-libressl.patch
+From:   https://bugs.gentoo.org/717166
+Desc:   sign-file: full functionality with modern LibreSSL
+
+Patch:  3000_Support-printing-firmware-info.patch
+From:   https://bugs.gentoo.org/732852
+Desc:   Print firmware info (Reqs CONFIG_GENTOO_PRINT_FIRMWARE_INFO). Thanks to Georgy Yakovlev
+
 Patch:  4567_distro-Gentoo-Kconfig.patch
 From:   Tom Wijsman <TomWij@gentoo.org>
 Desc:   Add Gentoo Linux support config settings and defaults.
+
+Patch:  5010_enable-cpu-optimizations-universal.patch
+From:   https://github.com/graysky2/kernel_compiler_patch
+Desc:   Kernel >= 5.8 patch enables gcc = v9+ optimizations for additional CPUs.
+
+Patch:  5021_BMQ-and-PDS-gentoo-defaults.patch
+From:   https://gitweb.gentoo.org/proj/linux-patches.git/
+Desc:   Set defaults for BMQ. Add archs as people test, default to N

diff --git a/1500_XATTR_USER_PREFIX.patch b/1500_XATTR_USER_PREFIX.patch
new file mode 100644
index 0000000..245dcc2
--- /dev/null
+++ b/1500_XATTR_USER_PREFIX.patch
@@ -0,0 +1,67 @@
+From: Anthony G. Basile <blueness@gentoo.org>
+
+This patch adds support for a restricted user-controlled namespace on
+tmpfs filesystem used to house PaX flags.  The namespace must be of the
+form user.pax.* and its value cannot exceed a size of 8 bytes.
+
+This is needed even on all Gentoo systems so that XATTR_PAX flags
+are preserved for users who might build packages using portage on
+a tmpfs system with a non-hardened kernel and then switch to a
+hardened kernel with XATTR_PAX enabled.
+
+The namespace is added to any user with Extended Attribute support
+enabled for tmpfs.  Users who do not enable xattrs will not have
+the XATTR_PAX flags preserved.
+
+diff --git a/include/uapi/linux/xattr.h b/include/uapi/linux/xattr.h
+index 1590c49..5eab462 100644
+--- a/include/uapi/linux/xattr.h
++++ b/include/uapi/linux/xattr.h
+@@ -73,5 +73,9 @@
+ #define XATTR_POSIX_ACL_DEFAULT  "posix_acl_default"
+ #define XATTR_NAME_POSIX_ACL_DEFAULT XATTR_SYSTEM_PREFIX XATTR_POSIX_ACL_DEFAULT
+ 
++/* User namespace */
++#define XATTR_PAX_PREFIX XATTR_USER_PREFIX "pax."
++#define XATTR_PAX_FLAGS_SUFFIX "flags"
++#define XATTR_NAME_PAX_FLAGS XATTR_PAX_PREFIX XATTR_PAX_FLAGS_SUFFIX
+ 
+ #endif /* _UAPI_LINUX_XATTR_H */
+--- a/mm/shmem.c	2020-05-04 15:30:27.042035334 -0400
++++ b/mm/shmem.c	2020-05-04 15:34:57.013881725 -0400
+@@ -3238,6 +3238,14 @@ static int shmem_xattr_handler_set(const
+ 	struct shmem_inode_info *info = SHMEM_I(inode);
+ 
+ 	name = xattr_full_name(handler, name);
++
++	if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)) {
++		if (strcmp(name, XATTR_NAME_PAX_FLAGS))
++			return -EOPNOTSUPP;
++		if (size > 8)
++			return -EINVAL;
++	}
++
+ 	return simple_xattr_set(&info->xattrs, name, value, size, flags, NULL);
+ }
+ 
+@@ -3253,6 +3261,12 @@ static const struct xattr_handler shmem_
+ 	.set = shmem_xattr_handler_set,
+ };
+ 
++static const struct xattr_handler shmem_user_xattr_handler = {
++	.prefix = XATTR_USER_PREFIX,
++	.get = shmem_xattr_handler_get,
++	.set = shmem_xattr_handler_set,
++};
++
+ static const struct xattr_handler *shmem_xattr_handlers[] = {
+ #ifdef CONFIG_TMPFS_POSIX_ACL
+ 	&posix_acl_access_xattr_handler,
+@@ -3260,6 +3274,7 @@ static const struct xattr_handler *shmem
+ #endif
+ 	&shmem_security_xattr_handler,
+ 	&shmem_trusted_xattr_handler,
++	&shmem_user_xattr_handler,
+ 	NULL
+ };
+ 

diff --git a/1510_fs-enable-link-security-restrictions-by-default.patch b/1510_fs-enable-link-security-restrictions-by-default.patch
new file mode 100644
index 0000000..f0ed144
--- /dev/null
+++ b/1510_fs-enable-link-security-restrictions-by-default.patch
@@ -0,0 +1,20 @@
+From: Ben Hutchings <ben@decadent.org.uk>
+Subject: fs: Enable link security restrictions by default
+Date: Fri, 02 Nov 2012 05:32:06 +0000
+Bug-Debian: https://bugs.debian.org/609455
+Forwarded: not-needed
+This reverts commit 561ec64ae67ef25cac8d72bb9c4bfc955edfd415
+('VFS: don't do protected {sym,hard}links by default').
+--- a/fs/namei.c	2018-09-28 07:56:07.770005006 -0400
++++ b/fs/namei.c	2018-09-28 07:56:43.370349204 -0400
+@@ -885,8 +885,8 @@ static inline void put_link(struct namei
+ 		path_put(&last->link);
+ }
+ 
+-int sysctl_protected_symlinks __read_mostly = 0;
+-int sysctl_protected_hardlinks __read_mostly = 0;
++int sysctl_protected_symlinks __read_mostly = 1;
++int sysctl_protected_hardlinks __read_mostly = 1;
+ int sysctl_protected_fifos __read_mostly;
+ int sysctl_protected_regular __read_mostly;
+ 

diff --git a/2000_BT-Check-key-sizes-only-if-Secure-Simple-Pairing-enabled.patch b/2000_BT-Check-key-sizes-only-if-Secure-Simple-Pairing-enabled.patch
new file mode 100644
index 0000000..394ad48
--- /dev/null
+++ b/2000_BT-Check-key-sizes-only-if-Secure-Simple-Pairing-enabled.patch
@@ -0,0 +1,37 @@
+The encryption is only mandatory to be enforced when both sides are using
+Secure Simple Pairing and this means the key size check makes only sense
+in that case.
+
+On legacy Bluetooth 2.0 and earlier devices like mice the encryption was
+optional and thus causing an issue if the key size check is not bound to
+using Secure Simple Pairing.
+
+Fixes: d5bb334a8e17 ("Bluetooth: Align minimum encryption key size for LE and BR/EDR connections")
+Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
+Cc: stable@vger.kernel.org
+---
+ net/bluetooth/hci_conn.c | 9 +++++++--
+ 1 file changed, 7 insertions(+), 2 deletions(-)
+
+diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c
+index 3cf0764d5793..7516cdde3373 100644
+--- a/net/bluetooth/hci_conn.c
++++ b/net/bluetooth/hci_conn.c
+@@ -1272,8 +1272,13 @@ int hci_conn_check_link_mode(struct hci_conn *conn)
+ 			return 0;
+ 	}
+ 
+-	if (hci_conn_ssp_enabled(conn) &&
+-	    !test_bit(HCI_CONN_ENCRYPT, &conn->flags))
++	/* If Secure Simple Pairing is not enabled, then legacy connection
++	 * setup is used and no encryption or key sizes can be enforced.
++	 */
++	if (!hci_conn_ssp_enabled(conn))
++		return 1;
++
++	if (!test_bit(HCI_CONN_ENCRYPT, &conn->flags))
+ 		return 0;
+ 
+ 	/* The minimum encryption key size needs to be enforced by the
+-- 
+2.20.1

diff --git a/2900_tmp513-Fix-build-issue-by-selecting-CONFIG_REG.patch b/2900_tmp513-Fix-build-issue-by-selecting-CONFIG_REG.patch
new file mode 100644
index 0000000..4335685
--- /dev/null
+++ b/2900_tmp513-Fix-build-issue-by-selecting-CONFIG_REG.patch
@@ -0,0 +1,30 @@
+From dc328d75a6f37f4ff11a81ae16b1ec88c3197640 Mon Sep 17 00:00:00 2001
+From: Mike Pagano <mpagano@gentoo.org>
+Date: Mon, 23 Mar 2020 08:20:06 -0400
+Subject: [PATCH 1/1] This driver requires REGMAP_I2C to build.  Select it by
+ default in Kconfig. Reported at gentoo bugzilla:
+ https://bugs.gentoo.org/710790
+Cc: mpagano@gentoo.org
+
+Reported-by: Phil Stracchino <phils@caerllewys.net>
+
+Signed-off-by: Mike Pagano <mpagano@gentoo.org>
+---
+ drivers/hwmon/Kconfig | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig
+index 47ac20aee06f..530b4f29ba85 100644
+--- a/drivers/hwmon/Kconfig
++++ b/drivers/hwmon/Kconfig
+@@ -1769,6 +1769,7 @@ config SENSORS_TMP421
+ config SENSORS_TMP513
+ 	tristate "Texas Instruments TMP513 and compatibles"
+ 	depends on I2C
++	select REGMAP_I2C
+ 	help
+ 	  If you say yes here you get support for Texas Instruments TMP512,
+ 	  and TMP513 temperature and power supply sensor chips.
+-- 
+2.24.1
+

diff --git a/2920_sign-file-patch-for-libressl.patch b/2920_sign-file-patch-for-libressl.patch
new file mode 100644
index 0000000..e6ec017
--- /dev/null
+++ b/2920_sign-file-patch-for-libressl.patch
@@ -0,0 +1,16 @@
+--- a/scripts/sign-file.c	2020-05-20 18:47:21.282820662 -0400
++++ b/scripts/sign-file.c	2020-05-20 18:48:37.991081899 -0400
+@@ -41,9 +41,10 @@
+  * signing with anything other than SHA1 - so we're stuck with that if such is
+  * the case.
+  */
+-#if defined(LIBRESSL_VERSION_NUMBER) || \
+-	OPENSSL_VERSION_NUMBER < 0x10000000L || \
+-	defined(OPENSSL_NO_CMS)
++#if defined(OPENSSL_NO_CMS) || \
++	( defined(LIBRESSL_VERSION_NUMBER) \
++	&& (LIBRESSL_VERSION_NUMBER < 0x3010000fL) ) || \
++	OPENSSL_VERSION_NUMBER < 0x10000000L
+ #define USE_PKCS7
+ #endif
+ #ifndef USE_PKCS7

diff --git a/3000_Support-printing-firmware-info.patch b/3000_Support-printing-firmware-info.patch
new file mode 100644
index 0000000..a630cfb
--- /dev/null
+++ b/3000_Support-printing-firmware-info.patch
@@ -0,0 +1,14 @@
+--- a/drivers/base/firmware_loader/main.c	2021-08-24 15:42:07.025482085 -0400
++++ b/drivers/base/firmware_loader/main.c	2021-08-24 15:44:40.782975313 -0400
+@@ -809,6 +809,11 @@ _request_firmware(const struct firmware
+ 
+ 	ret = _request_firmware_prepare(&fw, name, device, buf, size,
+ 					offset, opt_flags);
++
++#ifdef CONFIG_GENTOO_PRINT_FIRMWARE_INFO
++        printk(KERN_NOTICE "Loading firmware: %s\n", name);
++#endif
++
+ 	if (ret <= 0) /* error or already assigned */
+ 		goto out;
+ 

diff --git a/4567_distro-Gentoo-Kconfig.patch b/4567_distro-Gentoo-Kconfig.patch
index d2175f0..74e80d3 100644
--- a/4567_distro-Gentoo-Kconfig.patch
+++ b/4567_distro-Gentoo-Kconfig.patch
@@ -65,6 +65,7 @@
 +	select NET_NS
 +	select PID_NS
 +	select SYSVIPC
++	select USER_NS
 +	select UTS_NS
 +
 +	help
@@ -145,7 +146,6 @@
 +	select TIMERFD
 +	select TMPFS_POSIX_ACL
 +	select TMPFS_XATTR
-+	select USER_NS
 +
 +	select ANON_INODES
 +	select BLOCK

diff --git a/more-uarches-for-kernel-5.15+.patch b/5010_enable-cpu-optimizations-universal.patch
similarity index 100%
rename from more-uarches-for-kernel-5.15+.patch
rename to 5010_enable-cpu-optimizations-universal.patch


             reply	other threads:[~2021-10-03 20:29 UTC|newest]

Thread overview: 230+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-03 20:29 Mike Pagano [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-10-03 21:17 [gentoo-commits] proj/linux-patches:5.15 commit in: / Mike Pagano
2021-10-21 17:16 Mike Pagano
2021-11-01 11:52 Mike Pagano
2021-11-04 12:22 Mike Pagano
2021-11-06 13:45 Mike Pagano
2021-11-12 14:37 Mike Pagano
2021-11-15 11:40 Mike Pagano
2021-11-16 22:18 Mike Pagano
2021-11-18 19:49 Mike Pagano
2021-11-18 19:49 Mike Pagano
2021-11-19 14:51 Mike Pagano
2021-11-21 10:34 Mike Pagano
2021-11-21 20:37 Mike Pagano
2021-11-21 20:56 Mike Pagano
2021-11-25 12:03 Mike Pagano
2021-11-29 23:36 Mike Pagano
2021-11-30  0:49 Mike Pagano
2021-12-01 12:48 Mike Pagano
2021-12-03 15:38 Mike Pagano
2021-12-08 12:52 Mike Pagano
2021-12-08 13:18 Mike Pagano
2021-12-14 10:35 Mike Pagano
2021-12-16 16:03 Mike Pagano
2021-12-17 11:54 Mike Pagano
2021-12-21 19:30 Mike Pagano
2021-12-22 14:04 Mike Pagano
2021-12-29 13:05 Mike Pagano
2022-01-05 12:52 Mike Pagano
2022-01-05 12:53 Mike Pagano
2022-01-11 15:34 Mike Pagano
2022-01-16 10:21 Mike Pagano
2022-01-20 13:40 Mike Pagano
2022-01-27 11:37 Mike Pagano
2022-01-27 12:01 Mike Pagano
2022-01-29 17:42 Mike Pagano
2022-01-30 20:55 Mike Pagano
2022-02-01 17:22 Mike Pagano
2022-02-05 12:12 Mike Pagano
2022-02-05 19:03 Mike Pagano
2022-02-08 15:13 Mike Pagano
2022-02-08 17:53 Mike Pagano
2022-02-11 12:34 Mike Pagano
2022-02-16 12:45 Mike Pagano
2022-02-23 12:36 Mike Pagano
2022-02-23 12:54 Mike Pagano
2022-02-26 20:11 Mike Pagano
2022-03-02 13:05 Mike Pagano
2022-03-08 18:33 Mike Pagano
2022-03-11 12:01 Mike Pagano
2022-03-16 13:56 Mike Pagano
2022-03-19 13:18 Mike Pagano
2022-03-23 11:53 Mike Pagano
2022-03-28 10:57 Mike Pagano
2022-03-28 22:50 Mike Pagano
2022-04-08 12:55 Mike Pagano
2022-04-08 12:57 Mike Pagano
2022-04-12 18:42 Mike Pagano
2022-04-13 19:47 Mike Pagano
2022-04-13 19:47 Mike Pagano
2022-04-20 12:07 Mike Pagano
2022-04-26 12:12 Mike Pagano
2022-04-27 13:11 Mike Pagano
2022-04-27 13:14 Mike Pagano
2022-05-01 17:03 Mike Pagano
2022-05-09 10:57 Mike Pagano
2022-05-12 11:27 Mike Pagano
2022-05-12 11:28 Mike Pagano
2022-05-15 22:09 Mike Pagano
2022-05-18  9:47 Mike Pagano
2022-05-25 11:53 Mike Pagano
2022-05-25 13:04 Mike Pagano
2022-05-30 14:00 Mike Pagano
2022-06-06 11:02 Mike Pagano
2022-06-09 11:27 Mike Pagano
2022-06-14 17:11 Mike Pagano
2022-06-16 11:59 Mike Pagano
2022-06-22 12:44 Mike Pagano
2022-06-25 19:44 Mike Pagano
2022-06-29 11:08 Mike Pagano
2022-07-02 16:11 Mike Pagano
2022-07-07 16:16 Mike Pagano
2022-07-12 15:59 Mike Pagano
2022-07-15 10:02 Mike Pagano
2022-07-21 20:07 Mike Pagano
2022-07-23 11:54 Alice Ferrazzi
2022-07-23 11:54 Alice Ferrazzi
2022-07-29 16:38 Mike Pagano
2022-08-03 14:24 Alice Ferrazzi
2022-08-11 12:33 Mike Pagano
2022-08-17 14:32 Mike Pagano
2022-08-21 16:53 Mike Pagano
2022-08-25 10:32 Mike Pagano
2022-08-31 15:38 Mike Pagano
2022-09-05 12:03 Mike Pagano
2022-09-08 10:48 Mike Pagano
2022-09-08 11:04 Mike Pagano
2022-09-15 10:30 Mike Pagano
2022-09-20 12:01 Mike Pagano
2022-09-23 12:39 Mike Pagano
2022-09-28  9:33 Mike Pagano
2022-10-05 11:57 Mike Pagano
2022-10-12 11:18 Mike Pagano
2022-10-15 10:04 Mike Pagano
2022-10-26 11:25 Mike Pagano
2022-10-29  9:53 Mike Pagano
2022-11-03 15:22 Mike Pagano
2022-11-10 18:09 Mike Pagano
2022-11-16 11:33 Alice Ferrazzi
2022-11-26 11:56 Mike Pagano
2022-12-02 17:25 Mike Pagano
2022-12-08 11:46 Alice Ferrazzi
2022-12-14 12:13 Mike Pagano
2022-12-19 12:25 Alice Ferrazzi
2022-12-21 19:00 Alice Ferrazzi
2022-12-31 15:30 Mike Pagano
2023-01-12 12:18 Mike Pagano
2023-01-14 13:51 Mike Pagano
2023-01-18 11:08 Mike Pagano
2023-01-22 15:32 Mike Pagano
2023-01-24  7:04 Alice Ferrazzi
2023-02-01  8:07 Alice Ferrazzi
2023-02-02 19:07 Mike Pagano
2023-02-06 12:47 Mike Pagano
2023-02-09 12:35 Mike Pagano
2023-02-14 18:35 Mike Pagano
2023-02-22 14:02 Alice Ferrazzi
2023-02-24  3:04 Alice Ferrazzi
2023-02-25 11:45 Mike Pagano
2023-03-03 12:29 Mike Pagano
2023-03-03 15:00 Mike Pagano
2023-03-10 12:47 Mike Pagano
2023-03-11 14:10 Mike Pagano
2023-03-12 12:34 Alice Ferrazzi
2023-03-13 11:31 Alice Ferrazzi
2023-03-17 10:44 Mike Pagano
2023-03-22 14:08 Alice Ferrazzi
2023-03-30 11:01 Alice Ferrazzi
2023-04-05 10:01 Alice Ferrazzi
2023-04-13 16:10 Mike Pagano
2023-04-20 11:16 Alice Ferrazzi
2023-04-26 12:20 Alice Ferrazzi
2023-04-30 23:41 Alice Ferrazzi
2023-05-10 17:55 Mike Pagano
2023-05-11 14:50 Alice Ferrazzi
2023-05-11 16:03 Mike Pagano
2023-05-17 10:58 Mike Pagano
2023-05-24 17:06 Mike Pagano
2023-05-30 16:52 Mike Pagano
2023-06-05 11:49 Mike Pagano
2023-06-09 11:30 Mike Pagano
2023-06-14 10:18 Mike Pagano
2023-06-14 10:37 Mike Pagano
2023-06-21 14:54 Alice Ferrazzi
2023-06-28 10:26 Mike Pagano
2023-07-05 20:29 Mike Pagano
2023-07-23 15:12 Mike Pagano
2023-07-24 20:27 Mike Pagano
2023-07-27 11:48 Mike Pagano
2023-08-03 11:49 Mike Pagano
2023-08-08 18:41 Mike Pagano
2023-08-11 14:51 Mike Pagano
2023-08-16 17:02 Mike Pagano
2023-08-26 15:20 Mike Pagano
2023-08-30 14:45 Mike Pagano
2023-09-02  9:57 Mike Pagano
2023-09-06 22:17 Mike Pagano
2023-09-19 13:21 Mike Pagano
2023-09-23 10:17 Mike Pagano
2023-10-05 14:23 Mike Pagano
2023-10-06 12:37 Mike Pagano
2023-10-10 22:57 Mike Pagano
2023-10-18 20:11 Mike Pagano
2023-10-19 22:31 Mike Pagano
2023-10-22 22:54 Mike Pagano
2023-10-25 11:37 Mike Pagano
2023-11-08 17:29 Mike Pagano
2023-11-20 11:24 Mike Pagano
2023-11-28 17:52 Mike Pagano
2023-12-01 10:49 Mike Pagano
2023-12-01 10:56 Mike Pagano
2023-12-03 11:17 Mike Pagano
2023-12-08 11:14 Mike Pagano
2023-12-13 18:28 Mike Pagano
2023-12-20 15:20 Mike Pagano
2023-12-23 10:56 Mike Pagano
2024-01-05 14:33 Mike Pagano
2024-01-15 18:48 Mike Pagano
2024-01-25 23:33 Mike Pagano
2024-02-23 12:38 Mike Pagano
2024-02-23 13:14 Mike Pagano
2024-03-01 13:08 Mike Pagano
2024-03-06 18:08 Mike Pagano
2024-03-15 22:01 Mike Pagano
2024-03-27 11:25 Mike Pagano
2024-04-10 15:11 Mike Pagano
2024-04-13 13:08 Mike Pagano
2024-04-18  3:05 Alice Ferrazzi
2024-04-27 17:07 Mike Pagano
2024-04-27 22:51 Mike Pagano
2024-05-02 15:02 Mike Pagano
2024-05-05 18:11 Mike Pagano
2024-05-17 11:37 Mike Pagano
2024-05-25 15:15 Mike Pagano
2024-06-16 14:34 Mike Pagano
2024-07-05 10:50 Mike Pagano
2024-07-05 10:55 Mike Pagano
2024-07-18 12:16 Mike Pagano
2024-07-27  9:17 Mike Pagano
2024-07-27  9:22 Mike Pagano
2024-07-27  9:23 Mike Pagano
2024-08-19 10:44 Mike Pagano
2024-09-04 13:53 Mike Pagano
2024-09-12 12:42 Mike Pagano
2024-10-17 14:07 Mike Pagano
2024-10-17 14:14 Mike Pagano
2024-10-22 16:59 Mike Pagano
2024-10-25 11:48 Mike Pagano
2024-11-01 11:31 Mike Pagano
2024-11-01 11:32 Mike Pagano
2024-11-08 16:32 Mike Pagano
2024-11-14 14:57 Mike Pagano
2024-11-17 18:18 Mike Pagano
2024-12-14 23:50 Mike Pagano
2024-12-19 18:09 Mike Pagano
2025-01-09 13:56 Mike Pagano
2025-01-23 17:05 Mike Pagano
2025-02-01 23:09 Mike Pagano
2025-03-13 12:57 Mike Pagano
2025-04-10 13:15 Mike Pagano

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1633292900.08fdcee6ee1676be74fc36cd4659afa7c2589a13.mpagano@gentoo \
    --to=mpagano@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox