···27552755config NETXEN_NIC27562756 tristate "NetXen Multi port (1/10) Gigabit Ethernet NIC"27572757 depends on PCI27582758+ select FW_LOADER27582759 help27592760 This enables the support for NetXen's Gigabit Ethernet card.27602761···28212820config QLCNIC28222821 tristate "QLOGIC QLCNIC 1/10Gb Converged Ethernet NIC Support"28232822 depends on PCI28232823+ select FW_LOADER28242824 help28252825 This driver supports QLogic QLE8240 and QLE8242 Converged Ethernet28262826 devices.
···13341334 /* check for port already opened, if not set the termios */13351335 serial->open_count++;13361336 if (serial->open_count == 1) {13371337- tty->low_latency = 1;13381337 serial->rx_state = RX_IDLE;13391338 /* Force default termio settings */13401339 _hso_serial_set_termios(tty, NULL);
+1
drivers/net/wireless/ath/ath5k/attach.c
···126126 ah->ah_ant_mode = AR5K_ANTMODE_DEFAULT;127127 ah->ah_noise_floor = -95; /* until first NF calibration is run */128128 sc->ani_state.ani_mode = ATH5K_ANI_MODE_AUTO;129129+ ah->ah_current_channel = &sc->channels[0];129130130131 /*131132 * Find the mac version
···134134#define SNMP_ADD_STATS_USER(mib, field, addend) \135135 this_cpu_add(mib[1]->mibs[field], addend)136136#define SNMP_ADD_STATS(mib, field, addend) \137137- this_cpu_add(mib[0]->mibs[field], addend)137137+ this_cpu_add(mib[!in_softirq()]->mibs[field], addend)138138/*139139 * Use "__typeof__(*mib[0]) *ptr" instead of "__typeof__(mib[0]) ptr"140140 * to make @ptr a non-percpu pointer.
+2-4
net/bridge/br_fdb.c
···128128{129129 struct net_bridge *br = (struct net_bridge *)_data;130130 unsigned long delay = hold_time(br);131131- unsigned long next_timer = jiffies + br->forward_delay;131131+ unsigned long next_timer = jiffies + br->ageing_time;132132 int i;133133134134 spin_lock_bh(&br->hash_lock);···149149 }150150 spin_unlock_bh(&br->hash_lock);151151152152- /* Add HZ/4 to ensure we round the jiffies upwards to be after the next153153- * timer, otherwise we might round down and will have no-op run. */154154- mod_timer(&br->gc_timer, round_jiffies(next_timer + HZ/4));152152+ mod_timer(&br->gc_timer, round_jiffies_up(next_timer));155153}156154157155/* Completely flush all dynamic entries in forwarding database.*/