diff options
author | Yang Yingliang <yangyingliang@huawei.com> | 2013-12-23 17:38:59 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-12-31 13:50:57 -0500 |
commit | a071d272415bbca9dcdba2de3a0925b9e6ead6ef (patch) | |
tree | aaf5b0b4c24aa9ff4ec057822cdaf6758e41d58c /net | |
parent | c17988a90f92c61164d6b82dd92ce8ade03899c2 (diff) | |
download | op-kernel-dev-a071d272415bbca9dcdba2de3a0925b9e6ead6ef.zip op-kernel-dev-a071d272415bbca9dcdba2de3a0925b9e6ead6ef.tar.gz |
sch_htb: use /* comments
Do not use C99 // comments and correct a spelling typo.
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/sched/sch_htb.c | 7 |
1 files changed, 4 insertions, 3 deletions
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; |