1. 07 3月, 2009 2 次提交
  2. 17 1月, 2009 3 次提交
  3. 11 1月, 2009 1 次提交
  4. 10 1月, 2009 1 次提交
  5. 09 1月, 2009 1 次提交
  6. 08 1月, 2009 1 次提交
  7. 06 1月, 2009 2 次提交
  8. 31 12月, 2008 1 次提交
  9. 30 12月, 2008 3 次提交
  10. 27 12月, 2008 1 次提交
  11. 25 12月, 2008 2 次提交
  12. 23 12月, 2008 1 次提交
  13. 22 12月, 2008 2 次提交
    • Y
      mlx4_core: Add support for multiple completion event vectors · b8dd786f
      Yevgeny Petrilin 提交于
      When using MSI-X mode, create a completion event queue for each CPU.
      Report the number of completion EQs in a new struct mlx4_caps member,
      num_comp_vectors, and extend the mlx4_cq_alloc() interface with a
      vector parameter so that consumers can specify which completion EQ
      should be used to report events for the CQ being created.
      Signed-off-by: NYevgeny Petrilin <yevgenyp@mellanox.co.il>
      Signed-off-by: NRoland Dreier <rolandd@cisco.com>
      b8dd786f
    • J
      IB/ehca: Remove redundant test of vpage · 139cdab0
      Julia Lawall 提交于
      vpage is checked not to be NULL just after it is initialized at the
      beginning of each loop iteration.
      
      A simplified version of the semantic patch that makes this change is
      as follows: (http://www.emn.fr/x-info/coccinelle/)
      
      // <smpl>
      @r exists@
      local idexpression x;
      expression E;
      position p1,p2;
      @@
      
      if (x@p1 == NULL || ...) { ... when forall
         return ...; }
      ... when != \(x=E\|x--\|x++\|--x\|++x\|x-=E\|x+=E\|x|=E\|x&=E\|&x\)
      (
      x@p2 == NULL
      |
      x@p2 != NULL
      )
      
      // another path to the test that is not through p1?
      @s exists@
      local idexpression r.x;
      position r.p1,r.p2;
      @@
      
      ... when != x@p1
      (
      x@p2 == NULL
      |
      x@p2 != NULL
      )
      
      @fix depends on !s@
      position r.p1,r.p2;
      expression x,E;
      statement S1,S2;
      @@
      
      (
      - if ((x@p2 != NULL) || ...)
        S1
      |
      - if ((x@p2 == NULL) && ...) S1
      |
      - BUG_ON(x@p2 == NULL);
      )
      // </smpl>
      Signed-off-by: NJulia Lawall <julia@diku.dk>
      Signed-off-by: NRoland Dreier <rolandd@cisco.com>
      139cdab0
  14. 06 12月, 2008 15 次提交
  15. 02 12月, 2008 4 次提交