* [PATCH PKT_SCHED 17/22]: tc actions: remove unnecessary locking for refcnt changes
@ 2005-01-10 19:38 Patrick McHardy
0 siblings, 0 replies; only message in thread
From: Patrick McHardy @ 2005-01-10 19:38 UTC (permalink / raw)
To: jamal; +Cc: Maillist netdev
[-- Attachment #1: Type: text/plain, Size: 377 bytes --]
BTW: This part in pkt_act.h looks kind of strange:
tcf_hash_check:
if (bind) {
p->bindcnt++;
p->refcnt++;
}
but tcf_hash_release:
if (bind) {
p->bindcnt--;
}
p->refcnt--;
Shouldn't refcnt be incremented unconditionally ?
[-- Attachment #2: 17.diff --]
[-- Type: text/x-patch, Size: 2033 bytes --]
# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
# 2005/01/10 03:14:38+01:00 kaber@coreworks.de
# [PKT_SCHED]: tc actions: remove unnecessary locking for refcnt changes
#
# refcnt/bindcnt are only used in user context under the rtnl, no additional
# locking is necessary. Besides it was only done in some places, so kill it.
#
# Signed-off-by: Patrick McHardy <kaber@trash.net>
#
# net/sched/police.c
# 2005/01/10 03:14:31+01:00 kaber@coreworks.de +0 -2
# [PKT_SCHED]: tc actions: remove unnecessary locking for refcnt changes
#
# refcnt/bindcnt are only used in user context under the rtnl, no additional
# locking is necessary. Besides it was only done in some places, so kill it.
#
# Signed-off-by: Patrick McHardy <kaber@trash.net>
#
# include/net/pkt_act.h
# 2005/01/10 03:14:31+01:00 kaber@coreworks.de +1 -3
# [PKT_SCHED]: tc actions: remove unnecessary locking for refcnt changes
#
# refcnt/bindcnt are only used in user context under the rtnl, no additional
# locking is necessary. Besides it was only done in some places, so kill it.
#
# Signed-off-by: Patrick McHardy <kaber@trash.net>
#
diff -Nru a/include/net/pkt_act.h b/include/net/pkt_act.h
--- a/include/net/pkt_act.h 2005-01-10 06:22:58 +01:00
+++ b/include/net/pkt_act.h 2005-01-10 06:22:58 +01:00
@@ -222,13 +222,11 @@
{
struct tcf_st *p = NULL;
if (index && (p = tcf_hash_lookup(index)) != NULL) {
- spin_lock(&p->lock);
if (bind) {
p->bindcnt++;
p->refcnt++;
}
- spin_unlock(&p->lock);
- a->priv = (void *) p;
+ a->priv = p;
}
return p;
}
diff -Nru a/net/sched/police.c b/net/sched/police.c
--- a/net/sched/police.c 2005-01-10 06:22:58 +01:00
+++ b/net/sched/police.c 2005-01-10 06:22:58 +01:00
@@ -189,12 +189,10 @@
if (parm->index && (p = tcf_police_lookup(parm->index)) != NULL) {
a->priv = p;
- spin_lock(&p->lock);
if (bind) {
p->bindcnt += 1;
p->refcnt += 1;
}
- spin_unlock(&p->lock);
if (ovr)
goto override;
return ret;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-01-10 19:38 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-10 19:38 [PATCH PKT_SCHED 17/22]: tc actions: remove unnecessary locking for refcnt changes Patrick McHardy
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).