1. 26 Jul, 2010 3 commits
  2. 25 Jul, 2010 7 commits
  3. 23 Jul, 2010 25 commits
  4. 22 Jul, 2010 5 commits
    • Dan Carpenter's avatar
      stmmac: handle allocation errors in setup functions · 1ff21906
      Dan Carpenter authored
      If the allocations fail in either dwmac1000_setup() or dwmac100_setup()
      then return NULL.  These are called from stmmac_mac_device_setup().  The
      check for NULL returns in stmmac_mac_device_setup() needed to be moved
      forward a couple lines.
      Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      1ff21906
    • Dan Carpenter's avatar
      caif: precedence bug · b77026b3
      Dan Carpenter authored
      Negate has precedence over comparison so the original assert only
      checked that "rfml->fragment_size" was larger than 1 or 0.
      Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      b77026b3
    • Jay Vosburgh's avatar
      bonding: don't lock when copying/clearing VLAN list on slave · 03dc2f4c
      Jay Vosburgh authored
      When copying VLAN information to or removing from a slave
      during slave addition or removal, the bonding code currently holds
      the bond->lock for write to prevent concurrent modification of the
      vlan_list / vlgrp.
      
      	This is unnecessary, as all of these operations occur under
      RTNL.  Holding the bond->lock also caused might_sleep issues for
      some drivers' ndo_vlan_* functions.  This patch removes the extra
      locking.
      
      	Problem reported by Michael Chan <mchan@broadcom.com>
      Signed-off-by: default avatarJay Vosburgh <fubar@us.ibm.com>
      Cc: Michael Chan <mchan@broadcom.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      03dc2f4c
    • Jay Vosburgh's avatar
      bonding: change test for presence of VLANs · f35188fa
      Jay Vosburgh authored
      After commit ad1afb00
      ("vlan_dev: VLAN 0 should be treated as "no vlan tag" (802.1p packet)")
      it is now regular practice for a VLAN "add vid" for VLAN 0 to
      arrive prior to any VLAN registration or creation of a vlan_group.
      
      	This patch updates the bonding code that tests for the presence
      of VLANs configured above bonding.  The new logic tests for bond->vlgrp
      to determine if a registration has occured, instead of testing that
      bonding's internal vlan_list is empty.
      
      	The old code would panic when vlan_list was not empty, but
      vlgrp was still NULL (because only an "add vid" for VLAN 0 had occured).
      
      	Bonding still adds VLAN 0 to its internal list so that 802.1p
      frames are handled correctly on transmit when non-VLAN accelerated
      slaves are members of the bond.  The test against bond->vlan_list
      remains in bond_dev_queue_xmit for this reason.
      
      	Modification to the bond->vlgrp now occurs under lock (in
      addition to RTNL), because not all inspections of it occur under RTNL.
      
      	Additionally, because 8021q will never issue a "kill vid" for
      VLAN 0, there is now logic in bond_uninit to release any remaining
      entries from vlan_list.
      Signed-off-by: default avatarJay Vosburgh <fubar@us.ibm.com>
      Cc: Pedro Garcia <pedro.netdev@dondevamos.com>
      Cc: Patrick McHardy <kaber@trash.net>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      f35188fa
    • Wolfram Sang's avatar
      net/fec: restore interrupt mask after software-reset in fec_stop() · 4bee1f9a
      Wolfram Sang authored
      After the change from mdio polling to irq, it became necessary to
      restore the interrupt mask after resetting the chip in fec_stop().
      Otherwise, with all irqs disabled, no communication with the PHY will be
      possible after e.g. un-/replugging the cable and the device gets
      stalled.
      Signed-off-by: default avatarWolfram Sang <w.sang@pengutronix.de>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      4bee1f9a