br_device.c (3bc32d0396d2a7214cb1d758df129bb781f7aa14) br_device.c (f7cdee8a79a1cb03fa9ca71b825e72f880b344e1)
1/*
2 * Device handling code
3 * Linux ethernet bridge
4 *
5 * Authors:
6 * Lennert Buytenhek <buytenh@gnu.org>
7 *
8 * This program is free software; you can redistribute it and/or

--- 397 unchanged lines hidden (view full) ---

406 br->bridge_hello_time = br->hello_time = 2 * HZ;
407 br->bridge_forward_delay = br->forward_delay = 15 * HZ;
408 br->bridge_ageing_time = br->ageing_time = BR_DEFAULT_AGEING_TIME;
409 dev->max_mtu = ETH_MAX_MTU;
410
411 br_netfilter_rtable_init(br);
412 br_stp_timer_init(br);
413 br_multicast_init(br);
1/*
2 * Device handling code
3 * Linux ethernet bridge
4 *
5 * Authors:
6 * Lennert Buytenhek <buytenh@gnu.org>
7 *
8 * This program is free software; you can redistribute it and/or

--- 397 unchanged lines hidden (view full) ---

406 br->bridge_hello_time = br->hello_time = 2 * HZ;
407 br->bridge_forward_delay = br->forward_delay = 15 * HZ;
408 br->bridge_ageing_time = br->ageing_time = BR_DEFAULT_AGEING_TIME;
409 dev->max_mtu = ETH_MAX_MTU;
410
411 br_netfilter_rtable_init(br);
412 br_stp_timer_init(br);
413 br_multicast_init(br);
414 INIT_DELAYED_WORK(&br->gc_work, br_fdb_cleanup);
414}
415}