From: Roland Dreier <rdreier@cisco.com>
To: davem@davemloft.net
Cc: Stephen Hemminger <shemminger@osdl.org>,
Jamal Hadi Salim <hadi@cyberus.ca>,
netdev@vger.kernel.org
Subject: [PATCH] [PKT_SCHED] HTB: Add missing semicolon to fix compilation
Date: Sat, 15 Jul 2006 09:36:33 -0700 [thread overview]
Message-ID: <adairlyrfji.fsf@cisco.com> (raw)
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;
next reply other threads:[~2006-07-15 16:36 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-07-15 16:36 Roland Dreier [this message]
2006-07-15 18:57 ` [PATCH] [PKT_SCHED] HTB: Add missing semicolon to fix compilation Roland Dreier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=adairlyrfji.fsf@cisco.com \
--to=rdreier@cisco.com \
--cc=davem@davemloft.net \
--cc=hadi@cyberus.ca \
--cc=netdev@vger.kernel.org \
--cc=shemminger@osdl.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).