3.2.1 seems to run nicely with HAP enabled on bootup (xm
dmesg says it is enabled) but is the sample domain config below correct for a
HAP enabled HVM (Do I even need to enable HAP on the VMs if its enabled in the
Xen Kernel?):
 
Thanks,
 
Rob Dunkley
SAQ
 
<domain type='xen'>
  <name>W2K3Test</name>
  <os>
    <type>hvm</type>
   
<loader>/usr/lib/xen/boot/hvmloader</loader>
    <boot dev='cdrom'/>
  </os>
  <memory>1262144</memory>
  <vcpu>1</vcpu>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>destroy</on_reboot>
  <on_crash>destroy</on_crash>
  <features>
    <acpi/>
    <apic/>
    <pae/>
    <hap/>
  </features>
  <devices>
   
<emulator>/usr/lib64/xen/bin/qemu-dm</emulator>
      <disk type='file'
device='disk'>
      <driver
name='file'/>
      <source
file='/root/w2k3test.img'/>
      <target dev='hda'/>
    </disk>
    <disk type='file'
device='cdrom'>
      <source
file='/root/w2k3.iso'/>
      <target dev='hdc'/>
      <readonly/>
    </disk>
    <graphics type='vnc'
port='5900'/>
  </devices>
</domain>