1. 19 2月, 2012 2 次提交
  2. 30 10月, 2011 1 次提交
  3. 16 10月, 2011 3 次提交
  4. 22 9月, 2011 1 次提交
  5. 18 9月, 2011 1 次提交
  6. 17 9月, 2011 5 次提交
  7. 16 9月, 2011 1 次提交
    • J
      net: consolidate and fix ethtool_ops->get_settings calling · 4bc71cb9
      Jiri Pirko 提交于
      This patch does several things:
      - introduces __ethtool_get_settings which is called from ethtool code and
        from drivers as well. Put ASSERT_RTNL there.
      - dev_ethtool_get_settings() is replaced by __ethtool_get_settings()
      - changes calling in drivers so rtnl locking is respected. In
        iboe_get_rate was previously ->get_settings() called unlocked. This
        fixes it. Also prb_calc_retire_blk_tmo() in af_packet.c had the same
        problem. Also fixed by calling __dev_get_by_index() instead of
        dev_get_by_index() and holding rtnl_lock for both calls.
      - introduces rtnl_lock in bnx2fc_vport_create() and fcoe_vport_create()
        so bnx2fc_if_create() and fcoe_if_create() are called locked as they
        are from other places.
      - use __ethtool_get_settings() in bonding code
      Signed-off-by: NJiri Pirko <jpirko@redhat.com>
      
      v2->v3:
      	-removed dev_ethtool_get_settings()
      	-added ASSERT_RTNL into __ethtool_get_settings()
      	-prb_calc_retire_blk_tmo - use __dev_get_by_index() and lock
      	 around it and __ethtool_get_settings() call
      v1->v2:
              add missing export_symbol
      Reviewed-by: Ben Hutchings <bhutchings@solarflare.com> [except FCoE bits]
      Acked-by: NRalf Baechle <ralf@linux-mips.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      4bc71cb9
  8. 29 8月, 2011 1 次提交
  9. 27 8月, 2011 13 次提交
  10. 28 7月, 2011 3 次提交
  11. 27 7月, 2011 1 次提交
    • B
      [SCSI] bnx2fc: Introduce interface structure for each vlan interface · aea71a02
      Bhanu Prakash Gollapudi 提交于
      Currently, bnx2fc has a hba structure that can work with only a single vlan
      interface.  When there is a change in vlan id, it does not have the capability
      to switch to different vlan interface. To solve this problem, a new structure
      called 'interface' has been introduced, and each hba can now have multiple
      interfaces, one per vlan id.
      
      Most of the patch is a moving the interface specific fields from hba to the
      interface structure, and appropriately modifying the dereferences. A list of
      interfaces (if_list) is maintained along with adapter list. During a create
      call, the interface structure is allocated and added to if_list and deleted &
      freed on a destroy call.  Link events are propagated to all interfaces
      belonging to the hba.
      Signed-off-by: NBhanu Prakash Gollapudi <bprakash@broadcom.com>
      Signed-off-by: NJames Bottomley <JBottomley@Parallels.com>
      aea71a02
  12. 26 7月, 2011 1 次提交
  13. 22 7月, 2011 1 次提交
  14. 30 6月, 2011 2 次提交
  15. 29 6月, 2011 1 次提交
  16. 15 6月, 2011 1 次提交
    • V
      New 7.0 FW: bnx2x, cnic, bnx2i, bnx2fc · 619c5cb6
      Vlad Zolotarov 提交于
      New FW/HSI (7.0):
       - Added support to 578xx chips
       - Improved HSI - much less driver's direct access to the FW internal
         memory needed.
      
      New implementation of the HSI handling layer in the bnx2x (bnx2x_sp.c):
       - Introduced chip dependent objects that have chip independent interfaces
         for configuration of MACs, multicast addresses, Rx mode, indirection table,
         fast path queues and function initialization/cleanup.
       - Objects functionality is based on the private function pointers, which
         allows not only a per-chip but also PF/VF differentiation while still
         preserving the same interface towards the driver.
       - Objects interface is not influenced by the HSI changes which do not require
         providing new parameters keeping the code outside the bnx2x_sp.c invariant
         with regard to such HSI chnages.
      
      Changes in a CNIC, bnx2fc and bnx2i modules due to the new HSI.
      Signed-off-by: NVladislav Zolotarov <vladz@broadcom.com>
      Signed-off-by: NMichael Chan <mchan@broadcom.com>
      Signed-off-by: NBhanu Prakash Gollapudi <bprakash@broadcom.com>
      Signed-off-by: NEilon Greenstein <eilong@broadcom.com>
      Signed-off-by: NDavid S. Miller <davem@conan.davemloft.net>
      619c5cb6
  17. 02 5月, 2011 2 次提交