Re: [Xen-devel] [PATCH] watchdog: xen: use time64_t for timeouts

2017-10-19 Thread Guenter Roeck
; times, but converting it to use ktime_get_seconds() avoids the deprecated > interfaces and is slightly simpler. > > Signed-off-by: Arnd Bergmann Reviewed-by: Guenter Roeck > --- > drivers/watchdog/xen_wdt.c | 12 ++-- > 1 file changed, 6 insertions(+), 6 deletions(-) >

Re: [Xen-devel] Lots of new warnings with gcc-7.1.1

2017-07-11 Thread Guenter Roeck
On 07/11/2017 03:35 PM, Linus Torvalds wrote: [ Very random list of maintainers and mailing lists, at least partially by number of warnings generated by gcc-7.1.1 that is then correlated with the get_maintainers script ] So I upgraded one of my boxes to F26, which upgraded the compiler to gcc-7.

[Xen-devel] [PATCH] arm64: Do not include linux/uaccess.h from assembler files

2016-12-26 Thread Guenter Roeck
needed, replace with asm/uaccess.h. Fixes: 7c0f6ba682b9 ("Replace with globally") Cc: Linus Torvalds Cc: Al Viro Signed-off-by: Guenter Roeck --- arch/arm64/kernel/entry.S | 1 - arch/arm64/lib/clear_user.S | 2 +- arch/arm64/lib/copy_from_user.S | 2 +- arch/arm6

Re: [Xen-devel] [PATCH v2 2/6] ARM: xen: Register with kernel restart handler

2016-04-15 Thread Guenter Roeck
On Fri, Apr 15, 2016 at 11:22:36AM -0700, Stefano Stabellini wrote: > On Thu, 14 Apr 2016, Guenter Roeck wrote: > > Register with kernel restart handler instead of setting arm_pm_restart > > directly. > > > > Select a high priority of 192 to ensure that default restar

[Xen-devel] [PATCH v2 2/6] ARM: xen: Register with kernel restart handler

2016-04-14 Thread Guenter Roeck
Register with kernel restart handler instead of setting arm_pm_restart directly. Select a high priority of 192 to ensure that default restart handlers are replaced if Xen is running. Acked-by: Arnd Bergmann Reviewed-by: Wolfram Sang Reviewed-by: Stefano Stabellini Signed-off-by: Guenter Roeck

Re: [Xen-devel] [PATCH 2/6] ARM: xen: Register with kernel restart handler

2016-04-08 Thread Guenter Roeck
On Fri, Apr 08, 2016 at 11:22:57AM -0400, Konrad Rzeszutek Wilk wrote: > On Fri, Apr 08, 2016 at 05:53:55AM -0700, Guenter Roeck wrote: > > Register with kernel restart handler instead of setting arm_pm_restart > > directly. > > > > Select a high priority of 192 to

[Xen-devel] [PATCH 2/6] ARM: xen: Register with kernel restart handler

2016-04-08 Thread Guenter Roeck
Register with kernel restart handler instead of setting arm_pm_restart directly. Select a high priority of 192 to ensure that default restart handlers are replaced if Xen is running. Signed-off-by: Guenter Roeck --- arch/arm/xen/enlighten.c | 13 +++-- 1 file changed, 11 insertions

Re: [Xen-devel] [PATCH v4 6/6] hwmon: use smp_call_on_cpu() for dell-smm i8k

2016-04-05 Thread Guenter Roeck
On Tue, Apr 05, 2016 at 07:10:07AM +0200, Juergen Gross wrote: > Use the smp_call_on_cpu() function to call system management > mode on cpu 0. > Make call secure by adding get_online_cpus() to avoid e.g. suspend > resume cycles in between. > > Signed-off-by: Juergen Gross > --- > V4: add call to

Re: [Xen-devel] [PATCH 01/44] kernel: Add support for poweroff handler call chain

2015-06-18 Thread Guenter Roeck
On Wed, Jun 17, 2015 at 06:04:54PM -0700, Stephen Boyd wrote: [ ... ] > > What happened to this series? I want to add shutdown support to my > platform and I need to write a register on the PMIC in one driver to > configure it for shutdown instead of restart and then write an MMIO > register to te

Re: [Xen-devel] [PATCH 01/44] kernel: Add support for poweroff handler call chain

2015-06-18 Thread Guenter Roeck
On 06/17/2015 11:53 PM, Frans Klaver wrote: On Thu, Jun 18, 2015 at 3:04 AM, Stephen Boyd wrote: On 10/06/2014 10:28 PM, Guenter Roeck wrote: Various drivers implement architecture and/or device specific means to remove power from the system. For the most part, those drivers set the global

[Xen-devel] [PATCH v6 08/48] kernel: Move pm_power_off to common code

2014-11-09 Thread Guenter Roeck
Acked-by: Geert Uytterhoeven Acked-by: Hirokazu Takata Acked-by: James Hogan Acked-by: Jesper Nilsson Acked-by: Max Filippov Acked-by: Rafael J. Wysocki Acked-by: Richard Weinberger Acked-by: Xuetao Guan Acked-by: Ralf Baechle Signed-off-by: Guenter Roeck --- v6: - No change. v5: - Rebase

[Xen-devel] [PATCH v6 35/48] arm: Register with kernel power-off handler

2014-11-09 Thread Guenter Roeck
fallback priority to indicate that the power-off handler is one of last resort. If the power-off handler powers off the system, select the default priority. Cc: Russell King Signed-off-by: Guenter Roeck --- v6: - This patch: No change. Global: Replaced priority defines with enum. v5: - Rebase to