The commit b3a6251915df9e3d80d4a0d32bd8d24223906688, "[PKT_SCHED] HTB: initialize upper bound properly", broke my compile because the new line it added was missing a final semicolon.
Cc: Stephen Hemminger <[EMAIL PROTECTED]> Cc: Jamal Hadi Salim <[EMAIL PROTECTED]> Signed-off-by: Roland Dreier <[EMAIL PROTECTED]> --- diff --git a/net/sched/sch_htb.c b/net/sched/sch_htb.c index cd0a973..cc5f339 100644 --- a/net/sched/sch_htb.c +++ b/net/sched/sch_htb.c @@ -1601,7 +1601,7 @@ #endif /* set class to be in HTB_CAN_SEND state */ cl->tokens = hopt->buffer; cl->ctokens = hopt->cbuffer; - cl->mbuffer = PSCHED_JIFFIE2US(HZ*60) /* 1min */ + cl->mbuffer = PSCHED_JIFFIE2US(HZ*60); /* 1min */ PSCHED_GET_TIME(cl->t_c); cl->cmode = HTB_CAN_SEND; - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html