1. 09 2月, 2016 23 次提交
    • E
      qom: Swap 'name' next to visitor in ObjectPropertyAccessor · d7bce999
      Eric Blake 提交于
      Similar to the previous patch, it's nice to have all functions
      in the tree that involve a visitor and a name for conversion to
      or from QAPI to consistently stick the 'name' parameter next
      to the Visitor parameter.
      
      Done by manually changing include/qom/object.h and qom/object.c,
      then running this Coccinelle script and touching up the fallout
      (Coccinelle insisted on adding some trailing whitespace).
      
          @ rule1 @
          identifier fn;
          typedef Object, Visitor, Error;
          identifier obj, v, opaque, name, errp;
          @@
           void fn
          - (Object *obj, Visitor *v, void *opaque, const char *name,
          + (Object *obj, Visitor *v, const char *name, void *opaque,
             Error **errp) { ... }
      
          @@
          identifier rule1.fn;
          expression obj, v, opaque, name, errp;
          @@
           fn(obj, v,
          -   opaque, name,
          +   name, opaque,
              errp)
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Reviewed-by: NMarc-André Lureau <marcandre.lureau@redhat.com>
      Message-Id: <1454075341-13658-20-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      d7bce999
    • E
      qapi: Swap visit_* arguments for consistent 'name' placement · 51e72bc1
      Eric Blake 提交于
      JSON uses "name":value, but many of our visitor interfaces were
      called with visit_type_FOO(v, &value, name, errp).  This can be
      a bit confusing to have to mentally swap the parameter order to
      match JSON order.  It's particularly bad for visit_start_struct(),
      where the 'name' parameter is smack in the middle of the
      otherwise-related group of 'obj, kind, size' parameters! It's
      time to do a global swap of the parameter ordering, so that the
      'name' parameter is always immediately after the Visitor argument.
      
      Additional reason in favor of the swap: the existing include/qjson.h
      prefers listing 'name' first in json_prop_*(), and I have plans to
      unify that file with the qapi visitors; listing 'name' first in
      qapi will minimize churn to the (admittedly few) qjson.h clients.
      
      Later patches will then fix docs, object.h, visitor-impl.h, and
      those clients to match.
      
      Done by first patching scripts/qapi*.py by hand to make generated
      files do what I want, then by running the following Coccinelle
      script to affect the rest of the code base:
       $ spatch --sp-file script `git grep -l '\bvisit_' -- '**/*.[ch]'`
      I then had to apply some touchups (Coccinelle insisted on TAB
      indentation in visitor.h, and botched the signature of
      visit_type_enum() by rewriting 'const char *const strings[]' to
      the syntactically invalid 'const char*const[] strings').  The
      movement of parameters is sufficient to provoke compiler errors
      if any callers were missed.
      
          // Part 1: Swap declaration order
          @@
          type TV, TErr, TObj, T1, T2;
          identifier OBJ, ARG1, ARG2;
          @@
           void visit_start_struct
          -(TV v, TObj OBJ, T1 ARG1, const char *name, T2 ARG2, TErr errp)
          +(TV v, const char *name, TObj OBJ, T1 ARG1, T2 ARG2, TErr errp)
           { ... }
      
          @@
          type bool, TV, T1;
          identifier ARG1;
          @@
           bool visit_optional
          -(TV v, T1 ARG1, const char *name)
          +(TV v, const char *name, T1 ARG1)
           { ... }
      
          @@
          type TV, TErr, TObj, T1;
          identifier OBJ, ARG1;
          @@
           void visit_get_next_type
          -(TV v, TObj OBJ, T1 ARG1, const char *name, TErr errp)
          +(TV v, const char *name, TObj OBJ, T1 ARG1, TErr errp)
           { ... }
      
          @@
          type TV, TErr, TObj, T1, T2;
          identifier OBJ, ARG1, ARG2;
          @@
           void visit_type_enum
          -(TV v, TObj OBJ, T1 ARG1, T2 ARG2, const char *name, TErr errp)
          +(TV v, const char *name, TObj OBJ, T1 ARG1, T2 ARG2, TErr errp)
           { ... }
      
          @@
          type TV, TErr, TObj;
          identifier OBJ;
          identifier VISIT_TYPE =~ "^visit_type_";
          @@
           void VISIT_TYPE
          -(TV v, TObj OBJ, const char *name, TErr errp)
          +(TV v, const char *name, TObj OBJ, TErr errp)
           { ... }
      
          // Part 2: swap caller order
          @@
          expression V, NAME, OBJ, ARG1, ARG2, ERR;
          identifier VISIT_TYPE =~ "^visit_type_";
          @@
          (
          -visit_start_struct(V, OBJ, ARG1, NAME, ARG2, ERR)
          +visit_start_struct(V, NAME, OBJ, ARG1, ARG2, ERR)
          |
          -visit_optional(V, ARG1, NAME)
          +visit_optional(V, NAME, ARG1)
          |
          -visit_get_next_type(V, OBJ, ARG1, NAME, ERR)
          +visit_get_next_type(V, NAME, OBJ, ARG1, ERR)
          |
          -visit_type_enum(V, OBJ, ARG1, ARG2, NAME, ERR)
          +visit_type_enum(V, NAME, OBJ, ARG1, ARG2, ERR)
          |
          -VISIT_TYPE(V, OBJ, NAME, ERR)
          +VISIT_TYPE(V, NAME, OBJ, ERR)
          )
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Reviewed-by: NMarc-André Lureau <marcandre.lureau@redhat.com>
      Message-Id: <1454075341-13658-19-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      51e72bc1
    • E
      qom: Use typedef for Visitor · 4fa45492
      Eric Blake 提交于
      No need to repeat 'struct Visitor' when we already have it in
      typedefs.h.  Omitting the redundant 'struct' also makes a later
      patch easier to search for all object property callbacks that
      are associated with a Visitor.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Reviewed-by: NMarc-André Lureau <marcandre.lureau@redhat.com>
      Message-Id: <1454075341-13658-18-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      4fa45492
    • E
      qapi: Don't cast Enum* to int* · 395a233f
      Eric Blake 提交于
      C compilers are allowed to represent enums as a smaller type
      than int, if all enum values fit in the smaller type.  There
      are even compiler flags that force the use of this smaller
      representation, although using them changes the ABI of a
      binary. Therefore, our generated code for visit_type_ENUM()
      (for all qapi enums) was wrong for casting Enum* to int* when
      calling visit_type_enum().
      
      It appears that no one has been using compiler ABI switches
      for qemu, because if they had, we are potentially dereferencing
      beyond bounds or even risking a SIGBUS on platforms where
      unaligned pointer dereferencing is fatal.  But it is still
      better to avoid the practice entirely, and just use the correct
      types.
      
      This matches the fix for alternate qapi types, done earlier in
      commit 0426d53c "qapi: Simplify visiting of alternate types",
      with generated code changing as:
      
      | void visit_type_QType(Visitor *v, QType *obj, const char *name, Error **errp)
      | {
      |-    visit_type_enum(v, (int *)obj, QType_lookup, "QType", name, errp);
      |+    int value = *obj;
      |+    visit_type_enum(v, &value, QType_lookup, "QType", name, errp);
      |+    *obj = value;
      | }
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Reviewed-by: NMarc-André Lureau <marcandre.lureau@redhat.com>
      Message-Id: <1454075341-13658-17-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      395a233f
    • E
      qapi: Consolidate visitor small integer callbacks · 04e070d2
      Eric Blake 提交于
      Commit 4e27e819 introduced optional visitor callbacks for all
      sorts of int types, but no visitor has supplied any of the
      callbacks for sizes less than 64 bits.  In other words, the
      generic implementation based on using type_[u]int64() followed
      by bounds-checking works just fine. In the interest of
      simplicity, it's easier to make the visitor callback interface
      not have to worry about the other sizes.
      
      Adding some helper functions minimizes the boilerplate required
      to correct FIXMEs added earlier with regards to questionable
      reuse of errp, particularly now that we can guarantee from a
      single file audit that value is unchanged if an error is set.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Reviewed-by: NMarc-André Lureau <marcandre.lureau@redhat.com>
      Message-Id: <1454075341-13658-16-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      04e070d2
    • E
      qapi: Make all visitors supply uint64 callbacks · f755dea7
      Eric Blake 提交于
      Our qapi visitor contract supports multiple integer visitors,
      but left the type_uint64 visitor as optional (falling back on
      type_int64); which in turn can lead to awkward behavior with
      numbers larger than INT64_MAX (the user has to be aware of
      twos complement, and deal with negatives).
      
      This patch does not address the disparity in handling large
      values as negatives.  It merely moves the fallback from uint64
      to int64 from the visitor core to the visitors, where the issue
      can actually be fixed, by implementing the missing type_uint64()
      callbacks on top of the respective type_int64() callbacks, and
      with a FIXME comment explaining why that's wrong.
      
      With that done, we now have a type_uint64() callback in every
      driver, so we can make it mandatory from the core.  And although
      the type_int64() callback can cover the entire valid range of
      type_uint{8,16,32} on valid user input, using type_uint64() to
      avoid mixed signedness makes more sense.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Message-Id: <1454075341-13658-15-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      f755dea7
    • E
      qapi: Prefer type_int64 over type_int in visitors · 4c40314a
      Eric Blake 提交于
      The qapi builtin type 'int' is basically shorthand for the type
      'int64'.  In fact, since no visitor was providing the optional
      type_int64() callback, visit_type_int64() was just always falling
      back to type_int(), cementing the equivalence between the types.
      
      However, some visitors are providing a type_uint64() callback.
      For purposes of code consistency, it is nicer if all visitors
      use the paired type_int64/type_uint64 names rather than the
      mismatched type_int/type_uint64.  So this patch just renames
      the signed int callbacks in place, dropping the type_int()
      callback as redundant, and a later patch will focus on the
      unsigned int callbacks.
      
      Add some FIXMEs to questionable reuse of errp in code touched
      by the rename, while at it (the reuse works as long as the
      callbacks don't modify value when setting an error, but it's not
      a good example to set) - a later patch will then fix those.
      
      No change in functionality here, although further cleanups are
      in the pipeline.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Message-Id: <1454075341-13658-14-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      4c40314a
    • E
      qapi-visit: Kill unused visit_end_union() · 7c91aabd
      Eric Blake 提交于
      The generated code can call visit_end_union() without having called
      visit_start_union().  Example:
      
              if (!*obj) {
                  goto out_obj;
              }
              visit_type_CpuInfoBase_fields(v, (CpuInfoBase **)obj, &err);
              if (err) {
                  goto out_obj; // if we go from here...
              }
              if (!visit_start_union(v, !!(*obj)->u.data, &err) || err) {
                  goto out_obj;
              }
              switch ((*obj)->arch) {
          [...]
              }
          out_obj:
              // ... then *obj is true, and ...
              error_propagate(errp, err);
              err = NULL;
              if (*obj) {
                  // we end up here
                  visit_end_union(v, !!(*obj)->u.data, &err);
              }
              error_propagate(errp, err);
      
      Harmless only because no visitor implements end_union().  Clean it up
      anyway, by deleting the function as useless.
      
      Messed up since we have visit_end_union (commit cee2dedb).
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      Message-Id: <1453902888-20457-3-git-send-email-armbru@redhat.com>
      [expand scope of patch to delete rather than repair]
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Message-Id: <1454075341-13658-13-git-send-email-eblake@redhat.com>
      7c91aabd
    • E
      qapi: Track all failures between visit_start/stop · 92b09bab
      Eric Blake 提交于
      Inside the generated code between visit_start_struct() and
      visit_end_struct(), we were blindly setting the error into
      the caller's errp parameter.  But a future patch to split
      visit_end_struct() will require that we take action based
      on whether an error has occurred, which requires us to track
      all actions through a local err.  Rewrite the visits to be
      more in line with the other generated calls.
      
      Generated code changes look like:
      
      |     visit_start_struct(v, (void **)obj, "Abort", name, sizeof(Abort), &err);
      |-    if (!err) {
      |-        if (*obj) {
      |-            visit_type_Abort_fields(v, obj, errp);
      |-        }
      |-        visit_end_struct(v, &err);
      |+    if (err) {
      |+        goto out;
      |     }
      |+    if (!*obj) {
      |+        goto out_obj;
      |+    }
      |+    visit_type_Abort_fields(v, obj, &err);
      |+    error_propagate(errp, err);
      |+    err = NULL;
      |+out_obj:
      |+    visit_end_struct(v, &err);
      |+out:
      |     error_propagate(errp, err);
      | }
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Message-Id: <1454075341-13658-12-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      92b09bab
    • E
      qapi: Improve generated event use of qapi visitor · a16e3e5c
      Eric Blake 提交于
      All other successful clients of visit_start_struct() were paired
      with an unconditional visit_end_struct(); but the generated
      code for events was relying on qmp_output_visitor_cleanup() to
      work on an incomplete visit.  Alter the code to guarantee that
      the struct is completed, which will make a future patch to
      split visit_end_struct() easier to reason about.  While at it,
      drop some assertions and comments that are not present in other
      uses of the qmp output visitor, and pass NULL rather than "" as
      the 'kind' parameter (matching most other uses where obj is NULL).
      
      The changes to the generated code look like:
      
      |     qmp = qmp_event_build_dict("DEVICE_TRAY_MOVED");
      |
      |     qov = qmp_output_visitor_new();
      |-    g_assert(qov);
      |-
      |     v = qmp_output_get_visitor(qov);
      |-    g_assert(v);
      |
      |-    /* Fake visit, as if all members are under a structure */
      |-    visit_start_struct(v, NULL, "", "DEVICE_TRAY_MOVED", 0, &err);
      |+    visit_start_struct(v, NULL, NULL, "DEVICE_TRAY_MOVED", 0, &err);
      |     if (err) {
      |         goto out;
      |     }
      |     visit_type_str(v, (char **)&device, "device", &err);
      |     if (err) {
      |-        goto out;
      |+        goto out_obj;
      |     }
      |     visit_type_bool(v, &tray_open, "tray-open", &err);
      |     if (err) {
      |-        goto out;
      |+        goto out_obj;
      |     }
      |-    visit_end_struct(v, &err);
      |+out_obj:
      |+    visit_end_struct(v, err ? NULL : &err);
      |     if (err) {
      |         goto out;
      |     }
      |
      |     obj = qmp_output_get_qobject(qov);
      |-    g_assert(obj != NULL);
      |+    g_assert(obj);
      |
      |     qdict_put_obj(qmp, "data", obj);
      |     emit(QAPI_EVENT_DEVICE_TRAY_MOVED, qmp, &err);
      
      Note that the 'goto out_obj' with no intervening code before the
      label, as well as the construct of 'err ? NULL : &err', are both
      a bit unusual but also temporary; they get fixed in a later patch
      that splits visit_end_struct() to drop its errp parameter by moving
      some checking before the label.  But until that time, this was the
      simplest way to avoid the appearance of passing a possibly-set
      error to visit_end_struct(), even though actual code inspection
      shows that visit_end_struct() for a QMP output visitor will never
      set an error.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Message-Id: <1454075341-13658-11-git-send-email-eblake@redhat.com>
      [Commit message's code diff tweaked]
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      a16e3e5c
    • E
      balloon: Improve use of qapi visitor · 9dbb8fa7
      Eric Blake 提交于
      Rework the control flow of balloon_stats_get_all() to make it
      easier for a later patch to split visit_end_struct().  Also
      switch to the uint64 visitor to match the data type.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Message-Id: <1454075341-13658-10-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      9dbb8fa7
    • E
      vl: Ensure qapi visitor properly ends struct visit · 014791b0
      Eric Blake 提交于
      Guarantee that visit_end_struct() is called if
      visit_start_struct() succeeded.  This matches the behavior of
      most other uses of visitors, and is a step towards the possibility
      of a future patch that adds and enforces some tighter semantics to
      the visitor interface (namely, cleanup of the visitor would no
      longer have to mop up as many leftovers from an aborted partial
      visit).
      
      The change to code here matches the flow of hmp.c:hmp_object_add();
      a later patch will then further simplify the cleanup logic of both
      places by refactoring visit_end_struct() to not require a second
      local error object.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Reviewed-by: NMarc-André Lureau <marcandre.lureau@redhat.com>
      Message-Id: <1454075341-13658-9-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      014791b0
    • E
      hmp: Cache use of qapi visitor · 9b65859d
      Eric Blake 提交于
      Cache the visitor in a local variable instead of repeatedly
      calling the accessor.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Reviewed-by: NMarc-André Lureau <marcandre.lureau@redhat.com>
      Message-Id: <1454075341-13658-8-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      9b65859d
    • E
      hmp: Drop pointless allocation during qapi visit · 7019738d
      Eric Blake 提交于
      The qapi visitor contract allows us to visit a virtual structure,
      where we don't have any corresponding qapi struct.  Most such uses
      pass NULL for @obj; but these two callers were passing a dummy
      pointer, which then gets allocated to heap memory but then
      immediately freed without use.  Clean this up to suppress unwanted
      allocation, like we do elsewhere.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Reviewed-by: NMarc-André Lureau <marcandre.lureau@redhat.com>
      Message-Id: <1454075341-13658-7-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      7019738d
    • E
      qapi: Drop dead parameter in gen_params() · e4083115
      Eric Blake 提交于
      Commit 5cdc8831 reworked gen_params() to be simpler, but forgot
      to clean up a now-unused errp named argument.
      
      No change to generated code.
      Reported-by: NMarkus Armbruster <armbru@redhat.com>
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Message-Id: <1454075341-13658-6-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      e4083115
    • E
      qapi: Dealloc visitor does not need a type_size() · 4894b00b
      Eric Blake 提交于
      The intent of having the visitor type_size() callback differ
      from type_uint64() is to allow special handling for sizes; the
      visitor core gracefully falls back to type_uint64() if there is
      no need for the distinction.  Since the dealloc visitor does
      nothing for any of the int visits, drop the pointless size
      handler.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Message-Id: <1454075341-13658-5-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      4894b00b
    • E
      qapi: Drop dead dealloc visitor variable · 77577cb8
      Eric Blake 提交于
      Commit 0b9d8542 added StackEntry.is_list_head, but forgot to
      delete the now-unused QapiDeallocVisitor.is_list_head.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Reviewed-by: NMarc-André Lureau <marcandre.lureau@redhat.com>
      Message-Id: <1454075341-13658-4-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      77577cb8
    • E
      qapi: Avoid use of misnamed DO_UPCAST() · d7bea75d
      Eric Blake 提交于
      The macro DO_UPCAST() is incorrectly named: it converts from a
      parent class to a derived class (which is a downcast).  Better,
      and more consistent with some of the other qapi visitors, is
      to use the container_of() macro through a to_FOO() helper.  Names
      like 'to_ov()' may be a bit short, but for a static helper it
      doesn't hurt too much, and matches existing practice in files
      like qmp-input-visitor.c.
      
      Our current definition of container_of() is weaker than
      DO_UPCAST(), in that it does not require the derived class to
      have Visitor as its first member, but this does not hurt our
      usage patterns in qapi visitors.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Reviewed-by: NMarc-André Lureau <marcandre.lureau@redhat.com>
      Message-Id: <1454075341-13658-3-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      d7bea75d
    • E
      qobject: Document more shortcomings in our number handling · 6e8e5cb9
      Eric Blake 提交于
      We've already documented that our JSON parsing is locale dependent;
      but we should also document that our JSON output has the same
      problem.  Additionally, JSON requires finite values (you have to
      upgrade to JSON5 to get support for Inf or NaN), and our output
      truncates floating point numbers to the point of losing significant
      precision that could cause the receiver to read a different value.
      
      Sadly, this series is not going to be the one that addresses these
      problems.
      
      Fix some trailing whitespace I noticed in the vicinity.
      Signed-off-by: NEric Blake <eblake@redhat.com>
      Message-Id: <1454075341-13658-2-git-send-email-eblake@redhat.com>
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      6e8e5cb9
    • M
      tests: Use Python 2.6 "except E as ..." syntax · 03e18810
      Markus Armbruster 提交于
      PEP 8 calls for it, because it's forward compatible with Python 3.
      Supported since Python 2.6, which we require (commit fec21036).
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      Reviewed-by: NEric Blake <eblake@redhat.com>
      Acked-by: NStefan Hajnoczi <stefanha@redhat.com>
      Message-Id: <1450425164-24969-5-git-send-email-armbru@redhat.com>
      03e18810
    • M
      Revert "tracetool: use Python 2.4-compatible exception handling syntax" · 86b227d9
      Markus Armbruster 提交于
      This reverts commit 662da385.
      
      We require Python 2.6 now (commit fec21036).
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      Reviewed-by: NEric Blake <eblake@redhat.com>
      Acked-by: NStefan Hajnoczi <stefanha@redhat.com>
      Message-Id: <1450425164-24969-4-git-send-email-armbru@redhat.com>
      86b227d9
    • M
      scripts/qmp: Use Python 2.6 "except E as ..." syntax · cf6c6345
      Markus Armbruster 提交于
      PEP 8 calls for it, because it's forward compatible with Python 3.
      Supported since Python 2.6, which we require (commit fec21036).
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      Reviewed-by: NEric Blake <eblake@redhat.com>
      Acked-by: NStefan Hajnoczi <stefanha@redhat.com>
      Message-Id: <1450425164-24969-3-git-send-email-armbru@redhat.com>
      cf6c6345
    • M
      qapi: Use Python 2.6 "except E as ..." syntax · 291928a8
      Markus Armbruster 提交于
      PEP 8 calls for it, because it's forward compatible with Python 3.
      Supported since Python 2.6, which we require (commit fec21036).
      Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
      Reviewed-by: NEric Blake <eblake@redhat.com>
      Acked-by: NStefan Hajnoczi <stefanha@redhat.com>
      Message-Id: <1450425164-24969-2-git-send-email-armbru@redhat.com>
      291928a8
  2. 08 2月, 2016 2 次提交
    • P
      ui/cocoa.m: Include qemu/osdep.h · e4a096b1
      Peter Maydell 提交于
      Include "qemu/osdep.h". (This is a manual commit equivalent
      to what the clean-includes script would do, because that
      script can't handle ObjectiveC source files.)
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      Message-id: 1454084614-5365-1-git-send-email-peter.maydell@linaro.org
      e4a096b1
    • P
      Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging · bdad0f39
      Peter Maydell 提交于
      pc and misc cleanups and fixes, virtio optimizations
      
      Included here:
      Refactoring and bugfix patches in PC/ACPI.
      New commands for ipmi.
      Virtio optimizations.
      Signed-off-by: NMichael S. Tsirkin <mst@redhat.com>
      
      # gpg: Signature made Sat 06 Feb 2016 18:44:26 GMT using RSA key ID D28D5469
      # gpg: Good signature from "Michael S. Tsirkin <mst@kernel.org>"
      # gpg:                 aka "Michael S. Tsirkin <mst@redhat.com>"
      
      * remotes/mst/tags/for_upstream: (45 commits)
        net: set endianness on all backend devices
        fix MSI injection on Xen
        intel_iommu: large page support
        dimm: Correct type of MemoryHotplugState->base
        pc: set the OEM fields in the RSDT and the FADT from the SLIC
        acpi: add function to extract oem_id and oem_table_id from the user's SLIC
        acpi: expose oem_id and oem_table_id in build_rsdt()
        acpi: take oem_id in build_header(), optionally
        pc: Eliminate PcGuestInfo struct
        pc: Move APIC and NUMA data from PcGuestInfo to PCMachineState
        pc: Move PcGuestInfo.fw_cfg to PCMachineState
        pc: Remove PcGuestInfo.isapc_ram_fw field
        pc: Remove RAM size fields from PcGuestInfo
        pc: Remove compat fields from PcGuestInfo
        acpi: Don't save PcGuestInfo on AcpiBuildState
        acpi: Remove guest_info parameters from functions
        pc: Simplify xen_load_linux() signature
        pc: Simplify pc_memory_init() signature
        pc: Eliminate struct PcGuestInfoState
        pc: Move PcGuestInfo declaration to top of file
        ...
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      bdad0f39
  3. 07 2月, 2016 15 次提交