[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4B548DAE.3000205@trash.net>
Date: Mon, 18 Jan 2010 17:34:54 +0100
From: Patrick McHardy <kaber@...sh.net>
To: Hagen Paul Pfeifer <hagen@...u.net>
CC: netdev@...r.kernel.org
Subject: Re: [PATCH 1/1] sched: add head drop fifo queue
Hagen Paul Pfeifer wrote:
> This add an additional queuing strategy, called pfifo_head_drop,
> to remove the oldest skb in the case of an overflow within the queue -
> the head element - instead of the last skb (tail). To remove the oldest
> skb in a congested situations is useful for sensor network environments
> where newer packets reflects the superior information.
>
> Reviewed-by: Florian Westphal <fw@...len.de>
> Signed-off-by: Hagen Paul Pfeifer <hagen@...u.net>
This looks better than the last one :)
A last comment below, than you can add my
Acked-by: Patrick McHardy <kaber@...sh.net>
> +struct Qdisc_ops pfifo_head_drop_qdisc_ops __read_mostly = {
> + .id = "pfifo_head_drop",
> + .priv_size = sizeof(struct fifo_sched_data),
> + .enqueue = pfifo_front_enqueue,
> + .dequeue = qdisc_dequeue_head,
> + .peek = qdisc_peek_head,
> + .drop = qdisc_queue_drop,
> + .init = fifo_init,
> + .reset = qdisc_reset_queue,
> + .change = fifo_init,
> + .dump = fifo_dump,
> + .owner = THIS_MODULE,
> +};
> +EXPORT_SYMBOL(pfifo_head_drop_qdisc_ops);
The EXPORT_SYMBOL shouldn't be needed as sch_fifo can only be
linked statically and no other modules are using this as default.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists