From: Julio Kriger <juliokriger@gmail.com>
To: Stephen Hemminger <shemminger@osdl.org>
Cc: "David S. Miller" <davem@davemloft.net>,
netdev@oss.sgi.com, netem@osdl.org
Subject: Re: [Netem] [PATCH] (3/3) netem: allow random reordering
Date: Sat, 21 May 2005 15:05:09 +0000 [thread overview]
Message-ID: <682bc30a050521080551b561d5@mail.gmail.com> (raw)
In-Reply-To: <20050519151254.79afe7e7@dxpl.pdx.osdl.net>
[-- Attachment #1: Type: text/plain, Size: 6316 bytes --]
Hi!
Here is a patch to 'tc' that add funcionality need to use the new
feature reorder.
Regards,
Julio
On 5/19/05, Stephen Hemminger <shemminger@osdl.org> wrote:
> Enhance the reorder feature of netem to allow random percent to be reordered.
> Has expected backwards compatibility behaviour.
>
> Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
>
> Index: netem-2.6.12-rc4/include/linux/pkt_sched.h
> ===================================================================
> --- netem-2.6.12-rc4.orig/include/linux/pkt_sched.h
> +++ netem-2.6.12-rc4/include/linux/pkt_sched.h
> @@ -427,6 +427,7 @@ enum
> TCA_NETEM_UNSPEC,
> TCA_NETEM_CORR,
> TCA_NETEM_DELAY_DIST,
> + TCA_NETEM_REORDER,
> __TCA_NETEM_MAX,
> };
>
> @@ -437,7 +438,7 @@ struct tc_netem_qopt
> __u32 latency; /* added delay (us) */
> __u32 limit; /* fifo limit (packets) */
> __u32 loss; /* random packet loss (0=none ~0=100%) */
> - __u32 gap; /* re-ordering gap (0 for delay all) */
> + __u32 gap; /* re-ordering gap (0 for none) */
> __u32 duplicate; /* random packet dup (0=none ~0=100%) */
> __u32 jitter; /* random jitter in latency (us) */
> };
> @@ -449,6 +450,12 @@ struct tc_netem_corr
> __u32 dup_corr; /* duplicate correlation */
> };
>
> +struct tc_netem_reorder
> +{
> + __u32 probability;
> + __u32 correlation;
> +};
> +
> #define NETEM_DIST_SCALE 8192
>
> #endif
> Index: netem-2.6.12-rc4/net/sched/sch_netem.c
> ===================================================================
> --- netem-2.6.12-rc4.orig/net/sched/sch_netem.c
> +++ netem-2.6.12-rc4/net/sched/sch_netem.c
> @@ -62,11 +62,12 @@ struct netem_sched_data {
> u32 gap;
> u32 jitter;
> u32 duplicate;
> + u32 reorder;
>
> struct crndstate {
> unsigned long last;
> unsigned long rho;
> - } delay_cor, loss_cor, dup_cor;
> + } delay_cor, loss_cor, dup_cor, reorder_cor;
>
> struct disttable {
> u32 size;
> @@ -185,18 +186,18 @@ static int netem_enqueue(struct sk_buff
> * of the queue.
> * gap == 0 is special case for no-reordering.
> */
> - if (q->gap == 0 || q->counter != q->gap) {
> + if (q->gap == 0 && q->counter < q->gap &&
> + q->reorder < get_crandom(&q->reorder_cor)) {
> psched_time_t now;
> PSCHED_GET_TIME(now);
> - PSCHED_TADD2(now,
> - tabledist(q->latency, q->jitter, &q->delay_cor, q->delay_dist),
> + PSCHED_TADD2(now, tabledist(q->latency, q->jitter,
> + &q->delay_cor, q->delay_dist),
> cb->time_to_send);
> -
> ++q->counter;
> ret = q->qdisc->enqueue(skb, q->qdisc);
> } else {
> - q->counter = 0;
> PSCHED_GET_TIME(cb->time_to_send);
> + q->counter = 0;
> ret = q->qdisc->ops->requeue(skb, q->qdisc);
> }
>
> @@ -351,6 +352,19 @@ static int get_correlation(struct Qdisc
> return 0;
> }
>
> +static int get_reorder(struct Qdisc *sch, const struct rtattr *attr)
> +{
> + struct netem_sched_data *q = qdisc_priv(sch);
> + const struct tc_netem_reorder *r = RTA_DATA(attr);
> +
> + if (RTA_PAYLOAD(attr) != sizeof(*r))
> + return -EINVAL;
> +
> + q->reorder = r->probability;
> + init_crandom(&q->reorder_cor, r->correlation);
> + return 0;
> +}
> +
> static int netem_change(struct Qdisc *sch, struct rtattr *opt)
> {
> struct netem_sched_data *q = qdisc_priv(sch);
> @@ -371,9 +385,15 @@ static int netem_change(struct Qdisc *sc
> q->jitter = qopt->jitter;
> q->limit = qopt->limit;
> q->gap = qopt->gap;
> + q->counter = 0;
> q->loss = qopt->loss;
> q->duplicate = qopt->duplicate;
>
> + /* for compatiablity with earlier versions.
> + * if gap is set, need to assume 100% probablity
> + */
> + q->reorder = ~0;
> +
> /* Handle nested options after initial queue options.
> * Should have put all options in nested format but too late now.
> */
> @@ -395,6 +415,11 @@ static int netem_change(struct Qdisc *sc
> if (ret)
> return ret;
> }
> + if (tb[TCA_NETEM_REORDER-1]) {
> + ret = get_reorder(sch, tb[TCA_NETEM_REORDER-1]);
> + if (ret)
> + return ret;
> + }
> }
>
>
> @@ -412,7 +437,6 @@ static int netem_init(struct Qdisc *sch,
> init_timer(&q->timer);
> q->timer.function = netem_watchdog;
> q->timer.data = (unsigned long) sch;
> - q->counter = 0;
>
> q->qdisc = qdisc_create_dflt(sch->dev, &pfifo_qdisc_ops);
> if (!q->qdisc) {
> @@ -444,6 +468,7 @@ static int netem_dump(struct Qdisc *sch,
> struct rtattr *rta = (struct rtattr *) b;
> struct tc_netem_qopt qopt;
> struct tc_netem_corr cor;
> + struct tc_netem_reorder reorder;
>
> qopt.latency = q->latency;
> qopt.jitter = q->jitter;
> @@ -457,6 +482,11 @@ static int netem_dump(struct Qdisc *sch,
> cor.loss_corr = q->loss_cor.rho;
> cor.dup_corr = q->dup_cor.rho;
> RTA_PUT(skb, TCA_NETEM_CORR, sizeof(cor), &cor);
> +
> + reorder.probability = q->reorder;
> + reorder.correlation = q->reorder_cor.rho;
> + RTA_PUT(skb, TCA_NETEM_REORDER, sizeof(reorder), &reorder);
> +
> rta->rta_len = skb->tail - b;
>
> return skb->len;
>
>
> _______________________________________________
> Netem mailing list
> Netem@lists.osdl.org
> http://lists.osdl.org/mailman/listinfo/netem
>
>
>
--
----------------------------
Julio Kriger
mailto:juliokriger@gmail.com
[-- Attachment #2: tc_patch --]
[-- Type: application/octet-stream, Size: 3661 bytes --]
diff -Naur orig/iproute2-2.6.11-050330/include/linux/pkt_sched.h new/iproute2-2.6.11-050330/include/linux/pkt_sched.h
--- orig/iproute2-2.6.11-050330/include/linux/pkt_sched.h 2005-04-01 19:58:11.000000000 +0000
+++ new/iproute2-2.6.11-050330/include/linux/pkt_sched.h 2005-05-21 11:59:12.000000000 +0000
@@ -427,6 +427,7 @@
TCA_NETEM_UNSPEC,
TCA_NETEM_CORR,
TCA_NETEM_DELAY_DIST,
+ TCA_NETEM_REORDER,
__TCA_NETEM_MAX,
};
@@ -437,7 +438,7 @@
__u32 latency; /* added delay (us) */
__u32 limit; /* fifo limit (packets) */
__u32 loss; /* random packet loss (0=none ~0=100%) */
- __u32 gap; /* re-ordering gap (0 for delay all) */
+ __u32 gap; /* re-ordering gap (0 for none) */
__u32 duplicate; /* random packet dup (0=none ~0=100%) */
__u32 jitter; /* random jitter in latency (us) */
};
@@ -449,6 +450,12 @@
__u32 dup_corr; /* duplicate correlation */
};
+struct tc_netem_reorder
+{
+ __u32 probability;
+ __u32 correlation;
+};
+
#define NETEM_DIST_SCALE 8192
#endif
diff -Naur orig/iproute2-2.6.11-050330/tc/q_netem.c new/iproute2-2.6.11-050330/tc/q_netem.c
--- orig/iproute2-2.6.11-050330/tc/q_netem.c 2005-04-01 19:58:11.000000000 +0000
+++ new/iproute2-2.6.11-050330/tc/q_netem.c 2005-05-21 10:58:33.000000000 +0000
@@ -33,6 +33,7 @@
" [ drop PERCENT [CORRELATION]] \n" \
" [ duplicate PERCENT [CORRELATION]]\n" \
" [ distribution {uniform|normal|pareto|paretonormal} ]\n" \
+" [ reorder PERCENT [CORRELATION]]\n" \
" [ gap PACKETS ]\n");
}
@@ -127,11 +128,13 @@
struct rtattr *tail;
struct tc_netem_qopt opt;
struct tc_netem_corr cor;
+ struct tc_netem_reorder reorder;
__s16 dist_data[MAXDIST];
memset(&opt, 0, sizeof(opt));
opt.limit = 1000;
memset(&cor, 0, sizeof(cor));
+ memset(&reorder, 0, sizeof(reorder));
while (argc > 0) {
if (matches(*argv, "limit") == 0) {
@@ -197,6 +200,19 @@
return -1;
}
}
+ } else if (matches(*argv, "reorder") == 0) {
+ NEXT_ARG();
+ if (get_percent(&reorder.probability, *argv)) {
+ explain1("reorder");
+ return -1;
+ }
+ if (NEXT_IS_NUMBER()) {
+ NEXT_ARG();
+ if (get_percent(&reorder.correlation, *argv)) {
+ explain1("reorder");
+ return -1;
+ }
+ }
} else if (matches(*argv, "distribution") == 0) {
NEXT_ARG();
dist_size = get_distribution(*argv, dist_data);
@@ -217,6 +233,7 @@
addattr_l(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
addattr_l(n, 1024, TCA_NETEM_CORR, &cor, sizeof(cor));
+ addattr_l(n, 1024, TCA_NETEM_REORDER, &reorder, sizeof(reorder));
if (dist_size > 0) {
addattr_l(n, 32768, TCA_NETEM_DELAY_DIST,
@@ -229,7 +246,8 @@
static int netem_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
{
const struct tc_netem_corr *cor = NULL;
- struct tc_netem_qopt qopt;
+ const struct tc_netem_reorder *reorder = NULL;
+ struct tc_netem_qopt qopt;
int len = RTA_PAYLOAD(opt) - sizeof(qopt);
SPRINT_BUF(b1);
@@ -252,6 +270,12 @@
return -1;
cor = RTA_DATA(tb[TCA_NETEM_CORR]);
}
+
+ if (tb[TCA_NETEM_REORDER]) {
+ if (RTA_PAYLOAD(tb[TCA_NETEM_REORDER]) < sizeof(*reorder))
+ return -1;
+ reorder = RTA_DATA(tb[TCA_NETEM_REORDER]);
+ }
}
fprintf(f, "limit %d", qopt.limit);
@@ -279,6 +303,13 @@
fprintf(f, " %s", sprint_percent(cor->dup_corr, b1));
}
+ if (reorder && reorder->probability) {
+ fprintf(f, " reorder %s",
+ sprint_percent(reorder->probability, b1));
+ if (reorder && reorder->correlation)
+ fprintf(f, " %s", sprint_percent(reorder->correlation, b1));
+ }
+
if (qopt.gap)
fprintf(f, " gap %lu", (unsigned long)qopt.gap);
next prev parent reply other threads:[~2005-05-21 15:05 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-05-19 22:12 [PATCH] (3/3) netem: allow random reordering Stephen Hemminger
2005-05-20 20:28 ` [Netem] " Julio Kriger
2005-05-23 17:25 ` Stephen Hemminger
2005-05-21 15:05 ` Julio Kriger [this message]
2005-05-21 23:00 ` Julio Kriger
2005-05-23 17:43 ` [PATCH] netem: fix logic bug in reorder conditional Stephen Hemminger
2005-05-23 20:55 ` Julio Kriger
2005-05-23 21:00 ` Stephen Hemminger
2005-05-24 15:41 ` Julio Kriger
2005-05-24 16:57 ` Stephen Hemminger
2005-05-24 17:27 ` Julio Kriger
2005-05-24 22:26 ` [PATCH] (3/3) netem: allow random reordering (with fix) Stephen Hemminger
2005-05-25 22:08 ` David S. Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=682bc30a050521080551b561d5@mail.gmail.com \
--to=juliokriger@gmail.com \
--cc=davem@davemloft.net \
--cc=netdev@oss.sgi.com \
--cc=netem@osdl.org \
--cc=shemminger@osdl.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).