* [PATCH] [PKT_SCHED] HTB: Add missing semicolon to fix compilation
@ 2006-07-15 16:36 Roland Dreier
2006-07-15 18:57 ` Roland Dreier
0 siblings, 1 reply; 2+ messages in thread
From: Roland Dreier @ 2006-07-15 16:36 UTC (permalink / raw)
To: davem; +Cc: Stephen Hemminger, Jamal Hadi Salim, netdev
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 <shemminger@osdl.org>
Cc: Jamal Hadi Salim <hadi@cyberus.ca>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
---
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;
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] [PKT_SCHED] HTB: Add missing semicolon to fix compilation
2006-07-15 16:36 [PATCH] [PKT_SCHED] HTB: Add missing semicolon to fix compilation Roland Dreier
@ 2006-07-15 18:57 ` Roland Dreier
0 siblings, 0 replies; 2+ messages in thread
From: Roland Dreier @ 2006-07-15 18:57 UTC (permalink / raw)
To: davem; +Cc: Stephen Hemminger, Jamal Hadi Salim, netdev
Never mind -- looks like davej sent the fix directly to Linus already.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-07-15 18:57 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-15 16:36 [PATCH] [PKT_SCHED] HTB: Add missing semicolon to fix compilation Roland Dreier
2006-07-15 18:57 ` Roland Dreier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).