1. 11 4月, 2017 5 次提交
  2. 10 4月, 2017 14 次提交
  3. 07 4月, 2017 15 次提交
  4. 06 4月, 2017 1 次提交
  5. 05 4月, 2017 5 次提交
    • P
      tco: do not generate an NMI · 8c9f42f3
      Paolo Bonzini 提交于
      This behavior is not indicated in the datasheet and can confuse the OS.
      The TCO can trap NMIs from SERR# or IOCHK# and convert them to SMIs; but
      any other TCO event is either delivered as an SMI or completely disabled.
      Reviewed-by: NLaszlo Ersek <lersek@redhat.com>
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      8c9f42f3
    • P
      Update version for v2.9.0-rc3 release · 1fde6ee8
      Peter Maydell 提交于
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      1fde6ee8
    • P
      Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging · 1413c663
      Peter Maydell 提交于
      Some 9pfs bugs fixes: potential hang at reset, migration blocker leak.
      
      # gpg: Signature made Tue 04 Apr 2017 17:07:55 BST
      # gpg:                using DSA key 0x02FC3AEB0101DBC2
      # gpg: Good signature from "Greg Kurz <groug@kaod.org>"
      # gpg:                 aka "Greg Kurz <groug@free.fr>"
      # gpg:                 aka "Greg Kurz <gkurz@linux.vnet.ibm.com>"
      # gpg:                 aka "Gregory Kurz (Groug) <groug@free.fr>"
      # gpg:                 aka "[jpeg image of size 3330]"
      # gpg: WARNING: This key is not certified with a trusted signature!
      # gpg:          There is no indication that the signature belongs to the owner.
      # Primary key fingerprint: 2BD4 3B44 535E C0A7 9894  DBA2 02FC 3AEB 0101 DBC2
      
      * remotes/gkurz/tags/for-upstream:
        9pfs: clear migration blocker at session reset
        9pfs: fix multiple flush for same request
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      1413c663
    • P
      Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging · 2c9938c5
      Peter Maydell 提交于
      pci: fix
      
      A single bugfix for a error handling issue in pci.
      Signed-off-by: NMichael S. Tsirkin <mst@redhat.com>
      
      # gpg: Signature made Tue 04 Apr 2017 16:33:04 BST
      # gpg:                using RSA key 0x281F0DB8D28D5469
      # gpg: Good signature from "Michael S. Tsirkin <mst@kernel.org>"
      # gpg:                 aka "Michael S. Tsirkin <mst@redhat.com>"
      # Primary key fingerprint: 0270 606B 6F3C DF3D 0B17  0970 C350 3912 AFBE 8E67
      #      Subkey fingerprint: 5D09 FD08 71C8 F85B 94CA  8A0D 281F 0DB8 D28D 5469
      
      * remotes/mst/tags/for_upstream:
        pci: Only unmap bus_master_enabled_region if was added previously
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      2c9938c5
    • G
      9pfs: clear migration blocker at session reset · 6d54af0e
      Greg Kurz 提交于
      The migration blocker survives a device reset: if the guest mounts a 9p
      share and then gets rebooted with system_reset, it will be unmigratable
      until it remounts and umounts the 9p share again.
      
      This happens because the migration blocker is supposed to be cleared when
      we put the last reference on the root fid, but virtfs_reset() wrongly calls
      free_fid() instead of put_fid().
      
      This patch fixes virtfs_reset() so that it honor the way fids are supposed
      to be manipulated: first get a reference and later put it back when you're
      done.
      Signed-off-by: NGreg Kurz <groug@kaod.org>
      Reviewed-by: NLi Qiang <liqiang6-s@360.cn>
      6d54af0e