1. 23 1月, 2013 11 次提交
  2. 22 1月, 2013 20 次提交
  3. 21 1月, 2013 2 次提交
  4. 19 1月, 2013 2 次提交
  5. 18 1月, 2013 5 次提交
    • D
      Fix race condition when destroying guests · 81621f3e
      Daniel P. Berrange 提交于
      When running virDomainDestroy, we need to make sure that no other
      background thread cleans up the domain while we're doing our work.
      This can happen if we release the domain object while in the
      middle of work, because the monitor might detect EOF in this window.
      For this reason we have a 'beingDestroyed' flag to stop the monitor
      from doing its normal cleanup. Unfortunately this flag was only
      being used to protect qemuDomainBeginJob, and not qemuProcessKill
      
      This left open a race condition where either libvirtd could crash,
      or alternatively report bogus error messages about the domain already
      having been destroyed to the caller
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      81621f3e
    • C
      25feed14
    • C
      docs: don't use <i> and <tt> HTML tags · cb022b6b
      Claudio Bley 提交于
      Use of <tt> is discouraged in HTML 4.x and has finally been obsoleted
      in HTML 5. Likewise for the <i> tag.
      
      Using tables for layout is (widely) considered bad style, too.
      
      Use defintion lists, definition term and defintion description
      elements instead.
      Signed-off-by: NClaudio Bley <cbley@av-test.de>
      cb022b6b
    • C
      docs: Assign classes to documentation elements · 458dd20d
      Claudio Bley 提交于
      In CSS the following class names are available:
      
      * keyword     (keywords like "typedef", "struct")
      * type        (types like "int", "void*")
      * comment     (comments after members of enums or structs)
      * directive   (preprocessor directives, #define)
      * undisclosed (text saying that the API is not public)
      
      Additionally, kill all of the left-over "programlisting" class
      assignments. There are no CSS rules for them.
      Signed-off-by: NClaudio Bley <cbley@av-test.de>
      458dd20d
    • J
      Introduce virTypedParamsClear public API · de78bf60
      Jiri Denemark 提交于
      The function is just a renamed public version of former
      virTypedParameterArrayClear.
      de78bf60