forked from Minki/linux
155af2f95f
This patch introduces the hibernation backend support to the s390 architecture. Now it is possible to suspend a mainframe Linux guest using the following command: echo disk > /sys/power/state Signed-off-by: Hans-Joachim Picht <hans@linux.vnet.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
18 lines
241 B
C
18 lines
241 B
C
/*
|
|
* Support for suspend and resume on s390
|
|
*
|
|
* Copyright IBM Corp. 2009
|
|
*
|
|
* Author(s): Hans-Joachim Picht <hans@linux.vnet.ibm.com>
|
|
*
|
|
*/
|
|
|
|
#include <asm/system.h>
|
|
#include <linux/interrupt.h>
|
|
|
|
void do_after_copyback(void)
|
|
{
|
|
mb();
|
|
}
|
|
|