root/arch/x86/xen/suspend_hvm.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. xen_hvm_post_suspend

   1 // SPDX-License-Identifier: GPL-2.0
   2 #include <linux/types.h>
   3 
   4 #include <xen/xen.h>
   5 #include <xen/features.h>
   6 #include <xen/interface/features.h>
   7 
   8 #include "xen-ops.h"
   9 
  10 void xen_hvm_post_suspend(int suspend_cancelled)
  11 {
  12         if (!suspend_cancelled) {
  13                 xen_hvm_init_shared_info();
  14                 xen_vcpu_restore();
  15         }
  16         xen_callback_vector();
  17         xen_unplug_emulated_devices();
  18 }

/* [<][>][^][v][top][bottom][index][help] */