You need to sign in or sign up before continuing.
  1. 18 6月, 2015 2 次提交
  2. 15 6月, 2015 1 次提交
  3. 13 6月, 2015 1 次提交
  4. 05 6月, 2015 4 次提交
  5. 04 6月, 2015 18 次提交
  6. 03 6月, 2015 5 次提交
  7. 27 5月, 2015 2 次提交
  8. 21 5月, 2015 2 次提交
  9. 20 5月, 2015 2 次提交
  10. 19 5月, 2015 1 次提交
  11. 18 5月, 2015 1 次提交
    • L
      conf: make virNodeDevCapData an official type · ffc40b63
      Laine Stump 提交于
      For some reason a union (_virNodeDevCapData) that had only been
      declared inside the toplevel struct virNodeDevCapsDef was being used
      as an argument to functions all over the place. Since it was only a
      union, the "type" attribute wasn't necessarily sent with it. While
      this works, it just seems wrong.
      
      This patch creates a toplevel typedef for virNodeDevCapData and
      virNodeDevCapDataPtr, making it a struct that has the type attribute
      as a member, along with an anonymous union of everything that used to
      be in union _virNodeDevCapData. This way we only have to change the
      following:
      
        s/union _virNodeDevCapData */virNodeDevCapDataPtr /
      
      and
      
        s/caps->type/caps->data.type/
      
      This will make me feel less guilty when adding functions that need a
      pointer to one of these.
      ffc40b63
  12. 15 5月, 2015 1 次提交