From: Olof Johansson <olof@lixom.net>
To: torvalds@linux-foundation.org
Cc: olof@lixom.net, arm@kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] ARM: SoC fixes
Date: Sun, 13 Jan 2019 10:48:25 -0800 [thread overview]
Message-ID: <20190113184825.ogv3cmshi63hxlgj@localhost> (raw)
Hi Linus,
The following changes since commit bfeffd155283772bbe78c6a05dec7c0128ee500c:
Linux 5.0-rc1 (2019-01-06 17:08:20 -0800)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git tags/armsoc-fixes
for you to fetch changes up to 465612178b44840b2066e62c3bcfae80862011d4:
Merge tag 'reset-for-5.0-rc2' of git://git.pengutronix.de/git/pza/linux into fixes (2019-01-12 22:06:54 -0800)
----------------------------------------------------------------
ARM: SoC fixes
A bigger batch than I anticipated this week, for two reasons:
- Some fallout on Davinci from board file -> DTB conversion, that also
includes a few longer-standing fixes (i.e. not recent regressions).
- drivers/reset material that has been in linux-next for a while, but
didn't get sent to us until now for a variety of reasons (maintainer out
sick, holidays, etc). There's a functional dependency in there such that
one platform (Altera's SoCFPGA) won't boot without one of the patches;
instead of reverting the patch that got merged, I looked at this set
and decided it was small enough that I'll pick it up anyway. If you
disagree I can revisit with a smaller set.
That being said, there's also a handful of the usual stuff:
- Fix for a crash on Armada 7K/8K when the kernel touches PSCI-reserved
memory
- Fix for PCIe reset on Macchiatobin (Armada 8K development board, what
this email is sent from in fact :)
- Enable a few new-merged modules for Amlogic in arm64 defconfig
- Error path fixes on Integrator
- Build fix for Renesas and Qualcomm
- Initialization fix for Renesas RZ/G2E
+ A few more fixlets.
----------------------------------------------------------------
Arnd Bergmann (1):
ARM: shmobile: fix build regressions
Bartosz Golaszewski (5):
ARM: davinci: da830-evm: fix label names in GPIO lookup entries
ARM: davinci: da850-evm: fix label names in GPIO lookup entries
ARM: davinci: dm355-evm: fix label names in GPIO lookup entries
ARM: davinci: dm644x-evm: fix label names in GPIO lookup entries
ARM: davinci: omapl138-hawk: fix label names in GPIO lookup entries
Baruch Siach (1):
arm64: dts: marvell: mcbin: fix PCIe reset signal
Biju Das (1):
soc: renesas: r8a774c0-sysc: Fix initialization order of 3DG-{A,B}
Colin Ian King (1):
reset: fix null pointer dereference on dev by dev_name
Dinh Nguyen (2):
reset: socfpga: add an early reset driver for SoCFPGA
ARM: socfpga: dts: document "altr,stratix10-rst-mgr" binding
Eugeniy Paltsev (1):
ARC: HSDK: improve reset driver
Fabio Estevam (1):
qcom-scm: Include <linux/err.h> header
Geert Uytterhoeven (2):
reset: Improve reset controller kernel docs
reset: Add reset_control_get_count()
Gustavo A. R. Silva (1):
ARM: integrator: impd1: use struct_size() in devm_kzalloc()
Heinrich Schuchardt (1):
arm64: dts: marvell: armada-ap806: reserve PSCI area
Jerome Brunet (1):
arm64: defconfig: enable modules for amlogic s400 sound card
Kunihiko Hayashi (4):
dt-bindings: reset: uniphier: Replace the expression of USB3 with generic peripherals
reset: uniphier-usb3: Rename to reset-uniphier-glue
dt-bindings: reset: uniphier: Add AHCI core reset description
reset: uniphier-glue: Add AHCI reset control support in glue layer
Linus Walleij (1):
ARM: dts: kirkwood: Fix polarity of GPIO fan lines
Nicholas Mc Guire (1):
gpio: pl061: handle failed allocations
Olof Johansson (7):
Merge tag 'renesas-fixes-for-v5.0' of https://git.kernel.org/.../horms/renesas into fixes
Merge tag 'davinci-fixes-for-v5.0' of git://git.kernel.org/.../nsekhar/linux-davinci into fixes
Merge tag 'qcom-fixes-for-5.0-rc1' of git://git.kernel.org/.../agross/linux into fixes
Merge tag 'amlogic-fixes' of https://git.kernel.org/.../khilman/linux-amlogic into fixes
Merge tag 'integrator-fixes-armsoc' of git://git.kernel.org/.../linusw/linux-integrator into fixes
Merge tag 'mvebu-fixes-5.0-1' of git://git.infradead.org/linux-mvebu into fixes
Merge tag 'reset-for-5.0-rc2' of git://git.pengutronix.de/git/pza/linux into fixes
Peter Ujfalusi (4):
ARM: dts: da850-evm: Correct the audio codec regulators
ARM: dts: da850-evm: Correct the sound card name
ARM: dts: da850-lcdk: Correct the audio codec regulators
ARM: dts: da850-lcdk: Correct the sound card name
.../devicetree/bindings/reset/socfpga-reset.txt | 3 +-
.../devicetree/bindings/reset/uniphier-reset.txt | 25 +++---
arch/arm/boot/dts/da850-evm.dts | 31 ++++++--
arch/arm/boot/dts/da850-lcdk.dts | 38 +++++++++-
arch/arm/boot/dts/kirkwood-dnskw.dtsi | 4 +-
arch/arm/mach-davinci/board-da830-evm.c | 4 +-
arch/arm/mach-davinci/board-da850-evm.c | 4 +-
arch/arm/mach-davinci/board-dm355-evm.c | 4 +-
arch/arm/mach-davinci/board-dm644x-evm.c | 4 +-
arch/arm/mach-davinci/board-omapl138-hawk.c | 4 +-
arch/arm/mach-integrator/impd1.c | 8 +-
arch/arm/mach-socfpga/socfpga.c | 4 +
arch/arm64/boot/dts/marvell/armada-8040-mcbin.dtsi | 2 +-
arch/arm64/boot/dts/marvell/armada-ap806.dtsi | 17 +++++
arch/arm64/configs/defconfig | 4 +
drivers/reset/Kconfig | 20 +++--
drivers/reset/Makefile | 3 +-
drivers/reset/core.c | 42 +++++++++++
drivers/reset/reset-hsdk.c | 1 +
drivers/reset/reset-simple.c | 13 +---
drivers/reset/reset-socfpga.c | 88 ++++++++++++++++++++++
...reset-uniphier-usb3.c => reset-uniphier-glue.c} | 50 +++++++-----
drivers/soc/renesas/Kconfig | 2 +-
drivers/soc/renesas/r8a774c0-sysc.c | 23 +-----
include/linux/qcom_scm.h | 1 +
include/linux/reset.h | 15 +++-
26 files changed, 321 insertions(+), 93 deletions(-)
create mode 100644 drivers/reset/reset-socfpga.c
rename drivers/reset/{reset-uniphier-usb3.c => reset-uniphier-glue.c} (73%)
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
WARNING: multiple messages have this Message-ID (diff)
From: Olof Johansson <olof@lixom.net>
To: torvalds@linux-foundation.org
Cc: olof@lixom.net, arm@kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: [GIT PULL] ARM: SoC fixes
Date: Sun, 13 Jan 2019 10:48:25 -0800 [thread overview]
Message-ID: <20190113184825.ogv3cmshi63hxlgj@localhost> (raw)
Hi Linus,
The following changes since commit bfeffd155283772bbe78c6a05dec7c0128ee500c:
Linux 5.0-rc1 (2019-01-06 17:08:20 -0800)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git tags/armsoc-fixes
for you to fetch changes up to 465612178b44840b2066e62c3bcfae80862011d4:
Merge tag 'reset-for-5.0-rc2' of git://git.pengutronix.de/git/pza/linux into fixes (2019-01-12 22:06:54 -0800)
----------------------------------------------------------------
ARM: SoC fixes
A bigger batch than I anticipated this week, for two reasons:
- Some fallout on Davinci from board file -> DTB conversion, that also
includes a few longer-standing fixes (i.e. not recent regressions).
- drivers/reset material that has been in linux-next for a while, but
didn't get sent to us until now for a variety of reasons (maintainer out
sick, holidays, etc). There's a functional dependency in there such that
one platform (Altera's SoCFPGA) won't boot without one of the patches;
instead of reverting the patch that got merged, I looked at this set
and decided it was small enough that I'll pick it up anyway. If you
disagree I can revisit with a smaller set.
That being said, there's also a handful of the usual stuff:
- Fix for a crash on Armada 7K/8K when the kernel touches PSCI-reserved
memory
- Fix for PCIe reset on Macchiatobin (Armada 8K development board, what
this email is sent from in fact :)
- Enable a few new-merged modules for Amlogic in arm64 defconfig
- Error path fixes on Integrator
- Build fix for Renesas and Qualcomm
- Initialization fix for Renesas RZ/G2E
+ A few more fixlets.
----------------------------------------------------------------
Arnd Bergmann (1):
ARM: shmobile: fix build regressions
Bartosz Golaszewski (5):
ARM: davinci: da830-evm: fix label names in GPIO lookup entries
ARM: davinci: da850-evm: fix label names in GPIO lookup entries
ARM: davinci: dm355-evm: fix label names in GPIO lookup entries
ARM: davinci: dm644x-evm: fix label names in GPIO lookup entries
ARM: davinci: omapl138-hawk: fix label names in GPIO lookup entries
Baruch Siach (1):
arm64: dts: marvell: mcbin: fix PCIe reset signal
Biju Das (1):
soc: renesas: r8a774c0-sysc: Fix initialization order of 3DG-{A,B}
Colin Ian King (1):
reset: fix null pointer dereference on dev by dev_name
Dinh Nguyen (2):
reset: socfpga: add an early reset driver for SoCFPGA
ARM: socfpga: dts: document "altr,stratix10-rst-mgr" binding
Eugeniy Paltsev (1):
ARC: HSDK: improve reset driver
Fabio Estevam (1):
qcom-scm: Include <linux/err.h> header
Geert Uytterhoeven (2):
reset: Improve reset controller kernel docs
reset: Add reset_control_get_count()
Gustavo A. R. Silva (1):
ARM: integrator: impd1: use struct_size() in devm_kzalloc()
Heinrich Schuchardt (1):
arm64: dts: marvell: armada-ap806: reserve PSCI area
Jerome Brunet (1):
arm64: defconfig: enable modules for amlogic s400 sound card
Kunihiko Hayashi (4):
dt-bindings: reset: uniphier: Replace the expression of USB3 with generic peripherals
reset: uniphier-usb3: Rename to reset-uniphier-glue
dt-bindings: reset: uniphier: Add AHCI core reset description
reset: uniphier-glue: Add AHCI reset control support in glue layer
Linus Walleij (1):
ARM: dts: kirkwood: Fix polarity of GPIO fan lines
Nicholas Mc Guire (1):
gpio: pl061: handle failed allocations
Olof Johansson (7):
Merge tag 'renesas-fixes-for-v5.0' of https://git.kernel.org/.../horms/renesas into fixes
Merge tag 'davinci-fixes-for-v5.0' of git://git.kernel.org/.../nsekhar/linux-davinci into fixes
Merge tag 'qcom-fixes-for-5.0-rc1' of git://git.kernel.org/.../agross/linux into fixes
Merge tag 'amlogic-fixes' of https://git.kernel.org/.../khilman/linux-amlogic into fixes
Merge tag 'integrator-fixes-armsoc' of git://git.kernel.org/.../linusw/linux-integrator into fixes
Merge tag 'mvebu-fixes-5.0-1' of git://git.infradead.org/linux-mvebu into fixes
Merge tag 'reset-for-5.0-rc2' of git://git.pengutronix.de/git/pza/linux into fixes
Peter Ujfalusi (4):
ARM: dts: da850-evm: Correct the audio codec regulators
ARM: dts: da850-evm: Correct the sound card name
ARM: dts: da850-lcdk: Correct the audio codec regulators
ARM: dts: da850-lcdk: Correct the sound card name
.../devicetree/bindings/reset/socfpga-reset.txt | 3 +-
.../devicetree/bindings/reset/uniphier-reset.txt | 25 +++---
arch/arm/boot/dts/da850-evm.dts | 31 ++++++--
arch/arm/boot/dts/da850-lcdk.dts | 38 +++++++++-
arch/arm/boot/dts/kirkwood-dnskw.dtsi | 4 +-
arch/arm/mach-davinci/board-da830-evm.c | 4 +-
arch/arm/mach-davinci/board-da850-evm.c | 4 +-
arch/arm/mach-davinci/board-dm355-evm.c | 4 +-
arch/arm/mach-davinci/board-dm644x-evm.c | 4 +-
arch/arm/mach-davinci/board-omapl138-hawk.c | 4 +-
arch/arm/mach-integrator/impd1.c | 8 +-
arch/arm/mach-socfpga/socfpga.c | 4 +
arch/arm64/boot/dts/marvell/armada-8040-mcbin.dtsi | 2 +-
arch/arm64/boot/dts/marvell/armada-ap806.dtsi | 17 +++++
arch/arm64/configs/defconfig | 4 +
drivers/reset/Kconfig | 20 +++--
drivers/reset/Makefile | 3 +-
drivers/reset/core.c | 42 +++++++++++
drivers/reset/reset-hsdk.c | 1 +
drivers/reset/reset-simple.c | 13 +---
drivers/reset/reset-socfpga.c | 88 ++++++++++++++++++++++
...reset-uniphier-usb3.c => reset-uniphier-glue.c} | 50 +++++++-----
drivers/soc/renesas/Kconfig | 2 +-
drivers/soc/renesas/r8a774c0-sysc.c | 23 +-----
include/linux/qcom_scm.h | 1 +
include/linux/reset.h | 15 +++-
26 files changed, 321 insertions(+), 93 deletions(-)
create mode 100644 drivers/reset/reset-socfpga.c
rename drivers/reset/{reset-uniphier-usb3.c => reset-uniphier-glue.c} (73%)
next reply other threads:[~2019-01-13 18:48 UTC|newest]
Thread overview: 180+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-13 18:48 Olof Johansson [this message]
2019-01-13 18:48 ` [GIT PULL] ARM: SoC fixes Olof Johansson
2019-01-13 22:50 ` pr-tracker-bot
2019-01-13 22:50 ` pr-tracker-bot
-- strict thread matches above, loose matches on Subject: below --
2020-09-13 18:07 Olof Johansson
2020-09-13 18:07 ` Olof Johansson
2020-09-13 21:57 ` pr-tracker-bot
2020-04-23 15:17 [GIT PULL] ARM: soc fixes Arnd Bergmann
2020-04-23 15:17 ` Arnd Bergmann
2020-04-23 16:45 ` pr-tracker-bot
2020-03-08 23:58 [GIT PULL] ARM: SoC fixes Olof Johansson
2020-03-08 23:58 ` Olof Johansson
2020-03-09 0:50 ` pr-tracker-bot
2020-02-15 19:49 Olof Johansson
2020-02-15 19:49 ` Olof Johansson
2020-02-15 21:25 ` pr-tracker-bot
2020-02-15 21:25 ` pr-tracker-bot
2020-01-25 21:37 Olof Johansson
2020-01-25 21:37 ` Olof Johansson
2020-01-25 22:15 ` pr-tracker-bot
2020-01-25 22:15 ` pr-tracker-bot
2020-01-17 3:00 Olof Johansson
2020-01-17 3:00 ` Olof Johansson
2020-01-17 3:50 ` pr-tracker-bot
2020-01-17 3:50 ` pr-tracker-bot
2019-12-16 21:53 Olof Johansson
2019-12-16 21:53 ` Olof Johansson
2019-12-17 0:55 ` pr-tracker-bot
2019-12-17 0:55 ` pr-tracker-bot
2019-12-06 20:53 Olof Johansson
2019-12-06 20:53 ` Olof Johansson
2019-12-06 22:25 ` pr-tracker-bot
2019-12-06 22:25 ` pr-tracker-bot
2019-11-10 18:25 Olof Johansson
2019-11-10 18:25 ` Olof Johansson
2019-11-10 21:45 ` pr-tracker-bot
2019-11-10 21:45 ` pr-tracker-bot
2019-10-25 15:38 Olof Johansson
2019-10-25 15:38 ` Olof Johansson
2019-10-25 21:35 ` pr-tracker-bot
2019-10-25 21:35 ` pr-tracker-bot
2019-10-05 22:41 Olof Johansson
2019-10-05 22:41 ` Olof Johansson
2019-10-06 0:40 ` pr-tracker-bot
2019-10-06 0:40 ` pr-tracker-bot
2019-09-29 18:34 Olof Johansson
2019-09-29 18:34 ` Olof Johansson
2019-09-30 17:30 ` pr-tracker-bot
2019-09-30 17:30 ` pr-tracker-bot
2019-07-28 6:37 Olof Johansson
2019-07-28 6:37 ` Olof Johansson
2019-07-28 17:30 ` pr-tracker-bot
2019-07-28 17:30 ` pr-tracker-bot
2019-07-05 0:22 Olof Johansson
2019-07-05 0:22 ` Olof Johansson
2019-07-05 2:55 ` pr-tracker-bot
2019-07-05 2:55 ` pr-tracker-bot
2019-06-27 2:45 Olof Johansson
2019-06-27 2:45 ` Olof Johansson
2019-06-28 0:45 ` pr-tracker-bot
2019-06-28 0:45 ` pr-tracker-bot
2019-06-18 13:52 Olof Johansson
2019-06-18 13:52 ` Olof Johansson
2019-06-18 18:05 ` pr-tracker-bot
2019-06-18 18:05 ` pr-tracker-bot
2019-04-07 22:50 Olof Johansson
2019-04-07 22:50 ` Olof Johansson
2019-04-07 22:54 ` Olof Johansson
2019-04-07 22:54 ` Olof Johansson
2019-04-08 0:10 ` pr-tracker-bot
2019-04-08 0:10 ` pr-tracker-bot
2018-12-10 1:23 Olof Johansson
2018-12-10 1:23 ` Olof Johansson
2018-12-10 20:20 ` pr-tracker-bot
2018-12-10 20:20 ` pr-tracker-bot
2018-12-02 19:23 Olof Johansson
2018-12-02 19:23 ` Olof Johansson
2018-12-02 20:30 ` pr-tracker-bot
2018-12-02 20:30 ` pr-tracker-bot
2018-11-07 17:10 Olof Johansson
2018-11-07 17:10 ` Olof Johansson
2018-11-07 17:17 ` Linus Torvalds
2018-11-07 17:17 ` Linus Torvalds
2018-11-07 17:28 ` Olof Johansson
2018-11-07 17:28 ` Olof Johansson
2018-11-08 15:49 ` Tony Lindgren
2018-11-08 15:49 ` Tony Lindgren
2018-11-08 15:49 ` Tony Lindgren
2018-11-10 18:09 ` Olof Johansson
2018-11-10 18:09 ` Olof Johansson
2018-11-12 6:13 ` Corentin Labbe
2018-11-12 6:13 ` Corentin Labbe
2018-11-12 17:33 ` Tony Lindgren
2018-11-12 17:33 ` Tony Lindgren
2018-11-03 18:45 Olof Johansson
2018-11-03 18:45 ` Olof Johansson
2018-11-03 19:15 ` Linus Torvalds
2018-11-03 19:15 ` Linus Torvalds
2018-09-30 19:23 Olof Johansson
2018-09-30 19:23 ` Olof Johansson
2018-10-02 0:53 ` Greg KH
2018-10-02 0:53 ` Greg KH
2018-09-08 17:15 Olof Johansson
2018-09-08 17:15 ` Olof Johansson
2018-09-02 2:36 Olof Johansson
2018-09-02 2:36 ` Olof Johansson
2018-07-21 21:13 Olof Johansson
2018-07-21 21:13 ` Olof Johansson
2018-07-15 6:00 Olof Johansson
2018-07-15 6:00 ` Olof Johansson
2018-07-08 16:32 Olof Johansson
2018-07-08 16:32 ` Olof Johansson
2018-06-30 19:32 Olof Johansson
2018-06-30 19:32 ` Olof Johansson
2018-06-27 14:38 Olof Johansson
2018-06-27 14:38 ` Olof Johansson
2018-05-26 21:01 Olof Johansson
2018-05-26 21:01 ` Olof Johansson
2018-05-20 1:23 Olof Johansson
2018-05-20 1:23 ` Olof Johansson
2017-12-10 5:11 Olof Johansson
2017-12-10 5:11 ` Olof Johansson
2017-10-04 23:05 Olof Johansson
2017-10-04 23:05 ` Olof Johansson
2017-06-19 6:40 Olof Johansson
2017-06-19 6:40 ` Olof Johansson
2017-06-07 4:18 Olof Johansson
2017-06-07 4:18 ` Olof Johansson
2017-04-16 19:00 Olof Johansson
2017-04-16 19:00 ` Olof Johansson
2017-02-08 17:07 Arnd Bergmann
2017-02-08 17:07 ` Arnd Bergmann
2017-01-20 0:35 Olof Johansson
2017-01-20 0:35 ` Olof Johansson
2016-12-09 18:01 Olof Johansson
2016-12-09 18:01 ` Olof Johansson
2016-11-20 2:37 Olof Johansson
2016-11-20 2:37 ` Olof Johansson
2016-11-20 2:22 Olof Johansson
2016-11-20 2:22 ` Olof Johansson
2016-11-20 2:26 ` Linus Torvalds
2016-11-20 2:26 ` Linus Torvalds
2016-11-20 2:36 ` Olof Johansson
2016-11-20 2:36 ` Olof Johansson
2016-10-29 18:54 Olof Johansson
2016-10-29 18:54 ` Olof Johansson
2016-09-08 4:57 Olof Johansson
2016-09-08 4:57 ` Olof Johansson
2016-08-11 21:06 Arnd Bergmann
2016-08-11 21:06 ` Arnd Bergmann
2016-07-17 4:56 Olof Johansson
2016-07-17 4:56 ` Olof Johansson
2016-04-12 23:52 Olof Johansson
2016-04-12 23:52 ` Olof Johansson
2015-08-02 7:29 Olof Johansson
2015-08-02 7:29 ` Olof Johansson
2015-07-19 4:16 Olof Johansson
2015-07-19 4:16 ` Olof Johansson
2015-03-29 21:12 Olof Johansson
2015-03-29 21:12 ` Olof Johansson
2015-02-01 17:19 Olof Johansson
2015-02-01 17:19 ` Olof Johansson
2015-01-24 23:19 Olof Johansson
2015-01-24 23:19 ` Olof Johansson
2015-01-18 5:57 Olof Johansson
2015-01-18 5:57 ` Olof Johansson
2014-08-10 5:14 Olof Johansson
2014-08-10 5:14 ` Olof Johansson
2012-10-10 21:48 Olof Johansson
2012-10-10 21:48 ` Olof Johansson
2012-07-27 1:56 Olof Johansson
2012-07-27 1:56 ` Olof Johansson
2012-06-30 22:51 Olof Johansson
2012-06-30 22:51 ` Olof Johansson
2012-06-23 23:40 Olof Johansson
2012-06-23 23:40 ` Olof Johansson
2012-06-17 5:33 Olof Johansson
2012-06-17 5:33 ` Olof Johansson
2012-04-06 4:46 Olof Johansson
2012-04-06 4:46 ` Olof Johansson
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=20190113184825.ogv3cmshi63hxlgj@localhost \
--to=olof@lixom.net \
--cc=arm@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.