1. 05 10月, 2016 3 次提交
  2. 29 9月, 2016 1 次提交
    • J
      vsh: Write out history on "quit" or "exit" in interactive mode · bcfa2f42
      John Ferlan 提交于
      https://bugzilla.redhat.com/show_bug.cgi?id=1379895
      
      Introduced by commit id '834c5720'.
      
      During the code motion and creation of vsh.c, the function 'vshDeinit()'
      in the (new) vsh.c was altered from whence it came in virsh.c such that
      calling 'vshReadlineDeinit(ctl)' was conditional on "ctl->imode".
      
      This causes a problem for the interactive running if the "quit" and "exit"
      commands are used because 'cmdQuit' will clear ctl->imode, thus when the
      interactive loop in main() of virsh.c exits because ctl->mode is clear and
      virshDeinit is called which calls vshDeinit, the history file is now not
      written. Conversely, if one had exited the interactive loop via pressing
      <ctrl>D the file would be created because loop control is broken on EOF
      and ctl->imode is not set to false.
      
      This patch will remove the conditional call to vshReadlineDeinit and
      restore the former behaviour.
      bcfa2f42
  3. 28 9月, 2016 1 次提交
    • J
      doc: fix note about Xen credit scheduler · f4332dd2
      Jim Fehlig 提交于
      Commit 6c504d6a added a note to the virsh man page about the
      deprecation of 'cap' and 'weight' settings for the credit
      scheduler. To this day, the default scheduler in Xen is credit
      and it supports setting 'cap' and 'weight'. Remove the deprecation
      notice from the note on the Xen credit scheduler.
      Reported-by: NVolo M. <vm@vovs.net>
      f4332dd2
  4. 26 9月, 2016 1 次提交
  5. 22 9月, 2016 1 次提交
  6. 20 9月, 2016 8 次提交
  7. 15 9月, 2016 1 次提交
  8. 14 9月, 2016 2 次提交
  9. 13 9月, 2016 1 次提交
  10. 08 9月, 2016 3 次提交
  11. 07 9月, 2016 2 次提交
    • Y
      storage: Delete extra wrap after vol-resize error · ed8ba91e
      Yanqiu Zhang 提交于
      This patch is to delete the extra wrap "\n" after failed vol-resize
      error for both "Failed to change size of volume to" and "Failed to change
      size of volume by". For error with wrap, there will be an extra wrap
      between two errors, such as:
      
         (1)# virsh vol-resize --pool default --vol vol-test 5M
              error: Failed to change size of volume 'vol-test' to 5M
      
              error: invalid argument: Can't shrink capacity below current capacity unless shrink flag explicitly specified
      
         (2)# virsh vol-resize /var/lib/libvirt/images/volds --shrink --delta 10M
              error: Failed to change size of volume 'volds' by 10M
      
              error: invalid argument: can't shrink capacity below existing allocation
      ed8ba91e
    • E
      virt-admin: Output srv-clients-set data as unsigned int rather than signed · e2c63714
      Erik Skultety 提交于
      Unfortunately, commit a8962f70 only fixed first half of the reported issue of
      virt-admin outputting negative values where unsigned int is expected by
      BZ below, so this commit represents the other missing half of the fix.
      
      resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1356769Signed-off-by: NErik Skultety <eskultet@redhat.com>
      e2c63714
  12. 06 9月, 2016 4 次提交
  13. 05 9月, 2016 3 次提交
  14. 03 9月, 2016 3 次提交
  15. 02 9月, 2016 1 次提交
  16. 31 8月, 2016 1 次提交
    • M
      tools: Don't list virsh-* under EXTRA_DIST · 8540301b
      Michal Privoznik 提交于
      When we wanted to break huge and unmaintainable virsh into
      smaller files first thing we did was to just move funcs into
      virsh-.c files and then #include them from virsh. Having it done
      this way we also needed to have them listed under EXTRA_DIST.
      However, things got changed since then and now all the virsh-*.c
      files are proper source files. Therefore they are listed under
      virsh_SOURCES too. But for some reason we forgot to remove them
      from EXTRA_DIST.
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      8540301b
  17. 27 8月, 2016 1 次提交
  18. 26 8月, 2016 1 次提交
  19. 24 8月, 2016 2 次提交
    • P
      virsh: use vshError consistently after virBufferError checks · 4362ff43
      Pino Toscano 提交于
      If virBufferError() reports an error, then vshError() is needed to
      report the error situation instead of a simple vshError().
      4362ff43
    • P
      virsh: avoid i18n puzzle · a144f284
      Pino Toscano 提交于
      Use the full versions of the message, instead of composing a base
      message with what was updated; the change makes the messages properly
      translatable, since different parts of a sentence might need different
      declensions for example.
      a144f284