linux-api.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Chris Metcalf <cmetcalf@ezchip.com>
To: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Gilad Ben Yossef <giladb@ezchip.com>,
	Steven Rostedt <rostedt@goodmis.org>,
	Ingo Molnar <mingo@kernel.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Rik van Riel <riel@redhat.com>, Tejun Heo <tj@kernel.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>,
	Christoph Lameter <cl@linux.com>,
	Viresh Kumar <viresh.kumar@linaro.org>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will.deacon@arm.com>,
	Andy Lutomirski <luto@amacapital.net>,
	linux-doc@vger.kernel.org, linux-api@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v8 04/14] task_isolation: add initial support
Date: Thu, 11 Feb 2016 14:58:12 -0500	[thread overview]
Message-ID: <56BCE7D4.1010504@ezchip.com> (raw)
In-Reply-To: <20160128163822.GD25866@lerouge>

On 01/28/2016 11:38 AM, Frederic Weisbecker wrote:
> On Tue, Oct 27, 2015 at 12:40:29PM -0400, Chris Metcalf wrote:
>> On 10/21/2015 12:12 PM, Frederic Weisbecker wrote:
>>> On Tue, Oct 20, 2015 at 04:36:02PM -0400, Chris Metcalf wrote:
>>>> +/*
>>>> + * This routine controls whether we can enable task-isolation mode.
>>>> + * The task must be affinitized to a single nohz_full core or we will
>>>> + * return EINVAL.  Although the application could later re-affinitize
>>>> + * to a housekeeping core and lose task isolation semantics, this
>>>> + * initial test should catch 99% of bugs with task placement prior to
>>>> + * enabling task isolation.
>>>> + */
>>>> +int task_isolation_set(unsigned int flags)
>>>> +{
>>>> +	if (cpumask_weight(tsk_cpus_allowed(current)) != 1 ||
>>> I think you'll have to make sure the task can not be concurrently reaffined
>>> to more CPUs. This may involve setting task_isolation_flags under the runqueue
>>> lock and thus move that tiny part to the scheduler code. And then we must forbid
>>> changing the affinity while the task has the isolation flag, or deactivate the flag.
>>>
>>> In any case this needs some synchronization.
>> Well, as the comment says, this is not intended as a hard guarantee.
>> As written, it might race with a concurrent sched_setaffinity(), but
>> then again, it also is totally OK as written for sched_setaffinity() to
>> change it away after the prctl() is complete, so it's not necessary to
>> do any explicit synchronization.
>>
>> This harks back again to the whole "polite vs aggressive" issue with
>> how we envision task isolation.
>>
>> The "polite" model basically allows you to set up the conditions for
>> task isolation to be useful, and then if they are useful, great! What
>> you're suggesting here is a bit more of the "aggressive" model, where
>> we actually fail sched_setaffinity() either for any cpumask after
>> task isolation is set, or perhaps just for resetting it to housekeeping
>> cores.  (Note that we could in principle use PF_NO_SETAFFINITY to
>> just hard fail all attempts to call sched_setaffinity once we enable
>> task isolation, so we don't have to add more mechanism on that path.)
>>
>> I'm a little reluctant to ever fail sched_setaffinity() based on the
>> task isolation status with the current "polite" model, since an
>> unprivileged application can set up for task isolation, and then
>> presumably no one can override it via sched_setaffinity() from another
>> task.  (I suppose you could do some kind of permissions-based thing
>> where root can always override it, or some suitable capability, etc.,
>> but I feel like that gets complicated quickly, for little benefit.)
>>
>> The alternative you mention is that if the task is re-affinitized, it
>> loses its task-isolation status, and that also seems like an unfortunate
>> API, since if you are setting it with prctl(), it's really cleanest just to
>> only be able to unset it with prctl() as well.
>>
>> I think given the current "polite" API, the only question is whether in
>> fact *no* initial test is the best thing, or if an initial test (as
>> introduced
>> in the v8 version) is defensible just as a help for catching an obvious
>> mistake in setting up your task isolation.  I decided the advantage
>> of catching the mistake were more important than the "API purity"
>> of being 100% consistent in how we handled the interactions between
>> affinity and isolation, but I am certainly open to argument on that one.
>>
>> Meanwhile I think it still feels like the v8 code is the best compromise.
> So what is the way to deal with a migration for example? When the task wakes
> up on the non-isolated CPU, it gets warned or killed?

Good question!  We can only enable task isolation on an isolcpus core,
so it must be a manual migration, either externally, or by the program
itself calling sched_setaffinity().  So at some level, it's just an
application bug.  In the current code, if you have enabled STRICT mode task
isolation, the process will get killed since it has to go through the kernel
to migrate.  If not in STRICT mode, then it will hang until it is manually
killed since full dynticks will never get turned on once it wakes up on a
non-isolated CPU - unless it is then manually migrated back to a proper
task-isolation cpu.  And, perhaps the intent was to do some cpu offlining
and rearrange the task isolation tasks, and therefore that makes sense?

So, maybe that semantics is good enough!?  I'm not completely sure, but
I think I'm willing to claim that for something this much of a corner
case, it's probably reasonable.

>>>> +	/* If the tick is running, request rescheduling; we're not ready. */
>>>> +	if (!tick_nohz_tick_stopped()) {
>>> Note that this function tells whether the tick is in dynticks mode, which means
>>> the tick currently only run on-demand. But it's not necessarily completely stopped.
>> I think in fact this is the semantics we want (and that people requested),
>> e.g. if the user requests an alarm(), we may still be ticking even though
>> tick_nohz_tick_stopped() is true, but that test is still the right condition
>> to use to return to user space, since the user explicitly requested the
>> alarm.
> It seems to break the initial purpose. If your task really doesn't want to be
> disturbed, it simply can't arm a timer. tick_nohz_tick_stopped() is really no
> other indication than the CPU trying to do its best to delay the next tick. But
> that next tick could be re-armed every two msecs for example. Worse yet, if the
> tick has been stopped and finally issues a timer that rearms itself every 1 msec,
> tick_nohz_tick_stopped() will still be true.

This is definitely another grey area.  Certainly if there's a kernel timer that
rearms itself every 1 ms, we're in trouble.  (And the existing mechanisms of STRICT
mode and task_isolation_debug would help.)  But as far as just regular userspace
arming a timer via syscall, then if your hardware had a 64-bit down counter
for timer interrupts, for example, you might well be able to do something like
say "every night at midnight, I can stop driving packets and do system maintenance,
so I'd like the kernel to interrupt me".  In this case some kind of alarm() would
not be incompatible with task isolation.  I admit this is kind of an extreme
case; and certainly in STRICT mode, as currently written, you'd get a signal if
you tried to do this, so you'd have to run with STRICT mode off.

However, the reason I specifically decided to do this is community feedback.  In
http://lkml.kernel.org/r/CALCETrVdZxkEeQd3=V6p_yLYL7T83Y3WfnhfVGi3GwTxF+vPQg@mail.gmail.com,
on 9/28/2015, Andy Lutomirski wrote:

> Why are we treating alarms as something that should defer entry to
> userspace?  I think it would be entirely reasonable to set an alarm
> for ten minutes, ask for isolation, and then think hard for ten
> minutes.
>
> [...]
>
> ISTM something's suboptimal with the inner workings of all this if
> task_isolation_enter needs to sleep to wait for an event that isn't
> scheduled for the immediate future (e.g. already queued up as an
> interrupt).

-- 
Chris Metcalf, EZChip Semiconductor
http://www.ezchip.com


  reply	other threads:[~2016-02-11 19:58 UTC|newest]

Thread overview: 159+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-08 17:58 [PATCH 0/6] support "dataplane" mode for nohz_full Chris Metcalf
2015-05-08 17:58 ` [PATCH 1/6] nohz_full: add support for "dataplane" mode Chris Metcalf
2015-05-08 17:58 ` [PATCH 4/6] nohz: support PR_DATAPLANE_QUIESCE Chris Metcalf
     [not found]   ` <1431107927-13998-5-git-send-email-cmetcalf-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-05-12  9:33     ` Peter Zijlstra
     [not found]       ` <20150512093349.GH21418-ndre7Fmf5hadTX5a5knrm8zTDFooKrT+cvkQGrU6aU0@public.gmane.org>
2015-05-12  9:50         ` Ingo Molnar
     [not found]           ` <20150512095030.GD11477-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-05-12 10:38             ` Peter Zijlstra
2015-05-12 12:52               ` Ingo Molnar
2015-05-13  4:35                 ` Andy Lutomirski
2015-05-13 17:51                   ` Paul E. McKenney
     [not found]                     ` <20150513175150.GL6776-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
2015-05-14 20:55                       ` Chris Metcalf
2015-05-14 20:54       ` Chris Metcalf
2015-05-08 17:58 ` [PATCH 5/6] nohz: support PR_DATAPLANE_STRICT mode Chris Metcalf
2015-05-09  7:28   ` Andy Lutomirski
2015-05-09 10:37     ` Gilad Ben Yossef
     [not found]     ` <CALCETrUoptUPVUxL87jUgry1pFac0rDPpnZ790zDKyK4a0FARA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-05-11 19:13       ` Chris Metcalf
2015-05-11 22:28         ` Andy Lutomirski
2015-05-12 21:06           ` Chris Metcalf
2015-05-12 22:23             ` Andy Lutomirski
2015-05-15 21:25               ` Chris Metcalf
2015-05-12  9:38   ` Peter Zijlstra
     [not found]     ` <20150512093858.GI21418-ndre7Fmf5hadTX5a5knrm8zTDFooKrT+cvkQGrU6aU0@public.gmane.org>
2015-05-12 13:20       ` Paul E. McKenney
     [not found] ` <1431107927-13998-1-git-send-email-cmetcalf-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-05-08 21:18   ` [PATCH 0/6] support "dataplane" mode for nohz_full Andrew Morton
2015-05-08 21:22     ` Steven Rostedt
     [not found]       ` <20150508172210.559830a9-f9ZlEuEWxVcJvu8Pb33WZ0EMvNT87kid@public.gmane.org>
2015-05-08 23:11         ` Chris Metcalf
2015-05-08 23:19           ` Andrew Morton
2015-05-09  7:05             ` Ingo Molnar
     [not found]               ` <20150509070538.GA9413-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-05-09  7:19                 ` Andy Lutomirski
     [not found]                   ` <CALCETrXavog018+xLacXeBLaMLjWtqk0bMU5fUzZ+pkwgu7Y3A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-05-11 19:54                     ` Chris Metcalf
     [not found]                       ` <555108FC.3060200-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-05-11 22:15                         ` Andy Lutomirski
     [not found]                   ` <55510885.9070101@ezchip.com>
2015-05-12 13:18                     ` Paul E. McKenney
2015-05-09  7:19                 ` Mike Galbraith
     [not found]                   ` <1431155983.3209.131.camel-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-05-09 10:18                     ` Gilad Ben Yossef
2015-05-11 12:57                 ` Steven Rostedt
2015-05-11 15:36                   ` Frederic Weisbecker
2015-05-11 19:19                     ` Mike Galbraith
2015-05-11 19:25                       ` Chris Metcalf
2015-05-12  1:47                         ` Mike Galbraith
2015-05-12  4:35                           ` Mike Galbraith
2015-05-11 17:19                   ` Paul E. McKenney
2015-05-11 17:27                     ` Andrew Morton
2015-05-11 17:33                       ` Frederic Weisbecker
2015-05-11 18:00                         ` Steven Rostedt
2015-05-11 18:09                           ` Chris Metcalf
     [not found]                             ` <5550F077.6030906-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-05-11 18:36                               ` Steven Rostedt
2015-05-12  9:10                             ` CONFIG_ISOLATION=y (was: [PATCH 0/6] support "dataplane" mode for nohz_full) Ingo Molnar
     [not found]                               ` <20150512091032.GA10138-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-05-12 11:48                                 ` Peter Zijlstra
2015-05-12 12:34                                   ` Ingo Molnar
     [not found]                                     ` <20150512123440.GA16959-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-05-12 12:39                                       ` Peter Zijlstra
     [not found]                                         ` <20150512123912.GO21418-ndre7Fmf5hadTX5a5knrm8zTDFooKrT+cvkQGrU6aU0@public.gmane.org>
2015-05-12 12:43                                           ` Ingo Molnar
2015-05-12 15:36                                     ` Frederic Weisbecker
2015-05-12 21:05                               ` CONFIG_ISOLATION=y Chris Metcalf
     [not found]                   ` <20150511085759.71deeb64-f9ZlEuEWxVcJvu8Pb33WZ0EMvNT87kid@public.gmane.org>
2015-05-12 10:46                     ` [PATCH 0/6] support "dataplane" mode for nohz_full Peter Zijlstra
2015-05-15 15:10                       ` Chris Metcalf
2015-05-15 21:26   ` [PATCH v2 0/5] support "cpu_isolated" " Chris Metcalf
2015-05-15 21:27     ` [PATCH v2 1/5] nohz_full: add support for "cpu_isolated" mode Chris Metcalf
2015-05-15 21:27       ` [PATCH v2 2/5] nohz: support PR_CPU_ISOLATED_STRICT mode Chris Metcalf
     [not found]       ` <1431725251-20943-1-git-send-email-cmetcalf-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-05-15 21:27         ` [PATCH v2 3/5] nohz: cpu_isolated strict mode configurable signal Chris Metcalf
2015-05-15 22:17         ` [PATCH v2 1/5] nohz_full: add support for "cpu_isolated" mode Thomas Gleixner
2015-05-28 20:38           ` Chris Metcalf
     [not found]     ` <1431725178-20876-1-git-send-email-cmetcalf-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-06-03 15:29       ` [PATCH v3 0/5] support "cpu_isolated" mode for nohz_full Chris Metcalf
     [not found]         ` <1433345365-29506-1-git-send-email-cmetcalf-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-06-03 15:29           ` [PATCH v3 1/5] nohz_full: add support for "cpu_isolated" mode Chris Metcalf
2015-06-03 15:29           ` [PATCH v3 3/5] nohz: cpu_isolated strict mode configurable signal Chris Metcalf
2015-06-03 15:29         ` [PATCH v3 2/5] nohz: support PR_CPU_ISOLATED_STRICT mode Chris Metcalf
2015-07-13 19:57         ` [PATCH v4 0/5] support "cpu_isolated" mode for nohz_full Chris Metcalf
2015-07-13 19:57           ` [PATCH v4 1/5] nohz_full: add support for "cpu_isolated" mode Chris Metcalf
2015-07-13 20:40             ` Andy Lutomirski
2015-07-13 21:01               ` Chris Metcalf
2015-07-13 21:45                 ` Andy Lutomirski
2015-07-21 19:10                   ` Chris Metcalf
2015-07-21 19:26                     ` Andy Lutomirski
     [not found]                       ` <CALCETrVoHvofNHG81Q2Vb2i1qc7f2dy=qgkyb5NWNfUgYxhE8Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-07-21 20:36                         ` Paul E. McKenney
2015-07-22 13:57                           ` Christoph Lameter
     [not found]                             ` <alpine.DEB.2.11.1507220856030.17411-wcBtFHqTun5QOdAKl3ChDw@public.gmane.org>
2015-07-22 19:28                               ` Paul E. McKenney
2015-07-22 20:02                                 ` Christoph Lameter
2015-07-24 20:21                                   ` Chris Metcalf
2015-07-24 20:22                       ` Chris Metcalf
2015-07-24 14:03                     ` Frederic Weisbecker
2015-07-24 20:19                       ` Chris Metcalf
2015-07-24 13:27             ` Frederic Weisbecker
2015-07-24 20:21               ` Chris Metcalf
2015-07-13 19:57           ` [PATCH v4 2/5] nohz: support PR_CPU_ISOLATED_STRICT mode Chris Metcalf
     [not found]             ` <1436817481-8732-3-git-send-email-cmetcalf-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-07-13 21:47               ` Andy Lutomirski
     [not found]                 ` <CALCETrUvg+Dix=jG2_1J=mgQC+uRk4dthCYDcb4E5ooEfQjqtQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-07-21 19:34                   ` Chris Metcalf
     [not found]                     ` <55AE9EAC.4010202-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-07-21 19:42                       ` Andy Lutomirski
2015-07-24 20:29                         ` Chris Metcalf
2015-07-13 19:57           ` [PATCH v4 3/5] nohz: cpu_isolated strict mode configurable signal Chris Metcalf
     [not found]           ` <1436817481-8732-1-git-send-email-cmetcalf-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-07-28 19:49             ` [PATCH v5 0/6] support "cpu_isolated" mode for nohz_full Chris Metcalf
2015-07-28 19:49               ` [PATCH v5 2/6] cpu_isolated: add initial support Chris Metcalf
     [not found]                 ` <1438112980-9981-3-git-send-email-cmetcalf-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-08-12 16:00                   ` Frederic Weisbecker
2015-08-12 18:22                     ` Chris Metcalf
     [not found]                       ` <55CB8ED1.6030806-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-08-26 15:26                         ` Frederic Weisbecker
2015-08-26 15:55                           ` Chris Metcalf
2015-07-28 19:49               ` [PATCH v5 3/6] cpu_isolated: support PR_CPU_ISOLATED_STRICT mode Chris Metcalf
2015-07-28 19:49               ` [PATCH v5 4/6] cpu_isolated: provide strict mode configurable signal Chris Metcalf
2015-08-25 19:55               ` [PATCH v6 0/6] support "task_isolated" mode for nohz_full Chris Metcalf
2015-08-25 19:55                 ` [PATCH v6 2/6] task_isolation: add initial support Chris Metcalf
2015-08-25 19:55                 ` [PATCH v6 3/6] task_isolation: support PR_TASK_ISOLATION_STRICT mode Chris Metcalf
2015-08-26 10:36                   ` Will Deacon
2015-08-26 15:10                     ` Chris Metcalf
     [not found]                       ` <55DDD6EA.3070307-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-09-02 10:13                         ` Will Deacon
2015-08-28 15:31                     ` [PATCH v6.1 " Chris Metcalf
     [not found]                 ` <1440532555-15492-1-git-send-email-cmetcalf-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-08-25 19:55                   ` [PATCH v6 4/6] task_isolation: provide strict mode configurable signal Chris Metcalf
2015-08-28 19:22                     ` Andy Lutomirski
     [not found]                       ` <20150902101347.GF25720-5wv7dgnIgG8@public.gmane.org>
2015-09-02 18:38                         ` [PATCH v6.2 3/6] task_isolation: support PR_TASK_ISOLATION_STRICT mode Chris Metcalf
2015-09-28 15:17                 ` [PATCH v7 00/11] support "task_isolated" mode for nohz_full Chris Metcalf
2015-09-28 15:17                   ` [PATCH v7 02/11] task_isolation: add initial support Chris Metcalf
2015-10-01 12:14                     ` Frederic Weisbecker
2015-10-01 12:18                       ` Thomas Gleixner
2015-10-01 12:23                         ` Frederic Weisbecker
2015-10-01 12:31                           ` Thomas Gleixner
2015-10-01 17:02                         ` Chris Metcalf
     [not found]                           ` <560D6725.9000609-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-10-01 21:20                             ` Thomas Gleixner
2015-10-02 17:15                               ` Chris Metcalf
     [not found]                                 ` <560EBBC5.7000709-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-10-02 19:02                                   ` Thomas Gleixner
2015-10-01 19:25                       ` Chris Metcalf
2015-09-28 15:17                   ` [PATCH v7 03/11] task_isolation: support PR_TASK_ISOLATION_STRICT mode Chris Metcalf
     [not found]                     ` <1443453446-7827-4-git-send-email-cmetcalf-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-09-28 20:51                       ` Andy Lutomirski
2015-09-28 21:54                         ` Chris Metcalf
2015-09-28 22:38                           ` Andy Lutomirski
2015-09-29 17:35                             ` Chris Metcalf
     [not found]                               ` <560ACBD9.90909-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-09-29 17:46                                 ` Andy Lutomirski
     [not found]                                   ` <CALCETrUp+8UG5dKLdybcmhhfzcyUP8h-RJHcG0Bo7Up=Rx6DVA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-09-29 17:57                                     ` Chris Metcalf
2015-09-29 18:00                                       ` Andy Lutomirski
     [not found]                                         ` <CALCETrVrHFh_wW_u0E+3mcN9J7_M+hAF59CdKOzKt3NT+gWJgg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-10-01 19:25                                           ` Chris Metcalf
2015-09-28 15:17                   ` [PATCH v7 04/11] task_isolation: provide strict mode configurable signal Chris Metcalf
2015-09-28 20:54                     ` Andy Lutomirski
     [not found]                       ` <CALCETrXaWaUwWnOz16RAqjFP9tZm=tp74xWacXjqa36TWB9BfQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-09-28 21:54                         ` Chris Metcalf
2015-10-20 20:35                   ` [PATCH v8 00/14] support "task_isolation" mode for nohz_full Chris Metcalf
2015-10-20 20:36                     ` [PATCH v8 04/14] task_isolation: add initial support Chris Metcalf
2015-10-20 20:56                       ` Andy Lutomirski
     [not found]                         ` <CALCETrWzhrYreizoKG0w6Jtz3RLFjNx9Qk_JLykcLLUQcCXBEA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-10-20 21:20                           ` Chris Metcalf
     [not found]                             ` <5626B00E.3010309-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-10-20 21:26                               ` Andy Lutomirski
     [not found]                                 ` <CALCETrX6e+mqfy-rNV3sA8xGVDNHviQ9vHBBhAPULeLecno7XQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-10-21  0:29                                   ` Steven Rostedt
2015-10-26 20:19                                     ` Chris Metcalf
2015-10-26 21:13                                     ` Chris Metcalf
2015-10-26 20:32                                 ` Chris Metcalf
     [not found]                       ` <1445373372-6567-5-git-send-email-cmetcalf-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-10-21 16:12                         ` Frederic Weisbecker
2015-10-27 16:40                           ` Chris Metcalf
     [not found]                             ` <562FA8FD.8080502-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2016-01-28 16:38                               ` Frederic Weisbecker
2016-02-11 19:58                                 ` Chris Metcalf [this message]
2015-10-20 20:36                     ` [PATCH v8 05/14] task_isolation: support PR_TASK_ISOLATION_STRICT mode Chris Metcalf
2015-10-20 20:36                     ` [PATCH v8 06/14] task_isolation: provide strict mode configurable signal Chris Metcalf
2015-10-21  0:56                       ` Steven Rostedt
     [not found]                         ` <20151020205610.51b3d742-2kNGR76GQU9OHLTnHDQRgA@public.gmane.org>
2015-10-21  1:30                           ` Chris Metcalf
2015-10-21  1:41                             ` Steven Rostedt
2015-10-21  1:42                             ` Andy Lutomirski
     [not found]                               ` <CALCETrXqDi24EPn79X9SXuz+5sYGZBF3yCRzb8PwdL=YbxVujw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-10-21  6:41                                 ` Gilad Ben Yossef
2015-10-21 18:53                                   ` Andy Lutomirski
2015-10-22 20:44                                     ` Chris Metcalf
2015-10-22 21:00                                       ` Andy Lutomirski
     [not found]                                         ` <CALCETrVQXwYwhEwbJsvN18w8qD-qVVCQAa8b9RcXD=RmXSqLiQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-10-27 19:37                                           ` Chris Metcalf
     [not found]                                     ` <CALCETrVuE_VCk-7_VMJ-orL8pg+0F5vq6qvt4SfgXzt_MRr-SQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-10-24  9:16                                       ` Gilad Ben Yossef
2015-10-21 12:39                     ` [PATCH v8 00/14] support "task_isolation" mode for nohz_full Peter Zijlstra
2015-10-22 20:31                       ` Chris Metcalf
2015-10-23  2:33                         ` Frederic Weisbecker
2015-10-23  8:49                           ` Peter Zijlstra
2015-10-23 13:29                             ` Frederic Weisbecker
     [not found]                         ` <562947B0.7050103-d5a29ZRxExrQT0dZR+AlfA@public.gmane.org>
2015-10-23  9:04                           ` Peter Zijlstra
2015-10-23 11:52                             ` Theodore Ts'o

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=56BCE7D4.1010504@ezchip.com \
    --to=cmetcalf@ezchip.com \
    --cc=akpm@linux-foundation.org \
    --cc=catalin.marinas@arm.com \
    --cc=cl@linux.com \
    --cc=fweisbec@gmail.com \
    --cc=giladb@ezchip.com \
    --cc=linux-api@vger.kernel.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luto@amacapital.net \
    --cc=mingo@kernel.org \
    --cc=paulmck@linux.vnet.ibm.com \
    --cc=peterz@infradead.org \
    --cc=riel@redhat.com \
    --cc=rostedt@goodmis.org \
    --cc=tglx@linutronix.de \
    --cc=tj@kernel.org \
    --cc=viresh.kumar@linaro.org \
    --cc=will.deacon@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).