Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1378519
| From | "Bill Huey (hui)" <bill.huey@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH RFC v1 00/12] Cyclic Scheduler Against RTC |
| Date | 2016-04-14 08:50 +0200 |
| Message-ID | <rnJgd-5Y0-9@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
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
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH RFC v1 00/12] Cyclic Scheduler Against RTC "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-14 08:50 +0200 [PATCH RFC v1 11/12] Cyclic scheduler support "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-14 08:50 +0200 [PATCH RFC v1 04/12] Anonymous struct initialization "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-14 08:50 +0200 [PATCH RFC v1 06/12] Add anonymous struct to sched_rt_entity "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-14 08:50 +0200 [PATCH RFC v1 07/12] kernel/userspace additions for addition ioctl() support for rtc "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-14 08:50 +0200 [PATCH RFC v1 12/12] Cyclic/rtc documentation "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-14 08:50 +0200 [PATCH RFC v1 02/12] Reroute rtc update irqs to the cyclic scheduler handler "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-14 08:50 +0200 [PATCH RFC v1 10/12] Export SCHED_FIFO/RT requeuing functions "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-14 09:00 +0200 [PATCH RFC v1 01/12] Kconfig change "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-14 09:00 +0200 [PATCH RFC v1 05/12] Task tracking per file descriptor "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-14 09:00 +0200 [PATCH RFC v1 03/12] Add cyclic support to rtc-dev.c "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-14 09:00 +0200 [PATCH RFC v1 08/12] Compilation support "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-14 09:00 +0200
csiph-web