All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <20131031062958.848317356@linux.com>

diff --git a/a/1.txt b/N1/1.txt
index 07db61a..7517cc6 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -1,54 +1,3 @@
-From: Domenico Andreoli <domenico.andreoli@linux.com>
-
-Proof of concept: ARM64 as a consumer of the machine reset hooks.
-
-Cc: Catalin Marinas <catalin.marinas@arm.com>
-Cc: Will Deacon <will.deacon@arm.com>
-Cc: linux-arch@vger.kernel.org
-Cc: linux-arm-kernel@lists.infradead.org
-Signed-off-by: Domenico Andreoli <domenico.andreoli@linux.com>
----
- arch/arm64/kernel/process.c |    5 +++++
- kernel/power/Kconfig        |    2 +-
- 2 files changed, 6 insertions(+), 1 deletion(-)
-
-Index: b/kernel/power/Kconfig
-===================================================================
---- a/kernel/power/Kconfig
-+++ b/kernel/power/Kconfig
-@@ -297,4 +297,4 @@ config CPU_PM
- config MACHINE_RESET
- 	bool
- 	default n
--	depends on ARM
-+	depends on ARM || ARM64
-Index: b/arch/arm64/kernel/process.c
-===================================================================
---- a/arch/arm64/kernel/process.c
-+++ b/arch/arm64/kernel/process.c
-@@ -29,6 +29,7 @@
- #include <linux/user.h>
- #include <linux/delay.h>
- #include <linux/reboot.h>
-+#include <linux/machine_reset.h>
- #include <linux/interrupt.h>
- #include <linux/kallsyms.h>
- #include <linux/init.h>
-@@ -120,6 +121,8 @@ void machine_power_off(void)
- 	machine_shutdown();
- 	if (pm_power_off)
- 		pm_power_off();
-+	else
-+		default_power_off();
- }
- 
- void machine_restart(char *cmd)
-@@ -133,6 +136,8 @@ void machine_restart(char *cmd)
- 	/* Now call the architecture specific reboot code. */
- 	if (arm_pm_restart)
- 		arm_pm_restart(reboot_mode, cmd);
-+	else
-+		default_restart(reboot_mode, cmd);
- 
- 	/*
- 	 * Whoops - the architecture was unable to reboot.
+An embedded and charset-unspecified text was scrubbed...
+Name: arm64-machine-reset.patch
+URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20131031/0011622b/attachment.ksh>
diff --git a/a/content_digest b/N1/content_digest
index 2a59f51..c17b5e1 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,73 +1,12 @@
  "ref\020131031062708.520968323@linux.com\0"
- "From\0Domenico Andreoli <domenico.andreoli@linux.com>\0"
+ "From\0domenico.andreoli@linux.com (Domenico Andreoli)\0"
  "Subject\0[PATCH 03/11] ARM64: use the common machine reset handling\0"
  "Date\0Thu, 31 Oct 2013 07:27:11 +0100\0"
- "To\0linux-arch@vger.kernel.org\0"
- "Cc\0linux-arm-kernel@lists.infradead.org"
-  linux-mips@lvger.kernel.org
-  Russell King <linux@arm.linux.org.uk>
-  Arnd Bergmann <arnd@arndb.de>
-  Olof Johansson <olof@lixom.net>
-  Ralf Baechle <ralf@linux-mips.org>
-  Catalin Marinas <catalin.marinas@arm.com>
-  Will Deacon <will.deacon@arm.com>
- " Domenico Andreoli <domenico.andreoli@linux.com>\0"
+ "To\0linux-arm-kernel@lists.infradead.org\0"
  "\00:1\0"
- "fn\0arm64-machine-reset.patch\0"
  "b\0"
- "From: Domenico Andreoli <domenico.andreoli@linux.com>\n"
- "\n"
- "Proof of concept: ARM64 as a consumer of the machine reset hooks.\n"
- "\n"
- "Cc: Catalin Marinas <catalin.marinas@arm.com>\n"
- "Cc: Will Deacon <will.deacon@arm.com>\n"
- "Cc: linux-arch@vger.kernel.org\n"
- "Cc: linux-arm-kernel@lists.infradead.org\n"
- "Signed-off-by: Domenico Andreoli <domenico.andreoli@linux.com>\n"
- "---\n"
- " arch/arm64/kernel/process.c |    5 +++++\n"
- " kernel/power/Kconfig        |    2 +-\n"
- " 2 files changed, 6 insertions(+), 1 deletion(-)\n"
- "\n"
- "Index: b/kernel/power/Kconfig\n"
- "===================================================================\n"
- "--- a/kernel/power/Kconfig\n"
- "+++ b/kernel/power/Kconfig\n"
- "@@ -297,4 +297,4 @@ config CPU_PM\n"
- " config MACHINE_RESET\n"
- " \tbool\n"
- " \tdefault n\n"
- "-\tdepends on ARM\n"
- "+\tdepends on ARM || ARM64\n"
- "Index: b/arch/arm64/kernel/process.c\n"
- "===================================================================\n"
- "--- a/arch/arm64/kernel/process.c\n"
- "+++ b/arch/arm64/kernel/process.c\n"
- "@@ -29,6 +29,7 @@\n"
- " #include <linux/user.h>\n"
- " #include <linux/delay.h>\n"
- " #include <linux/reboot.h>\n"
- "+#include <linux/machine_reset.h>\n"
- " #include <linux/interrupt.h>\n"
- " #include <linux/kallsyms.h>\n"
- " #include <linux/init.h>\n"
- "@@ -120,6 +121,8 @@ void machine_power_off(void)\n"
- " \tmachine_shutdown();\n"
- " \tif (pm_power_off)\n"
- " \t\tpm_power_off();\n"
- "+\telse\n"
- "+\t\tdefault_power_off();\n"
- " }\n"
- " \n"
- " void machine_restart(char *cmd)\n"
- "@@ -133,6 +136,8 @@ void machine_restart(char *cmd)\n"
- " \t/* Now call the architecture specific reboot code. */\n"
- " \tif (arm_pm_restart)\n"
- " \t\tarm_pm_restart(reboot_mode, cmd);\n"
- "+\telse\n"
- "+\t\tdefault_restart(reboot_mode, cmd);\n"
- " \n"
- " \t/*\n"
- " \t * Whoops - the architecture was unable to reboot."
+ "An embedded and charset-unspecified text was scrubbed...\n"
+ "Name: arm64-machine-reset.patch\n"
+ URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20131031/0011622b/attachment.ksh>
 
-be19cf97160c9e51b3a1956a050fd678e477f0c8355ffdad04fbe723c53e7c94
+ecd5a4f55bfa5e4f833e3ad4ce3ffa8d290e8b9f5a6723c9aeee0c59c018d8fe

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.