Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[PATCH] sch_htb compile fix.

net/sched/sch_htb.c: In function 'htb_change_class':
net/sched/sch_htb.c:1605: error: expected ';' before 'do_gettimeofday'

Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Dave Jones and committed by
Linus Torvalds
2724a1a5 d6c93e1d

+1 -1
+1 -1
net/sched/sch_htb.c
··· 1601 1601 /* set class to be in HTB_CAN_SEND state */ 1602 1602 cl->tokens = hopt->buffer; 1603 1603 cl->ctokens = hopt->cbuffer; 1604 - cl->mbuffer = PSCHED_JIFFIE2US(HZ*60) /* 1min */ 1604 + cl->mbuffer = PSCHED_JIFFIE2US(HZ*60); /* 1min */ 1605 1605 PSCHED_GET_TIME(cl->t_c); 1606 1606 cl->cmode = HTB_CAN_SEND; 1607 1607