]> git.proxmox.com Git - qemu.git/commitdiff
Merge remote-tracking branch 'kiszka/queues/pending' into staging
authorAnthony Liguori <aliguori@us.ibm.com>
Mon, 16 Apr 2012 17:56:28 +0000 (12:56 -0500)
committerAnthony Liguori <aliguori@us.ibm.com>
Mon, 16 Apr 2012 17:56:28 +0000 (12:56 -0500)
* kiszka/queues/pending:
  vapic: Disable for pre-1.1 machines
  Kick io-thread on qemu_chr_accept_input
  pcnet: Properly handle TX requests during Link Fail
  pcnet: Clear ERR in CSR0 on stop
  signrom: Rewrite as python script

Conflicts:
hw/pc_piix.c

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
1  2 
hw/pc_piix.c

diff --cc hw/pc_piix.c
index 5c08245fede26e615cb9277790cca0048e7c94b2,44995bfdc1413d1694abd1fafdc31820d7d32df6..907d723728de6209aa8d0048d2cf1f223c1bf620
@@@ -360,21 -359,6 +360,25 @@@ static QEMUMachine pc_machine_v1_1 = 
      .is_default = 1,
  };
  
 +#define PC_COMPAT_1_0 \
 +        {\
 +            .driver   = "pc-sysfw",\
 +            .property = "rom_only",\
 +            .value    = stringify(1),\
 +        }, {\
 +            .driver   = "isa-fdc",\
 +            .property = "check_media_rate",\
 +            .value    = "off",\
 +        }, {\
 +            .driver   = "virtio-balloon-pci",\
 +            .property = "class",\
 +            .value    = stringify(PCI_CLASS_MEMORY_RAM),\
++        },{\
++            .driver   = "apic",\
++            .property = "vapic",\
++            .value    = "off",\
 +        }
 +
  static QEMUMachine pc_machine_v1_0 = {
      .name = "pc-1.0",
      .desc = "Standard PC",