1. 08 2月, 2011 2 次提交
  2. 21 1月, 2011 1 次提交
  3. 17 12月, 2010 1 次提交
  4. 12 12月, 2010 1 次提交
    • T
      drivers/net: don't use flush_scheduled_work() · 23f333a2
      Tejun Heo 提交于
      flush_scheduled_work() is on its way out.  This patch contains simple
      conversions to replace flush_scheduled_work() usage with direct
      cancels and flushes.
      
      Directly cancel the used works on driver detach and flush them in
      other cases.
      
      The conversions are mostly straight forward and the only dangers are,
      
      * Forgetting to cancel/flush one or more used works.
      
      * Cancelling when a work should be flushed (ie. the work must be
        executed once scheduled whether the driver is detaching or not).
      
      I've gone over the changes multiple times but it would be much
      appreciated if you can review with the above points in mind.
      Signed-off-by: NTejun Heo <tj@kernel.org>
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Jay Cliburn <jcliburn@gmail.com>
      Cc: Michael Chan <mchan@broadcom.com>
      Cc: Divy Le Ray <divy@chelsio.com>
      Cc: e1000-devel@lists.sourceforge.net
      Cc: Vasanthy Kolluri <vkolluri@cisco.com>
      Cc: Samuel Ortiz <samuel@sortiz.org>
      Cc: Lennert Buytenhek <buytenh@wantstofly.org>
      Cc: Andrew Gallatin <gallatin@myri.com>
      Cc: Francois Romieu <romieu@fr.zoreil.com>
      Cc: Ramkrishna Vepa <ramkrishna.vepa@exar.com>
      Cc: Matt Carlson <mcarlson@broadcom.com>
      Cc: David Brownell <dbrownell@users.sourceforge.net>
      Cc: Shreyas Bhatewara <sbhatewara@vmware.com>
      Cc: netdev@vger.kernel.org
      23f333a2
  5. 11 12月, 2010 5 次提交
  6. 16 11月, 2010 1 次提交
  7. 21 10月, 2010 5 次提交
  8. 01 10月, 2010 1 次提交
  9. 17 8月, 2010 2 次提交
  10. 05 8月, 2010 1 次提交
  11. 01 7月, 2010 1 次提交
  12. 26 6月, 2010 7 次提交
  13. 02 6月, 2010 1 次提交
  14. 24 5月, 2010 2 次提交
  15. 18 5月, 2010 1 次提交
    • S
      net: Add ndo_{set|get}_vf_port support for enic dynamic vnics · f8bd9091
      Scott Feldman 提交于
      Add enic ndo_{set|get}_vf_port ops to support setting/getting
      port-profile for enic dynamic devices.  Enic dynamic devices are just like
      normal enic eth devices except dynamic enics require an extra configuration
      step to assign a port-profile identifier to the interface before the
      interface is useable.  Once a port-profile is assigned, link comes up on the
      interface and is ready for I/O.  The port-profile is used to configure the
      network port assigned to the interface.  The network port configuration
      includes VLAN membership, QoS policies, and port security settings typical
      of a data center network.
      
      A dynamic enic initially has a zero-mac address.  Before a port-profile is
      assigned, a valid non-zero unicast mac address should be assign to the
      dynamic enic interface.
      Signed-off-by: NScott Feldman <scofeldm@cisco.com>
      Signed-off-by: NRoopa Prabhu <roprabhu@cisco.com>
      f8bd9091
  16. 04 4月, 2010 1 次提交
    • J
      net: convert multicast list to list_head · 22bedad3
      Jiri Pirko 提交于
      Converts the list and the core manipulating with it to be the same as uc_list.
      
      +uses two functions for adding/removing mc address (normal and "global"
       variant) instead of a function parameter.
      +removes dev_mcast.c completely.
      +exposes netdev_hw_addr_list_* macros along with __hw_addr_* functions for
       manipulation with lists on a sandbox (used in bonding and 80211 drivers)
      Signed-off-by: NJiri Pirko <jpirko@redhat.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      22bedad3
  17. 19 3月, 2010 2 次提交
  18. 23 2月, 2010 1 次提交
  19. 13 2月, 2010 1 次提交
  20. 08 1月, 2010 1 次提交
  21. 24 12月, 2009 2 次提交