* [PATCH 2.6]: Remove unnecessary memset in packet schedulers
@ 2004-08-17 0:07 Patrick McHardy
2004-08-17 0:22 ` David S. Miller
0 siblings, 1 reply; 2+ messages in thread
From: Patrick McHardy @ 2004-08-17 0:07 UTC (permalink / raw)
To: David S. Miller; +Cc: netdev
[-- Attachment #1: Type: text/plain, Size: 153 bytes --]
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.6-psched-memsets.diff --]
[-- Type: text/x-patch, Size: 3401 bytes --]
# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
# 2004/08/17 01:30:30+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:30:10+02:00 kaber@coreworks.de +0 -8
# [PKT_SCHED]: remove unnecessary memsets in packet schedulers
#
# net/sched/sch_htb.c
# 2004/08/17 01:30:10+02:00 kaber@coreworks.de +0 -1
# [PKT_SCHED]: remove unnecessary memsets in packet schedulers
#
# net/sched/sch_hfsc.c
# 2004/08/17 01:30:10+02:00 kaber@coreworks.de +0 -1
# [PKT_SCHED]: remove unnecessary memsets in packet schedulers
#
# net/sched/sch_dsmark.c
# 2004/08/17 01:30:10+02:00 kaber@coreworks.de +0 -2
# [PKT_SCHED]: remove unnecessary memsets in packet schedulers
#
# net/sched/sch_atm.c
# 2004/08/17 01:30:10+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:35:21 +02:00
+++ b/net/sched/sch_atm.c 2004-08-17 01:35:21 +02:00
@@ -573,7 +573,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:35:21 +02:00
+++ b/net/sched/sch_dsmark.c 2004-08-17 01:35:21 +02:00
@@ -331,8 +331,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:35:21 +02:00
+++ b/net/sched/sch_hfsc.c 2004-08-17 01:35:21 +02:00
@@ -1553,7 +1553,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:35:21 +02:00
+++ b/net/sched/sch_htb.c 2004-08-17 01:35:21 +02:00
@@ -1277,7 +1277,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:35:21 +02:00
+++ b/net/sched/sch_ingress.c 2004-08-17 01:35:21 +02:00
@@ -289,9 +289,6 @@
#endif
#endif
- if (NULL == p)
- goto error;
-
#ifndef CONFIG_NET_CLS_ACT
#ifdef CONFIG_NETFILTER
if (!nf_registered) {
@@ -305,8 +302,6 @@
#endif
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;
return 0;
error:
@@ -346,9 +341,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
* Re: [PATCH 2.6]: Remove unnecessary memset in packet schedulers
2004-08-17 0:07 [PATCH 2.6]: Remove unnecessary memset in packet schedulers Patrick McHardy
@ 2004-08-17 0:22 ` David S. Miller
0 siblings, 0 replies; 2+ messages in thread
From: David S. Miller @ 2004-08-17 0:22 UTC (permalink / raw)
To: Patrick McHardy; +Cc: netdev
On Tue, 17 Aug 2004 02:07:32 +0200
Patrick McHardy <kaber@trash.net> wrote:
> 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.
Applied.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2004-08-17 0:22 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:07 [PATCH 2.6]: Remove unnecessary memset in packet schedulers Patrick McHardy
2004-08-17 0:22 ` 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).