https://github.com/torvalds/linux
Raw File
Tip revision: 08332893e37af6ae779367e78e444f8f9571511d authored by Linus Torvalds on 22 May 2017, 02:30:23 UTC
Linux 4.12-rc2
Tip revision: 0833289
suspend_hvm.c
#include <linux/types.h>

#include <xen/xen.h>
#include <xen/features.h>
#include <xen/interface/features.h>

#include "xen-ops.h"

void xen_hvm_post_suspend(int suspend_cancelled)
{
	int cpu;

	if (!suspend_cancelled)
		xen_hvm_init_shared_info();
	xen_callback_vector();
	xen_unplug_emulated_devices();
	if (xen_feature(XENFEAT_hvm_safe_pvclock)) {
		for_each_online_cpu(cpu) {
			xen_setup_runstate_info(cpu);
		}
	}
}
back to top