diff options
-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 e5988101e1fd..0db5a6eae87f 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) | |||
1276 | struct Qdisc *new_q = NULL; | 1276 | struct Qdisc *new_q = NULL; |
1277 | int last_child = 0; | 1277 | int last_child = 0; |
1278 | 1278 | ||
1279 | // TODO: why don't allow to delete subtree ? references ? does | 1279 | /* TODO: why don't allow to delete subtree ? references ? does |
1280 | // tc subsys quarantee us that in htb_destroy it holds no class | 1280 | * tc subsys guarantee us that in htb_destroy it holds no class |
1281 | // refs so that we can remove children safely there ? | 1281 | * refs so that we can remove children safely there ? |
1282 | */ | ||
1282 | if (cl->children || cl->filter_cnt) | 1283 | if (cl->children || cl->filter_cnt) |
1283 | return -EBUSY; | 1284 | return -EBUSY; |
1284 | 1285 | ||