1. 12 4月, 2017 6 次提交
  2. 27 3月, 2017 3 次提交
  3. 25 3月, 2017 1 次提交
  4. 21 2月, 2017 1 次提交
  5. 30 1月, 2017 2 次提交
  6. 10 1月, 2017 1 次提交
    • N
      virsh: Display perf enabled/disabled message for set operations · 0289b8b2
      Nitesh Konkar 提交于
      When setting perf events, the enabled/disabled perf events are not
      listed. Since we know which events were changed it's possible to
      print out the values on successful set, such as :
      
          virsh perf Domain --enable instructions --disable cache_misses
          instructions   : enabled
          cache_misses   : disabled
      
      Created a helper to print the messages - use the vshPrintExtra to
      adhere to the --quiet|-q option being set by some script. This will
      cause the get code to print nothing, but will return success/failure.
      Signed-off-by: NNitesh Konkar <nitkon12@linux.vnet.ibm.com>
      0289b8b2
  7. 09 1月, 2017 1 次提交
  8. 06 12月, 2016 1 次提交
  9. 25 11月, 2016 1 次提交
    • M
      virstring: Unify string list function names · c2a5a4e7
      Michal Privoznik 提交于
      We have couple of functions that operate over NULL terminated
      lits of strings. However, our naming sucks:
      
      virStringJoin
      virStringFreeList
      virStringFreeListCount
      virStringArrayHasString
      virStringGetFirstWithPrefix
      
      We can do better:
      
      virStringListJoin
      virStringListFree
      virStringListFreeCount
      virStringListHasString
      virStringListGetFirstWithPrefix
      Signed-off-by: NMichal Privoznik <mprivozn@redhat.com>
      c2a5a4e7
  10. 23 11月, 2016 2 次提交
  11. 14 11月, 2016 2 次提交
  12. 29 10月, 2016 1 次提交
  13. 26 10月, 2016 2 次提交
  14. 12 10月, 2016 5 次提交
  15. 10 10月, 2016 1 次提交
  16. 05 10月, 2016 1 次提交
  17. 13 9月, 2016 1 次提交
  18. 08 9月, 2016 1 次提交
    • C
      virsh: Fix *-event error string · 18465411
      Christophe Fergeau 提交于
      When using
      virsh net-event non-existing-net
      the error message says that 'either --list or event type is required'
      This is misleading as 'virsh net-event $valid-event-type' is not going
      to work either. What is expected is 'virsh net-event --event
      $valid-event-type'
      
      This commit fixes the string in pool-event, nodedev-event, event, and
      net-event.
      18465411
  19. 02 9月, 2016 1 次提交
  20. 27 8月, 2016 1 次提交
  21. 26 8月, 2016 1 次提交
  22. 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: respect -q/--quiet more · b620bdee
      Pino Toscano 提交于
      Turn various vshPrint() informative messages into vshPrintExtra(), so
      they are not printed when requesting the quiet mode; neither XML/info
      outputs nor the results of commands are affected.
      Also change the expected outputs of the virsh-undefine test, since virsh
      is invoked in quiet mode there.
      
      Some informative messages might still be converted (and thus silenced
      when in quiet mode), but this is an improvements nonetheless.
      
      Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1358179
      b620bdee
  23. 02 8月, 2016 2 次提交