1. 30 4月, 2018 1 次提交
  2. 18 4月, 2018 2 次提交
  3. 17 4月, 2018 7 次提交
  4. 03 4月, 2018 5 次提交
  5. 23 3月, 2018 1 次提交
  6. 06 3月, 2018 1 次提交
    • B
      qemu: log the crash information for S390 · a07a9146
      Bjoern Walk 提交于
      Since QEMU 2.12 commit id '4ada99ade' guest crash information for
      S390 is available in the QEMU monitor, e.g.:
      
        {
          "timestamp": {
              "seconds": 1518004739,
              "microseconds": 552563
          },
          "event": "GUEST_PANICKED",
          "data": {
              "action": "pause",
              "info": {
                  "core": 0,
                  "psw-addr": 1102832,
                  "reason": "disabled-wait",
                  "psw-mask": 562956395872256,
                  "type": "s390"
              }
          }
        }
      
      Let's log this information into the domain log file, e.g.:
      
          2018-02-08 13:11:26.075+0000: panic s390: core='0' psw-mask='0x0002000180000000' psw-addr='0x000000000010f146' reason='disabled-wait'
      Reviewed-by: NBoris Fiuczynski <fiuczy@linux.vnet.ibm.com>
      Signed-off-by: NBjoern Walk <bwalk@linux.vnet.ibm.com>
      Reviewed-by: NJohn Ferlan <jferlan@redhat.com>
      a07a9146
  7. 19 2月, 2018 1 次提交
    • D
      qemu: stop passing virConnectPtr into qemuMonitorStartCPUs · aed679da
      Daniel P. Berrangé 提交于
      There is a long standing hack to pass a virConnectPtr into the
      qemuMonitorStartCPUs method, so that when the text monitor prompts
      for a disk password, we can lookup virSecretPtr objects. This causes
      us to have to pass a virConnectPtr around through countless methods
      up the call chain....except some places don't have any virConnectPtr
      available so have always just passed NULL. We can finally fix this
      disastrous design by using virGetConnectSecret() to open a connection
      to the secret driver at time of use.
      Reviewed-by: NJohn Ferlan <jferlan@redhat.com>
      Signed-off-by: NDaniel P. Berrangé <berrange@redhat.com>
      aed679da
  8. 06 2月, 2018 3 次提交
  9. 01 2月, 2018 1 次提交
  10. 05 1月, 2018 1 次提交
  11. 03 1月, 2018 1 次提交
    • P
      qemu: monitor: Decrease logging verbosity · f10bb334
      Peter Krempa 提交于
      The PROBE macro used in qemuMonitorIOProcess and the VIR_DEBUG message
      in qemuMonitorJSONIOProcess create a lot of logging churn when debug
      logging is enabled during monitor communication.
      
      The messages logged from the PROBE macro are rather useless since they
      are reporting the partial state of receiving the reply from qemu. The
      actual full reply is still logged in qemuMonitorJSONIOProcessLine once
      the full message is received.
      f10bb334
  12. 06 12月, 2017 1 次提交
  13. 03 11月, 2017 11 次提交
  14. 26 10月, 2017 2 次提交
  15. 20 10月, 2017 1 次提交
  16. 18 10月, 2017 1 次提交