1. 02 8月, 2014 1 次提交
  2. 24 6月, 2014 1 次提交
    • S
      be2net: fix qnq mode detection on VFs · 66064dbc
      Suresh Reddy 提交于
      The driver (on PF or VF) needs to detect if the function is in qnq mode for
      a HW hack in be_rx_compl_get() to work.
      
      The driver queries this information using the GET_PROFILE_CONFIG cmd
      (since the commit below can caused this regression.) But this cmd is not
      available on VFs and so the VFs fail to detect qnq mode. This causes
      vlan traffic to not work.
      
      The fix is to use the the adapter->function_mode value queried via
      QUERY_FIRMWARE_CONFIG cmd on both PFs and VFs to detect the qnq mode.
      
      Also QNQ_MODE was incorrectly named FLEX10_MODE; correcting that too as the
      fix reads much better with the name change.
      
      Fixes: f93f160b ("refactor multi-channel config code for Skyhawk-R chip")
      Signed-off-by: NSuresh Reddy <Suresh.Reddy@emulex.com>
      Signed-off-by: NSathya Perla <sathya.perla@emulex.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      66064dbc
  3. 31 5月, 2014 1 次提交
  4. 10 5月, 2014 1 次提交
  5. 23 4月, 2014 1 次提交
  6. 15 4月, 2014 1 次提交
  7. 29 3月, 2014 1 次提交
  8. 13 3月, 2014 2 次提交
  9. 05 3月, 2014 1 次提交
    • S
      be2net: dma_sync each RX frag before passing it to the stack · e50287be
      Sathya Perla 提交于
      The driver currently maps a page for DMA, divides the page into multiple
      frags and posts them to the HW. It un-maps the page after data is received
      on all the frags of the page. This scheme doesn't work when bounce buffers
      are used for DMA (swiotlb=force kernel param).
      
      This patch fixes this problem by calling dma_sync_single_for_cpu() for each
      frag (excepting the last one) so that the data is copied from the bounce
      buffers. The page is un-mapped only when DMA finishes on the last frag of
      the page.
      (Thanks Ben H. for suggesting the dma_sync API!)
      
      This patch also renames the "last_page_user" field of be_rx_page_info{}
      struct to "last_frag" to improve readability of the fixed code.
      Reported-by: NLi Fengmao <li.fengmao@zte.com.cn>
      Signed-off-by: NSathya Perla <sathya.perla@emulex.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      e50287be
  10. 04 3月, 2014 1 次提交
  11. 14 2月, 2014 2 次提交
  12. 16 1月, 2014 4 次提交
  13. 07 1月, 2014 2 次提交
  14. 24 11月, 2013 1 次提交
  15. 30 10月, 2013 1 次提交
  16. 28 10月, 2013 2 次提交
  17. 10 10月, 2013 2 次提交
  18. 02 10月, 2013 3 次提交
  19. 28 9月, 2013 2 次提交
  20. 24 9月, 2013 1 次提交
  21. 28 8月, 2013 3 次提交
  22. 08 8月, 2013 1 次提交
  23. 01 6月, 2013 1 次提交
  24. 31 5月, 2013 1 次提交
  25. 28 5月, 2013 1 次提交
  26. 03 5月, 2013 1 次提交
  27. 27 4月, 2013 1 次提交