1. 16 7月, 2010 4 次提交
  2. 15 7月, 2010 3 次提交
    • R
      daemon: dispatch.c should include stdio.h (and stdarg.h) · a3fc67a1
      Ryota Ozaki 提交于
      dispatch.c requires stdio.h (and stdarg.h), however, currently
      dispatch.c implicitly relys on rpc/xdr.h to include stdio.h.
      If rpc/xdr.h unxpectedly does not include stdio.h, the compilation
      of dispatch.c fails.
      
      This can happen, for example, when portablexdr is installed
      under /usr/local; because portablexdr's rpc/xdr.h does not
      include stdio.h and gcc looks up it not /usr/include/rpc/xdr.h.
      
      Note that stdarg.h is also included according to man va_start,
      although stdio.h seems including it anyway.
      a3fc67a1
    • J
      uml_driver: correct logic error in umlMonitorCommand · 60ef6d63
      Jim Meyering 提交于
      * src/uml/uml_driver.c (umlMonitorCommand): Correct flaw that would
      cause unconditional "incomplete reply ..." failure, since "nbytes"
      was always 0 or 1.
      60ef6d63
    • J
      qemuConnectMonitor: fix a bug that would have masked SELinux failure · c1fd7d7b
      Jim Meyering 提交于
      * src/qemu/qemu_driver.c (qemuConnectMonitor): Correct erroneous
      parenthesization in two expressions.  Without this fix, failure
      to set or clear SELinux security context in the monitor would go
      undiagnosed.  Also correct a diagnostic and split some long lines.
      c1fd7d7b
  3. 14 7月, 2010 3 次提交
  4. 13 7月, 2010 9 次提交
  5. 12 7月, 2010 2 次提交
  6. 10 7月, 2010 1 次提交
  7. 09 7月, 2010 3 次提交
  8. 08 7月, 2010 2 次提交
  9. 07 7月, 2010 5 次提交
  10. 05 7月, 2010 1 次提交
  11. 03 7月, 2010 1 次提交
  12. 02 7月, 2010 3 次提交
  13. 30 6月, 2010 3 次提交
    • R
      cgroup: Fix compilation broken on MinGW due to dirent->d_type · 29da015a
      Ryota Ozaki 提交于
      As pointed out by Eric Blake, using dirent->d_type breaks
      compilation on MinGW. This patch addresses this by using
      '#if defined' as same as doing for virCgroupForDriver.
      29da015a
    • J
      html docs: add link to PHP bindings by Radek Hladik · 8919b4d4
      Justin Clift 提交于
      8919b4d4
    • E
      virsh: tweak help output for VSH_OT_DATA · 26752f3b
      Eric Blake 提交于
      https://bugzilla.redhat.com/show_bug.cgi?id=609044 complained
      that 'virsh help pool-create-as' didn't document the shortcut
      that you can do 'virsh pool-create-as $name $type --target $target'
      rather than having to supply the four optional source- arguments
      in order to fill out the necessary positional arguments.
      
      This one-liner changes the help output to hopefully make this more obvious:
      
        NAME
          pool-create-as - create a pool from a set of args
      
        SYNOPSIS
          pool-create-as <name> [--print-xml] <type> [<source-host>] [<source-path>] [<source-dev>] [<source-name>] [<target>] [--source-format <string>]
      
        DESCRIPTION
          Create a pool.
      
        OPTIONS
          [--name] <string>  name of the pool
          --print-xml      print XML document, but don't define/create
          [--type] <string>  type of the pool
          [--source-host] <string>  source-host for underlying storage
          [--source-path] <string>  source path for underlying storage
          [--source-dev] <string>  source device for underlying storage
          [--source-name] <string>  source name for underlying storage
          [--target] <string>  target for underlying storage
          --source-format <string>  format for underlying storage
      
      * tools/virsh.c (vshCmddefHelp): Make it more obvious that data
      arguments may, but not must, be specified by option leaders.
      26752f3b