kvm_para.h 978 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (C) 2007 Xiantao Zhang <xiantao.zhang@intel.com>
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms and conditions of the GNU General Public License,
  6. * version 2, as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  11. * more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along with
  14. * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
  15. * Place - Suite 330, Boston, MA 02111-1307 USA.
  16. *
  17. */
  18. #ifndef __IA64_KVM_PARA_H
  19. #define __IA64_KVM_PARA_H
  20. #include <uapi/asm/kvm_para.h>
  21. static inline unsigned int kvm_arch_para_features(void)
  22. {
  23. return 0;
  24. }
  25. static inline bool kvm_check_and_clear_guest_paused(void)
  26. {
  27. return false;
  28. }
  29. #endif