Displaying 1 result from an estimated 1 matches for "br_stp_timer".
2007 Apr 18
0
[Bridge] Timer problem
...nk break detection for the STP. I want to make a timer who detect a link failure
within a few times instead of waiting max age timeout. The problem is that my timer isn't take in account by the bride and i really don't know why, can someone help me ?
Here's what I've done :
in file br_stp_timer.c :
/* called under bridge lock */
static void br_loss_timer_expired(struct net_bridge_port *p)
{
printk(KERN_INFO "il y a perte de connection \n");
br_timer_set(&p->loss_timer, jiffies); // for the moment I just want my function to be take in account.
}
/* called under bridge...