All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch 1/2] cls_cgroup: remove unneeded cgroup_lock
@ 2009-05-12 20:47 akpm
  2009-05-17 20:58 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: akpm @ 2009-05-12 20:47 UTC (permalink / raw)
  To: davem; +Cc: netdev, akpm, lizf, lizf, menage

From: Li Zefan <lizf@cn.fujitsu.com>

We can remove this lock here, since we are in cgroup write handler and
thus the cgrp is guaranteed to be valid, and no lock is needed when
writing a u32 variable.

Signed-off-by: Li Zefan <lizf@cn.fujitsuc.com>
Acked-by: Paul Menage <menage@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 net/sched/cls_cgroup.c |    6 ------
 1 file changed, 6 deletions(-)

diff -puN net/sched/cls_cgroup.c~cls_cgroup-remove-unneeded-cgroup_lock net/sched/cls_cgroup.c
--- a/net/sched/cls_cgroup.c~cls_cgroup-remove-unneeded-cgroup_lock
+++ a/net/sched/cls_cgroup.c
@@ -62,13 +62,7 @@ static u64 read_classid(struct cgroup *c
 
 static int write_classid(struct cgroup *cgrp, struct cftype *cft, u64 value)
 {
-	if (!cgroup_lock_live_group(cgrp))
-		return -ENODEV;
-
 	cgrp_cls_state(cgrp)->classid = (u32) value;
-
-	cgroup_unlock();
-
 	return 0;
 }
 
_

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [patch 1/2] cls_cgroup: remove unneeded cgroup_lock
  2009-05-12 20:47 [patch 1/2] cls_cgroup: remove unneeded cgroup_lock akpm
@ 2009-05-17 20:58 ` David Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2009-05-17 20:58 UTC (permalink / raw)
  To: akpm; +Cc: netdev, lizf, lizf, menage

From: akpm@linux-foundation.org
Date: Tue, 12 May 2009 13:47:33 -0700

> From: Li Zefan <lizf@cn.fujitsu.com>
> 
> We can remove this lock here, since we are in cgroup write handler and
> thus the cgrp is guaranteed to be valid, and no lock is needed when
> writing a u32 variable.
> 
> Signed-off-by: Li Zefan <lizf@cn.fujitsuc.com>
> Acked-by: Paul Menage <menage@google.com>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

Applied to net-next-2.6

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-05-17 20:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-05-12 20:47 [patch 1/2] cls_cgroup: remove unneeded cgroup_lock akpm
2009-05-17 20:58 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.