Home | History | Annotate | Download | only in xlat
      1 /* Generated by ./xlat/gen.sh from ./xlat/kvm_mem_flags.in; do not edit. */
      2 #if !(defined(KVM_MEM_LOG_DIRTY_PAGES) || (defined(HAVE_DECL_KVM_MEM_LOG_DIRTY_PAGES) && HAVE_DECL_KVM_MEM_LOG_DIRTY_PAGES))
      3 # define KVM_MEM_LOG_DIRTY_PAGES (1 << 0)
      4 #endif
      5 #if !(defined(KVM_MEM_READONLY) || (defined(HAVE_DECL_KVM_MEM_READONLY) && HAVE_DECL_KVM_MEM_READONLY))
      6 # define KVM_MEM_READONLY (1 << 1)
      7 #endif
      8 
      9 #ifdef IN_MPERS
     10 
     11 # error static const struct xlat kvm_mem_flags in mpers mode
     12 
     13 #else
     14 
     15 static
     16 const struct xlat kvm_mem_flags[] = {
     17  XLAT(KVM_MEM_LOG_DIRTY_PAGES),
     18  XLAT(KVM_MEM_READONLY),
     19  XLAT_END
     20 };
     21 
     22 #endif /* !IN_MPERS */
     23