Jarek Poplawski wrote:
> Here is a trial to do something suggested by Patrick McHardy.
>
> [NET_SCHED] sch_htb:
>
> - turn intermediate classes into leaves again when their last child is deleted
> (qdisc of deleted class is reused; struct htb_class changed)
>
> - sch_tree_lock added in htb_put before htb_destroy_class
> (for consistency with htb_delete and htb_destroy) - my own suggestion
->put() doesn't need the lock - if a class is deleted it must be
completely unlinked in ->delete().
> PS: qdisc_reset added to htb_delete by P. McHardy's patch: "perform qlen
> adjustment immediately in ->delete" should be reconsidered.
No, that is a necessary fix, even though it only causes a
shortly visible error.
> diff -Nurp linux-2.6.19-rc6-/net/sched/sch_htb.c
> linux-2.6.19-rc6/net/sched/sch_htb.c
> --- linux-2.6.19-rc6-/net/sched/sch_htb.c 2006-11-16 20:46:08.000000000
> +0100
> +++ linux-2.6.19-rc6/net/sched/sch_htb.c 2006-11-26 22:54:15.000000000
> +0100
> @@ -147,6 +147,10 @@ struct htb_class {
> psched_tdiff_t mbuffer; /* max wait time */
> long tokens, ctokens; /* current number of tokens */
> psched_time_t t_c; /* checkpoint time */
> +
> + int prio; /* For parent to leaf return possible here */
> + int quantum; /* we do backup. Finally full replacement */
> + /* of un.leaf originals should be done. */
> };
>
> /* TODO: maybe compute rate when size is too large .. or drop ? */
> @@ -1266,6 +1270,37 @@ static void htb_destroy_filters(struct t
> }
> }
>
> +static void htb_parent_to_leaf(struct htb_sched *q, struct htb_class *cl)
> +{
> + struct htb_class *parent = cl->parent;
> +
> + if (!parent)
> + /* the root class */
> + return;
> +
> + BUG_TRAP(!cl->level && cl->un.leaf.q && !cl->prio_activity);
> +
> + if (!(parent->children.next == &cl->sibling &&
> + parent->children.prev == &cl->sibling))
> + /* not the last child */
> + return;
> +
> + parent->level = 0;
> + memset(&parent->un.inner, 0, sizeof(parent->un.inner));
> + INIT_LIST_HEAD(&parent->un.leaf.drop_list);
> + parent->un.leaf.q = cl->un.leaf.q;
> + cl->un.leaf.q = &noop_qdisc;
default pfifo would be a better choice. Might be a bit ugly
though because you're holding the qdisc lock here and can't
call qdisc_create_dflt. Since you're already keeping backup
values from the union we could consider just turning it into
two seperate structures and keep the child qdisc when turning
a class into a parent.
> + parent->un.leaf.quantum = parent->quantum;
> + parent->un.leaf.prio = parent->prio;
> + parent->tokens = parent->buffer;
> + parent->ctokens = parent->cbuffer;
> + PSCHED_GET_TIME(parent->t_c);
> + parent->cmode = HTB_CAN_SEND;
> +
> + if (parent->un.leaf.q->q.qlen)
> + htb_activate(q, parent);
Not possible right now and even if we reuse the old child qdisc
it should be empty.
> +}
> +
> static void htb_destroy_class(struct Qdisc *sch, struct htb_class *cl)
> {
> struct htb_sched *q = qdisc_priv(sch);
> @@ -1337,6 +1372,9 @@ static int htb_delete(struct Qdisc *sch,
> if (cl->prio_activity)
> htb_deactivate(q, cl);
>
> + if (!cl->level)
> + htb_parent_to_leaf(q, cl);
> +
You have to manually adjust the classes level before checking for
zero, it is not done currently.
> if (--cl->refcnt == 0)
> htb_destroy_class(sch, cl);
>
> @@ -1348,8 +1386,11 @@ static void htb_put(struct Qdisc *sch, u
> {
> struct htb_class *cl = (struct htb_class *)arg;
>
> - if (--cl->refcnt == 0)
> + if (--cl->refcnt == 0) {
> + sch_tree_lock(sch);
> htb_destroy_class(sch, cl);
> + sch_tree_unlock(sch);
> + }
> }
See above.
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html