Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1376480
| Path | csiph.com!news.freedyn.net!aioe.org!bofh.it!news.nic.it!robomod |
|---|---|
| From | "Bill Huey (hui)" <bill.huey@gmail.com> |
| Newsgroups | linux.kernel |
| Subject | [PATCH RFC v0 08/12] Compilation support |
| Date | Tue, 12 Apr 2016 07:40:02 +0200 |
| Message-ID | <rmZdo-1UI-13@gated-at.bofh.it> (permalink) |
| References | <rmZ3H-1MB-3@gated-at.bofh.it> |
| X-Original-To | Peter Zijlstra <a.p.zijlstra@chello.nl>, Steven Rostedt <rostedt@goodmis.org>, linux-kernel@vger.kernel.org |
| Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=L/tLmGrty+YtQRfb356Z1Z2JMDp6ux0HgOiwou6IyxA=; b=zxk9yi0w40gRhR32q0ZzC6vz/suIGbE1xp74EpT1ww0zKJUIhvU9iijxk4Sp1TpcGx HW1wFG/9wO7g2d0zt55EPAqL2O3hUikHRY0wX6xcHd6fuwAohL+n8T9wAUVS7zj97kW8 xWZ1bgi8r0pebf4tzHG1e4NP1FzeXD0y++wD3Kt8SaGht6jX0Af9Xrt8evdkN+CcKzSD zBl63xtSt4xaV3QISBG7EfvLd/hySa0GtNkVvouG88gZyJF8xxkY4cKNwRocW1pkZwgL GtwvAjIy4xrP1ymA33e09/e75IZWT/XiGkn+uE6cvCuNl2AtIxijuThzHwT2DQEPWakw mRCA== |
| X-Google-Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=L/tLmGrty+YtQRfb356Z1Z2JMDp6ux0HgOiwou6IyxA=; b=HT8z3Irpp2UtSdR0F6uk9gWw2n1yCQpMdywZgQTafbR5/U1ty/NiZvQtwmY/7MR1O6 yBwYc1DZpl/Wmv37/M9C3vWYFSAQMrW9SNR6wmoV93iqiAJREIJMIRmFxu/PbPmFz6zG txatIdYnN70LD65UnGizTCopwSNxG/7auj5apXjP2OB5rUSgR9AoQNhuM5uTe0xZZpG8 HQGOlkL+5qXwuEr/jfF3zCTKHOS3fGXq3hksjxhKCxErzmumygcsHPan97VxC6TAD6Rw 9kdN4VC4kqz4E8rYWiznqug4bcHFpaVD5yAk1f4P6pEkFWfAWZC/syoh6voPtX/t/MaZ 1vCg== |
| X-Gm-Message-State | AOPr4FVjB/KMDJROjznSg3Oc/euF+cpCKKmbopdPTWTBeX1Dm67qrpcDxWdg7cIN9XVddA== |
| X-Received | by 10.60.97.38 with SMTP id dx6mr578984oeb.5.1460438973388; Mon, 11 Apr 2016 22:29:33 -0700 (PDT) |
| X-Mailer | git-send-email 2.5.0 |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 19 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | Dario Faggioli <raistlin@linux.it>, Alessandro Zummo <a.zummo@towertech.it>, Thomas Gleixner <tglx@linutronix.de>, KY Srinivasan <kys@microsoft.com>, Amir Frenkel <frenkel.amir@gmail.com>, Bdale Garbee <bdale@gag.com> |
| X-Original-Date | Mon, 11 Apr 2016 22:29:16 -0700 |
| X-Original-Message-ID | <1460438960-32060-9-git-send-email-bill.huey@gmail.com> |
| X-Original-References | <1460438960-32060-1-git-send-email-bill.huey@gmail.com> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1376480 |
Show key headers only | View raw
Makefile changes to support the menuconfig option Signed-off-by: Bill Huey (hui) <bill.huey@gmail.com> --- kernel/sched/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/sched/Makefile b/kernel/sched/Makefile index 302d6eb..df8e131 100644 --- a/kernel/sched/Makefile +++ b/kernel/sched/Makefile @@ -19,4 +19,5 @@ obj-$(CONFIG_SCHED_AUTOGROUP) += auto_group.o obj-$(CONFIG_SCHEDSTATS) += stats.o obj-$(CONFIG_SCHED_DEBUG) += debug.o obj-$(CONFIG_CGROUP_CPUACCT) += cpuacct.o +obj-$(CONFIG_RTC_CYCLIC) += cyclic.o obj-$(CONFIG_CPU_FREQ) += cpufreq.o -- 2.5.0
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH RFC v0 00/12] Cyclic Scheduler Against RTC "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-12 07:30 +0200
[PATCH RFC v0 01/12] Kconfig change "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-12 07:40 +0200
[PATCH RFC v0 03/12] Add cyclic support to rtc-dev.c "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-12 07:40 +0200
[PATCH RFC v0 10/12] Export SCHED_FIFO/RT requeuing functions "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-12 07:40 +0200
[PATCH RFC v0 07/12] kernel/userspace additions for addition ioctl() support for rtc "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-12 07:40 +0200
[PATCH RFC v0 08/12] Compilation support "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-12 07:40 +0200
[PATCH RFC v0 02/12] Reroute rtc update irqs to the cyclic scheduler handler "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-12 07:40 +0200
[PATCH RFC v0 12/12] Cyclic/rtc documentation "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-12 07:40 +0200
[PATCH RFC v0 06/12] Add anonymous struct to sched_rt_entity "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-12 07:40 +0200
[PATCH RFC v0 05/12] Task tracking per file descriptor "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-12 07:40 +0200
Re: [PATCH RFC v0 00/12] Cyclic Scheduler Against RTC Mike Galbraith <umgwanakikbuti@gmail.com> - 2016-04-12 08:00 +0200
Re: [PATCH RFC v0 00/12] Cyclic Scheduler Against RTC Mike Galbraith <umgwanakikbuti@gmail.com> - 2016-04-12 08:10 +0200
Re: [PATCH RFC v0 00/12] Cyclic Scheduler Against RTC Juri Lelli <juri.lelli@arm.com> - 2016-04-13 11:00 +0200
Re: [PATCH RFC v0 00/12] Cyclic Scheduler Against RTC "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-13 11:40 +0200
Re: [PATCH RFC v0 00/12] Cyclic Scheduler Against RTC Juri Lelli <juri.lelli@arm.com> - 2016-04-13 12:10 +0200
Re: [PATCH RFC v0 00/12] Cyclic Scheduler Against RTC "Bill Huey (hui)" <bill.huey@gmail.com> - 2016-04-13 12:40 +0200
csiph-web