linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RFC v1 00/12] Cyclic Scheduler Against RTC
@ 2016-04-14  6:47 Bill Huey (hui)
  2016-04-14  6:47 ` [PATCH RFC v1 01/12] Kconfig change Bill Huey (hui)
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: Bill Huey (hui) @ 2016-04-14  6:47 UTC (permalink / raw)
  To: Peter Zijlstra, Steven Rostedt, Alessandro Zummo, linux-kernel
  Cc: luca abeni, Juri Lelli, Mike Galbraith, Dario Faggioli, Thomas Gleixner

Hi,

Simple compilation updates here along with an admittance logic clean up.
The test program wasn't working properly without it. Slipped up in the rush
to get it out.

64 bit portability fixes coming next. I made a bogus assumption about
needing an RB tree for admittance. That'll go next.

I'd like to also credit Marco Ballesio from Palm as well for the
multimedia insights.  I omitted that in my first message. Hope the
build bots like these changes :)

bill

---

Bill Huey (hui) (12):
  Kconfig change
  Reroute rtc update irqs to the cyclic scheduler handler
  Add cyclic support to rtc-dev.c
  Anonymous struct initialization
  Task tracking per file descriptor
  Add anonymous struct to sched_rt_entity
  kernel/userspace additions for addition ioctl() support for rtc
  Compilation support
  Add priority support for the cyclic scheduler
  Export SCHED_FIFO/RT requeuing functions
  Cyclic scheduler support
  Cyclic/rtc documentation

 Documentation/scheduler/sched-cyclic-rtc.txt | 468 ++++++++++++++++++++
 drivers/rtc/Kconfig                          |   5 +
 drivers/rtc/class.c                          |   3 +
 drivers/rtc/interface.c                      |  23 +
 drivers/rtc/rtc-dev.c                        | 167 ++++++++
 include/linux/init_task.h                    |  18 +
 include/linux/rtc.h                          |   3 +
 include/linux/sched.h                        |  15 +
 include/uapi/linux/rtc.h                     |   4 +
 kernel/sched/Makefile                        |   1 +
 kernel/sched/core.c                          |  13 +
 kernel/sched/cyclic.c                        | 620 +++++++++++++++++++++++++++
 kernel/sched/cyclic.h                        |  86 ++++
 kernel/sched/cyclic_rt.h                     |   7 +
 kernel/sched/rt.c                            |  41 ++
 15 files changed, 1474 insertions(+)
 create mode 100644 Documentation/scheduler/sched-cyclic-rtc.txt
 create mode 100644 kernel/sched/cyclic.c
 create mode 100644 kernel/sched/cyclic.h
 create mode 100644 kernel/sched/cyclic_rt.h

-- 
2.5.0

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

end of thread, other threads:[~2016-04-14  6:51 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-14  6:47 [PATCH RFC v1 00/12] Cyclic Scheduler Against RTC Bill Huey (hui)
2016-04-14  6:47 ` [PATCH RFC v1 01/12] Kconfig change Bill Huey (hui)
2016-04-14  6:47 ` [PATCH RFC v1 02/12] Reroute rtc update irqs to the cyclic scheduler handler Bill Huey (hui)
2016-04-14  6:47 ` [PATCH RFC v1 03/12] Add cyclic support to rtc-dev.c Bill Huey (hui)
2016-04-14  6:47 ` [PATCH RFC v1 04/12] Anonymous struct initialization Bill Huey (hui)
2016-04-14  6:47 ` [PATCH RFC v1 05/12] Task tracking per file descriptor Bill Huey (hui)
2016-04-14  6:47 ` [PATCH RFC v1 06/12] Add anonymous struct to sched_rt_entity Bill Huey (hui)
2016-04-14  6:47 ` [PATCH RFC v1 07/12] kernel/userspace additions for addition ioctl() support for rtc Bill Huey (hui)
2016-04-14  6:47 ` [PATCH RFC v1 08/12] Compilation support Bill Huey (hui)
2016-04-14  6:47 ` [PATCH RFC v1 09/12] Add priority support for the cyclic scheduler Bill Huey (hui)
2016-04-14  6:47 ` [PATCH RFC v1 10/12] Export SCHED_FIFO/RT requeuing functions Bill Huey (hui)
2016-04-14  6:47 ` [PATCH RFC v1 11/12] Cyclic scheduler support Bill Huey (hui)
2016-04-14  6:47 ` [PATCH RFC v1 12/12] Cyclic/rtc documentation Bill Huey (hui)

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).