All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH, v6 0/3] Introduce timer slack controller
@ 2011-02-14 13:06 ` Kirill A. Shutsemov
  0 siblings, 0 replies; 58+ messages in thread
From: Kirill A. Shutsemov @ 2011-02-14 13:06 UTC (permalink / raw)
  To: Paul Menage, Li Zefan
  Cc: containers, jacob.jun.pan, Arjan van de Ven, linux-kernel,
	Matt Helsley, Andrew Morton, linux-api, Kirill A. Shutemov

From: Kirill A. Shutemov <kirill@shutemov.name>


Changelog:

v6:
 - add documentation
 - use notifier_call_chain() instead of check hook
 - fix validate_change()
 - cleanup
v5:
 - -EBUSY on writing to timer_slack.min_slack_ns/max_slack_ns if a child has
   wider min-max range
v4:
 - hierarchy support
 - drop dummy_timer_slack_check()
 - workaround lockdep false (?) positive
 - allow 0 as timer slack value
v3:
 - rework interface
 - s/EXPORT_SYMBOL/EXPORT_SYMBOL_GPL/
v2:
 - fixed with CONFIG_CGROUP_TIMER_SLACK=y
v1:
 - initial revision

Kirill A. Shutemov (3):
  cgroups: export cgroup_iter_{start,next,end}
  Implement timer slack notifier chain
  cgroups: introduce timer slack controller

 Documentation/cgroups/timer_slack.txt |   93 +++++++++++
 include/linux/cgroup_subsys.h         |    6 +
 include/linux/sched.h                 |    5 +
 init/Kconfig                          |   10 ++
 kernel/Makefile                       |    3 +-
 kernel/cgroup.c                       |    3 +
 kernel/cgroup_timer_slack.c           |  285 +++++++++++++++++++++++++++++++++
 kernel/sys.c                          |    9 +-
 kernel/timer_slack.c                  |   57 +++++++
 9 files changed, 463 insertions(+), 8 deletions(-)
 create mode 100644 Documentation/cgroups/timer_slack.txt
 create mode 100644 kernel/cgroup_timer_slack.c
 create mode 100644 kernel/timer_slack.c

-- 
1.7.4


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

end of thread, other threads:[~2011-02-15  6:05 UTC | newest]

Thread overview: 58+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-14 13:06 [PATCH, v6 0/3] Introduce timer slack controller Kirill A. Shutsemov
2011-02-14 13:06 ` Kirill A. Shutsemov
2011-02-14 13:06 ` [PATCH, v6 1/3] cgroups: export cgroup_iter_{start,next,end} Kirill A. Shutsemov
2011-02-14 13:27   ` Thomas Gleixner
2011-02-14 14:39     ` Kirill A. Shutemov
2011-02-14 14:39       ` Kirill A. Shutemov
2011-02-14 15:09       ` Thomas Gleixner
2011-02-14 15:09         ` Thomas Gleixner
     [not found]       ` <20110214143902.GA3666-oKw7cIdHH8eLwutG50LtGA@public.gmane.org>
2011-02-14 15:09         ` Thomas Gleixner
     [not found]     ` <alpine.LFD.2.00.1102141421500.26192-bi+AKbBUZKagILUCTcTcHdKyNwTtLsGr@public.gmane.org>
2011-02-14 14:39       ` Kirill A. Shutemov
     [not found]   ` <1297688787-3592-2-git-send-email-kirill-oKw7cIdHH8eLwutG50LtGA@public.gmane.org>
2011-02-14 13:27     ` Thomas Gleixner
2011-02-14 13:06 ` [PATCH, v6 2/3] Implement timer slack notifier chain Kirill A. Shutsemov
2011-02-14 13:06   ` Kirill A. Shutsemov
     [not found]   ` <1297688787-3592-3-git-send-email-kirill-oKw7cIdHH8eLwutG50LtGA@public.gmane.org>
2011-02-14 13:32     ` Thomas Gleixner
2011-02-14 13:32       ` Thomas Gleixner
2011-02-14 14:52       ` Kirill A. Shutemov
2011-02-14 14:52         ` Kirill A. Shutemov
2011-02-14 15:16         ` Thomas Gleixner
2011-02-14 15:16           ` Thomas Gleixner
     [not found]         ` <20110214145244.GB3666-oKw7cIdHH8eLwutG50LtGA@public.gmane.org>
2011-02-14 15:16           ` Thomas Gleixner
     [not found]       ` <alpine.LFD.2.00.1102141428080.26192-bi+AKbBUZKagILUCTcTcHdKyNwTtLsGr@public.gmane.org>
2011-02-14 14:52         ` Kirill A. Shutemov
2011-02-14 13:06 ` [PATCH, v6 3/3] cgroups: introduce timer slack controller Kirill A. Shutsemov
2011-02-14 13:59   ` Matt Helsley
2011-02-14 13:59     ` Matt Helsley
2011-02-14 22:59     ` Kirill A. Shutemov
2011-02-14 22:59       ` Kirill A. Shutemov
2011-02-15  0:00       ` Matt Helsley
2011-02-15  0:00         ` Matt Helsley
     [not found]         ` <20110215000055.GR16432-52DBMbEzqgQ/wnmkkaCWp/UQ3DHhIser@public.gmane.org>
2011-02-15  0:10           ` Kirill A. Shutemov
2011-02-15  0:10           ` Kirill A. Shutemov
2011-02-15  0:10           ` Kirill A. Shutemov
2011-02-15  0:10         ` Kirill A. Shutemov
     [not found]       ` <20110214225940.GB6230-oKw7cIdHH8eLwutG50LtGA@public.gmane.org>
2011-02-15  0:00         ` Matt Helsley
     [not found]     ` <20110214135926.GO16432-52DBMbEzqgQ/wnmkkaCWp/UQ3DHhIser@public.gmane.org>
2011-02-14 22:59       ` Kirill A. Shutemov
2011-02-14 14:00   ` Thomas Gleixner
2011-02-14 15:19     ` Kirill A. Shutemov
2011-02-14 15:19       ` Kirill A. Shutemov
     [not found]       ` <20110214151914.GA4210-oKw7cIdHH8eLwutG50LtGA@public.gmane.org>
2011-02-14 17:01         ` Thomas Gleixner
2011-02-14 17:01       ` Thomas Gleixner
2011-02-14 17:01         ` Thomas Gleixner
2011-02-14 22:39         ` Kirill A. Shutemov
2011-02-14 22:39           ` Kirill A. Shutemov
2011-02-14 23:39           ` Matt Helsley
2011-02-14 23:39             ` Matt Helsley
2011-02-15  6:04           ` Thomas Gleixner
2011-02-15  6:04             ` Thomas Gleixner
     [not found]           ` <20110214223939.GA6230-oKw7cIdHH8eLwutG50LtGA@public.gmane.org>
2011-02-14 23:39             ` Matt Helsley
2011-02-15  6:04             ` Thomas Gleixner
     [not found]         ` <alpine.LFD.2.00.1102141753240.26192-bi+AKbBUZKagILUCTcTcHdKyNwTtLsGr@public.gmane.org>
2011-02-14 22:39           ` Kirill A. Shutemov
     [not found]     ` <alpine.LFD.2.00.1102141432440.26192-bi+AKbBUZKagILUCTcTcHdKyNwTtLsGr@public.gmane.org>
2011-02-14 15:19       ` Kirill A. Shutemov
     [not found]   ` <1297688787-3592-4-git-send-email-kirill-oKw7cIdHH8eLwutG50LtGA@public.gmane.org>
2011-02-14 13:59     ` Matt Helsley
2011-02-14 14:00     ` Thomas Gleixner
2011-02-14 13:26 ` [PATCH, v6 0/3] Introduce " Thomas Gleixner
2011-02-14 13:26   ` Thomas Gleixner
     [not found] ` <1297688787-3592-1-git-send-email-kirill-oKw7cIdHH8eLwutG50LtGA@public.gmane.org>
2011-02-14 13:06   ` [PATCH, v6 1/3] cgroups: export cgroup_iter_{start,next,end} Kirill A. Shutsemov
2011-02-14 13:06   ` [PATCH, v6 2/3] Implement timer slack notifier chain Kirill A. Shutsemov
2011-02-14 13:06   ` [PATCH, v6 3/3] cgroups: introduce timer slack controller Kirill A. Shutsemov
2011-02-14 13:26   ` [PATCH, v6 0/3] Introduce " Thomas Gleixner

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.