You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
Conflicts: net/ipv4/ip_output.c
This commit is contained in:
+2
-4
@@ -128,7 +128,7 @@ void br_fdb_cleanup(unsigned long _data)
|
||||
{
|
||||
struct net_bridge *br = (struct net_bridge *)_data;
|
||||
unsigned long delay = hold_time(br);
|
||||
unsigned long next_timer = jiffies + br->forward_delay;
|
||||
unsigned long next_timer = jiffies + br->ageing_time;
|
||||
int i;
|
||||
|
||||
spin_lock_bh(&br->hash_lock);
|
||||
@@ -149,9 +149,7 @@ void br_fdb_cleanup(unsigned long _data)
|
||||
}
|
||||
spin_unlock_bh(&br->hash_lock);
|
||||
|
||||
/* Add HZ/4 to ensure we round the jiffies upwards to be after the next
|
||||
* timer, otherwise we might round down and will have no-op run. */
|
||||
mod_timer(&br->gc_timer, round_jiffies(next_timer + HZ/4));
|
||||
mod_timer(&br->gc_timer, round_jiffies_up(next_timer));
|
||||
}
|
||||
|
||||
/* Completely flush all dynamic entries in forwarding database.*/
|
||||
|
||||
@@ -130,10 +130,10 @@ static int deliver_clone(const struct net_bridge_port *prev,
|
||||
void (*__packet_hook)(const struct net_bridge_port *p,
|
||||
struct sk_buff *skb))
|
||||
{
|
||||
struct net_device *dev = BR_INPUT_SKB_CB(skb)->brdev;
|
||||
|
||||
skb = skb_clone(skb, GFP_ATOMIC);
|
||||
if (!skb) {
|
||||
struct net_device *dev = BR_INPUT_SKB_CB(skb)->brdev;
|
||||
|
||||
dev->stats.tx_dropped++;
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user