* [PATCH 2.4]: Remove unnecessary memset in packet schedulers
@ 2004-08-17 0:08 Patrick McHardy
2004-08-17 0:23 ` David S. Miller
0 siblings, 1 reply; 2+ messages in thread
From: Patrick McHardy @ 2004-08-17 0:08 UTC (permalink / raw)
To: David S. Miller; +Cc: netdev
[-- Attachment #1: Type: text/plain, Size: 173 bytes --]
Same patch for 2.4:
This patch removes some more unnecessary memsets in packet
schedulers. The qdisc's private data is already set to 0
in qdisc_create/qdisc_create_dflt.
[-- Attachment #2: 2.4-psched-memsets.diff --]
[-- Type: text/x-patch, Size: 3181 bytes --]
# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
# 2004/08/17 01:23:21+02:00 kaber@coreworks.de
# [PKT_SCHED]: remove unnecessary memsets in packet schedulers
#
# Signed-off-by: Patrick McHardy <kaber@trash.net>
#
# net/sched/sch_ingress.c
# 2004/08/17 01:23:16+02:00 kaber@coreworks.de +0 -5
# [PKT_SCHED]: remove unnecessary memsets in packet schedulers
#
# net/sched/sch_htb.c
# 2004/08/17 01:23:16+02:00 kaber@coreworks.de +0 -1
# [PKT_SCHED]: remove unnecessary memsets in packet schedulers
#
# net/sched/sch_hfsc.c
# 2004/08/17 01:23:16+02:00 kaber@coreworks.de +0 -1
# [PKT_SCHED]: remove unnecessary memsets in packet schedulers
#
# net/sched/sch_dsmark.c
# 2004/08/17 01:23:16+02:00 kaber@coreworks.de +0 -2
# [PKT_SCHED]: remove unnecessary memsets in packet schedulers
#
# net/sched/sch_atm.c
# 2004/08/17 01:23:16+02:00 kaber@coreworks.de +0 -1
# [PKT_SCHED]: remove unnecessary memsets in packet schedulers
#
diff -Nru a/net/sched/sch_atm.c b/net/sched/sch_atm.c
--- a/net/sched/sch_atm.c 2004-08-17 01:24:28 +02:00
+++ b/net/sched/sch_atm.c 2004-08-17 01:24:28 +02:00
@@ -566,7 +566,6 @@
struct atm_qdisc_data *p = PRIV(sch);
DPRINTK("atm_tc_init(sch %p,[qdisc %p],opt %p)\n",sch,p,opt);
- memset(p,0,sizeof(*p));
p->flows = &p->link;
if(!(p->link.q = qdisc_create_dflt(sch->dev,&pfifo_qdisc_ops)))
p->link.q = &noop_qdisc;
diff -Nru a/net/sched/sch_dsmark.c b/net/sched/sch_dsmark.c
--- a/net/sched/sch_dsmark.c 2004-08-17 01:24:28 +02:00
+++ b/net/sched/sch_dsmark.c 2004-08-17 01:24:28 +02:00
@@ -329,8 +329,6 @@
!tb[TCA_DSMARK_INDICES-1] ||
RTA_PAYLOAD(tb[TCA_DSMARK_INDICES-1]) < sizeof(__u16))
return -EINVAL;
- memset(p,0,sizeof(*p));
- p->filter_list = NULL;
p->indices = *(__u16 *) RTA_DATA(tb[TCA_DSMARK_INDICES-1]);
if (!p->indices)
return -EINVAL;
diff -Nru a/net/sched/sch_hfsc.c b/net/sched/sch_hfsc.c
--- a/net/sched/sch_hfsc.c 2004-08-17 01:24:28 +02:00
+++ b/net/sched/sch_hfsc.c 2004-08-17 01:24:28 +02:00
@@ -1525,7 +1525,6 @@
return -EINVAL;
qopt = RTA_DATA(opt);
- memset(q, 0, sizeof(struct hfsc_sched));
sch->stats.lock = &sch->dev->queue_lock;
q->defcls = qopt->defcls;
diff -Nru a/net/sched/sch_htb.c b/net/sched/sch_htb.c
--- a/net/sched/sch_htb.c 2004-08-17 01:24:28 +02:00
+++ b/net/sched/sch_htb.c 2004-08-17 01:24:28 +02:00
@@ -1186,7 +1186,6 @@
HTB_VER >> 16,HTB_VER & 0xffff,gopt->version);
return -EINVAL;
}
- memset(q,0,sizeof(*q));
q->debug = gopt->debug;
HTB_DBG(0,1,"htb_init sch=%p handle=%X r2q=%d\n",sch,sch->handle,gopt->rate2quantum);
diff -Nru a/net/sched/sch_ingress.c b/net/sched/sch_ingress.c
--- a/net/sched/sch_ingress.c 2004-08-17 01:24:28 +02:00
+++ b/net/sched/sch_ingress.c 2004-08-17 01:24:28 +02:00
@@ -254,8 +254,6 @@
}
DPRINTK("ingress_init(sch %p,[qdisc %p],opt %p)\n",sch,p,opt);
- memset(p, 0, sizeof(*p));
- p->filter_list = NULL;
p->q = &noop_qdisc;
MOD_INC_USE_COUNT;
return 0;
@@ -296,9 +294,6 @@
p->filter_list = tp->next;
tcf_destroy(tp);
}
- memset(p, 0, sizeof(*p));
- p->filter_list = NULL;
-
#if 0
/* for future use */
qdisc_destroy(p->q);
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2004-08-17 0:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-17 0:08 [PATCH 2.4]: Remove unnecessary memset in packet schedulers Patrick McHardy
2004-08-17 0:23 ` David S. Miller
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).