From: Yang Yingliang Date: Mon, 23 Dec 2013 09:38:59 +0000 (+0800) Subject: sch_htb: use /* comments X-Git-Tag: v3.14-rc1~94^2~353 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a071d272415bbca9dcdba2de3a0925b9e6ead6ef;p=profile%2Fivi%2Fkernel-x86-ivi.git sch_htb: use /* comments Do not use C99 // comments and correct a spelling typo. Signed-off-by: Yang Yingliang Signed-off-by: David S. Miller --- diff --git a/net/sched/sch_htb.c b/net/sched/sch_htb.c index e598810..0db5a6e 100644 --- a/net/sched/sch_htb.c +++ b/net/sched/sch_htb.c @@ -1276,9 +1276,10 @@ static int htb_delete(struct Qdisc *sch, unsigned long arg) struct Qdisc *new_q = NULL; int last_child = 0; - // TODO: why don't allow to delete subtree ? references ? does - // tc subsys quarantee us that in htb_destroy it holds no class - // refs so that we can remove children safely there ? + /* TODO: why don't allow to delete subtree ? references ? does + * tc subsys guarantee us that in htb_destroy it holds no class + * refs so that we can remove children safely there ? + */ if (cl->children || cl->filter_cnt) return -EBUSY;