1. 10 12月, 2014 1 次提交
  2. 26 11月, 2014 1 次提交
    • H
      cxgb4/cxgb4vf/csiostor: Add T4/T5 PCI ID Table · 3fedeab1
      Hariprasad Shenai 提交于
      Add a new file t4_pci_id_tbl.h that contains T4/T5 PCI ID Table so that for all
      drivers that uses T4/T5 PCI functions changes can be done in one place.
      
      checkpatch.pl script reports following error, which if tried to fix ends up in
      compilation error.
      
      	ERROR: Macros with complex values should be enclosed in parentheses
      	+#define CH_PCI_DEVICE_ID_TABLE_DEFINE_END \
      	+		{ 0, } \
      	+	}
      
      	WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
      	new file mode 100644
      
      	ERROR: Macros with complex values should be enclosed in parentheses
      	+#define CH_PCI_ID_TABLE_FENTRY(devid) \
      	+	CH_PCI_ID_TABLE_ENTRY((devid) | \
      	+			      ((CH_PCI_DEVICE_ID_FUNCTION) << 8)), \
      	+	CH_PCI_ID_TABLE_ENTRY((devid) | \
      	+			      ((CH_PCI_DEVICE_ID_FUNCTION2) << 8))
      
      	ERROR: Macros with complex values should be enclosed in parentheses
      	+#define CH_PCI_DEVICE_ID_TABLE_DEFINE_END { 0, } }
      
      	ERROR: Macros with complex values should be enclosed in parentheses
      	+#define CH_PCI_DEVICE_ID_TABLE_DEFINE_END { 0, } }
      Signed-off-by: NHariprasad Shenai <hariprasad@chelsio.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      3fedeab1
  3. 23 11月, 2014 4 次提交
  4. 14 11月, 2014 1 次提交
  5. 12 11月, 2014 1 次提交
  6. 11 11月, 2014 4 次提交
  7. 30 10月, 2014 1 次提交
  8. 10 10月, 2014 2 次提交
  9. 29 9月, 2014 2 次提交
  10. 11 9月, 2014 1 次提交
  11. 22 8月, 2014 1 次提交
  12. 13 8月, 2014 1 次提交
  13. 06 8月, 2014 1 次提交
  14. 02 7月, 2014 1 次提交
  15. 14 5月, 2014 1 次提交
  16. 13 5月, 2014 1 次提交
  17. 18 4月, 2014 1 次提交
  18. 29 3月, 2014 1 次提交
  19. 25 3月, 2014 1 次提交
    • E
      cxfb4vf: Call dev_kfree/consume_skb_any instead of [dev_]kfree_skb. · 42ffda5f
      Eric W. Biederman 提交于
      Replace kfree_skb with dev_consume_skb_any in free_tx_desc that can be
      called in hard irq and other contexts. dev_consume_skb_any is used
      as this function consumes successfully transmitted skbs.
      
      Replace dev_kfree_skb with dev_kfree_skb_any in t4vf_eth_xmit that can
      be called in hard irq and other contexts, on paths that drop the skb.
      
      Replace dev_kfree_skb with dev_consume_skb_any in t4vf_eth_xmit that can
      be called in hard irq and other contexts, on paths that successfully
      transmit the skb.
      Signed-off-by: N"Eric W. Biederman" <ebiederm@xmission.com>
      42ffda5f
  20. 19 2月, 2014 2 次提交
  21. 23 12月, 2013 1 次提交
  22. 04 12月, 2013 1 次提交
  23. 22 10月, 2013 1 次提交
  24. 18 10月, 2013 1 次提交
  25. 21 9月, 2013 1 次提交
  26. 30 4月, 2013 1 次提交
    • V
      cxgb4vf: Support CPL_SGE_EGR_UPDATEs encapsulated in a CPL_FW4_MSG · 94dace10
      Vipul Pandya 提交于
      Newer firmware can post CPL_SGE_EGR_UPDATE message encapsulated in a
      CPL_FW4_MSG as follows
      
      flit0 rss_header (if DropRSS == 0 in IQ context)
      flit1 CPL_FW4_MSG cpl
      flit2 rss_header w/opcode CPL_SGE_EGR_UPDATE
      flit3 CPL_SGE_EGR_UPDATE cpl
      
      So FW4_MSG CPLs with a newly created type of FW_TYPE_RSSCPL have the
      CPL_SGE_EGR_UPDATE CPL message in flit 2 of the FW4_MSG. Firmware can still
      post regular CPL_SGE_EGR_UPDATE messages, so the drivers need to handle
      both.
      
      This patch also writes a new parameter to firmware requesting encapsulated
      EGR_UPDATE. This allows firmware with this support to not break older drivers.
      Signed-off-by: NVipul Pandya <vipul@chelsio.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      94dace10
  27. 20 4月, 2013 2 次提交
  28. 14 3月, 2013 1 次提交
  29. 13 2月, 2013 1 次提交
  30. 09 2月, 2013 1 次提交