All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Jürgen Groß" <jgross@suse.com>
To: Jan Beulich <jbeulich@suse.com>
Cc: "Stefano Stabellini" <sstabellini@kernel.org>,
	"Wei Liu" <wl@xen.org>,
	"Konrad Rzeszutek Wilk" <konrad.wilk@oracle.com>,
	"George Dunlap" <George.Dunlap@eu.citrix.com>,
	"Andrew Cooper" <andrew.cooper3@citrix.com>,
	"Ian Jackson" <ian.jackson@eu.citrix.com>,
	"Tim Deegan" <tim@xen.org>, "Julien Grall" <julien.grall@arm.com>,
	xen-devel@lists.xenproject.org,
	"Dario Faggioli" <dfaggioli@suse.com>,
	"Volodymyr Babchuk" <Volodymyr_Babchuk@epam.com>,
	"Roger Pau Monné" <roger.pau@citrix.com>
Subject: Re: [Xen-devel] [PATCH v3 34/47] xen/sched: add fall back to idle vcpu when scheduling unit
Date: Wed, 25 Sep 2019 14:58:40 +0200	[thread overview]
Message-ID: <76b8ac21-a20e-069a-c7a3-36b46b60d692@suse.com> (raw)
In-Reply-To: <cb03241e-908b-e939-7585-855cadc00068@suse.com>

On 24.09.19 12:53, Jan Beulich wrote:
> On 14.09.2019 10:52, Juergen Gross wrote:
>> When scheduling an unit with multiple vcpus there is no guarantee all
>> vcpus are available (e.g. above maxvcpus or vcpu offline). Fall back to
>> idle vcpu of the current cpu in that case. This requires to store the
>> correct schedule_unit pointer in the idle vcpu as long as it used as
>> fallback vcpu.
>>
>> In order to modify the runstates of the correct vcpus when switching
>> schedule units merge sched_unit_runstate_change() into
>> sched_switch_units() and loop over the affected physical cpus instead
>> of the unit's vcpus. This in turn requires an access function to the
>> current variable of other cpus.
>>
>> Today context_saved() is called in case previous and next vcpus differ
>> when doing a context switch. With an idle vcpu being capable to be a
>> substitute for an offline vcpu this is problematic when switching to
>> an idle scheduling unit. An idle previous vcpu leaves us in doubt which
>> schedule unit was active previously, so save the previous unit pointer
>> in the per-schedule resource area. If it is NULL the unit has not
>> changed and we don't have to set the previous unit to be not running.
>>
>> When running an idle vcpu in a non-idle scheduling unit use a specific
>> guest idle loop not performing any tasklets and livepatching in order
>> to avoid populating the cpu caches with memory used by other domains
>> (as far as possible). Softirqs are considered to be save.
> 
> Aiui "tasklets" here means only ones run in (idle) vCPU context, whereas
> "softirqs" includes tasklets run in softirq context. I think it would
> help if the description made this distinction. With this I then wonder
> whether the cache related argumentation above still holds: VT-d's IOMMU
> fault handling tasklet runs in softirq context, for example, and
> hvm_assert_evtchn_irq(), being handed a struct vcpu *, does too. Of
> course this could be considered covered by "(as far as possible)" ...

I'll write "... not performing any non-softirq tasklets ...".

> 
>> @@ -172,6 +191,10 @@ void startup_cpu_idle_loop(void)
>>   
>>   static void noreturn continue_idle_domain(struct vcpu *v)
>>   {
>> +    /* Idle vcpus might be attached to non-idle units! */
>> +    if ( !is_idle_domain(v->sched_unit->domain) )
>> +        reset_stack_and_jump_nolp(guest_idle_loop);
> 
> The construct and comment make me wonder - did you audit all uses
> of is_idle_{domain,vcpu}() for being in line with this new usage
> mode?

Yes.

> 
>> @@ -1767,33 +1774,66 @@ static void sched_switch_units(struct sched_resource *sd,
>>                                  struct sched_unit *next, struct sched_unit *prev,
>>                                  s_time_t now)
>>   {
>> -    sd->curr = next;
>> -
>> -    TRACE_3D(TRC_SCHED_SWITCH_INFPREV, prev->domain->domain_id, prev->unit_id,
>> -             now - prev->state_entry_time);
>> -    TRACE_4D(TRC_SCHED_SWITCH_INFNEXT, next->domain->domain_id, next->unit_id,
>> -             (next->vcpu_list->runstate.state == RUNSTATE_runnable) ?
>> -             (now - next->state_entry_time) : 0, prev->next_time);
>> +    int cpu;
> 
> unsigned int?

Okay.

> 
>>       ASSERT(unit_running(prev));
>>   
>> -    TRACE_4D(TRC_SCHED_SWITCH, prev->domain->domain_id, prev->unit_id,
>> -             next->domain->domain_id, next->unit_id);
>> +    if ( prev != next )
>> +    {
>> +        sd->curr = next;
>> +        sd->prev = prev;
>>   
>> -    sched_unit_runstate_change(prev, false, now);
>> +        TRACE_3D(TRC_SCHED_SWITCH_INFPREV, prev->domain->domain_id,
>> +                 prev->unit_id, now - prev->state_entry_time);
>> +        TRACE_4D(TRC_SCHED_SWITCH_INFNEXT, next->domain->domain_id,
>> +                 next->unit_id,
>> +                 (next->vcpu_list->runstate.state == RUNSTATE_runnable) ?
>> +                 (now - next->state_entry_time) : 0, prev->next_time);
>> +        TRACE_4D(TRC_SCHED_SWITCH, prev->domain->domain_id, prev->unit_id,
>> +                 next->domain->domain_id, next->unit_id);
>>   
>> -    ASSERT(!unit_running(next));
>> -    sched_unit_runstate_change(next, true, now);
>> +        ASSERT(!unit_running(next));
>>   
>> -    /*
>> -     * NB. Don't add any trace records from here until the actual context
>> -     * switch, else lost_records resume will not work properly.
>> -     */
>> +        /*
>> +         * NB. Don't add any trace records from here until the actual context
>> +         * switch, else lost_records resume will not work properly.
>> +         */
>> +
>> +        ASSERT(!next->is_running);
>> +        next->is_running = 1;
>> +        next->state_entry_time = now;
>> +
>> +        if ( is_idle_unit(prev) )
>> +        {
>> +            prev->runstate_cnt[RUNSTATE_running] = 0;
>> +            prev->runstate_cnt[RUNSTATE_runnable] = sched_granularity;
>> +        }
>> +        if ( is_idle_unit(next) )
>> +        {
>> +            next->runstate_cnt[RUNSTATE_running] = sched_granularity;
>> +            next->runstate_cnt[RUNSTATE_runnable] = 0;
>> +        }
> 
> Is this correct when some of the vCPU-s a substitute idle ones?

Yes, as this affects idle units only. An idle vcpu running as a
substitute will _not_ result in the related idle unit runstate_cnt
to be updated.

> 
>> @@ -1849,29 +1889,39 @@ static struct sched_unit *do_schedule(struct sched_unit *prev, s_time_t now,
>>       if ( prev->next_time >= 0 ) /* -ve means no limit */
>>           set_timer(&sd->s_timer, now + prev->next_time);
>>   
>> -    if ( likely(prev != next) )
>> -        sched_switch_units(sd, next, prev, now);
>> +    sched_switch_units(sd, next, prev, now);
>>   
>>       return next;
>>   }
>>   
>> -static void context_saved(struct vcpu *prev)
>> +static void vcpu_context_saved(struct vcpu *vprev, struct vcpu *vnext)
>>   {
>> -    struct sched_unit *unit = prev->sched_unit;
>> -
>>       /* Clear running flag /after/ writing context to memory. */
>>       smp_wmb();
>>   
>> -    prev->is_running = 0;
>> +    if ( vprev != vnext )
>> +        vprev->is_running = 0;
>> +}
> 
> With this "vnext" could be const qualified as it seems. And "false"
> instead of "0" perhaps, as you touch this anyway?

Okay.

> 
>> @@ -2015,7 +2079,8 @@ static void sched_slave(void)
>>   
>>       pcpu_schedule_unlock_irq(lock, cpu);
>>   
>> -    sched_context_switch(vprev, sched_unit2vcpu_cpu(next, cpu), now);
>> +    sched_context_switch(vprev, sched_unit2vcpu_cpu(next, cpu),
>> +                         is_idle_unit(next) && !is_idle_unit(prev), now);
>>   }
>>   
>>   /*
>> @@ -2075,7 +2140,8 @@ static void schedule(void)
>>       pcpu_schedule_unlock_irq(lock, cpu);
>>   
>>       vnext = sched_unit2vcpu_cpu(next, cpu);
>> -    sched_context_switch(vprev, vnext, now);
>> +    sched_context_switch(vprev, vnext,
>> +                         !is_idle_unit(prev) && is_idle_unit(next), now);
>>   }
> 
> As a minor remark, I think between such constructs it would be good
> if there was no difference, unless there's a reason to have one. Yet
> if there was a reason, it surely would want to be spelled out.

I guess you mean changing the parameters of sched_context_switch()? I
can do that.

> 
>> @@ -124,16 +129,22 @@ unsigned long get_stack_dump_bottom (unsigned long sp);
>>   # define CHECK_FOR_LIVEPATCH_WORK ""
>>   #endif
>>   
>> -#define reset_stack_and_jump(__fn)                                      \
>> +#define switch_stack_and_jump(fn, instr)                                \
> 
> Is there any dependency on "instr" to just be a single instruction?
> I'm inclined to ask for it to be named "extra" or some such.

Fine with me.

> 
>> --- a/xen/include/asm-x86/smp.h
>> +++ b/xen/include/asm-x86/smp.h
>> @@ -76,6 +76,9 @@ void set_nr_sockets(void);
>>   /* Representing HT and core siblings in each socket. */
>>   extern cpumask_t **socket_cpumask;
>>   
>> +#define get_cpu_current(cpu) \
>> +    (get_cpu_info_from_stack((unsigned long)stack_base[cpu])->current_vcpu)
> 
> I don't think this can go without a comment clarifying under what
> (pretty narrow I think) conditions this is legitimate to use.

Okay. I'll add a comment like: "to be used only while no context switch
can occur on the cpu".


Juergen

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

  reply	other threads:[~2019-09-25 12:59 UTC|newest]

Thread overview: 161+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-14  8:52 [Xen-devel] [PATCH v3 00/47] xen: add core scheduling support Juergen Gross
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 01/47] xen/sched: use new sched_unit instead of vcpu in scheduler interfaces Juergen Gross
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 02/47] xen/sched: move per-vcpu scheduler private data pointer to sched_unit Juergen Gross
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 03/47] xen/sched: build a linked list of struct sched_unit Juergen Gross
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 04/47] xen/sched: introduce struct sched_resource Juergen Gross
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 05/47] xen/sched: let pick_cpu return a scheduler resource Juergen Gross
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 06/47] xen/sched: switch schedule_data.curr to point at sched_unit Juergen Gross
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 07/47] xen/sched: move per cpu scheduler private data into struct sched_resource Juergen Gross
2019-09-19 15:27   ` Jan Beulich
2019-09-24 11:41     ` Jürgen Groß
2019-09-24 12:08       ` Jan Beulich
2019-09-24 15:10         ` Jürgen Groß
2019-09-24 17:07           ` Dario Faggioli
2019-09-25  6:49         ` Jürgen Groß
2019-09-24 17:11       ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 08/47] xen/sched: switch vcpu_schedule_lock to unit_schedule_lock Juergen Gross
2019-09-24 17:18   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 09/47] xen/sched: move some per-vcpu items to struct sched_unit Juergen Gross
2019-09-19 15:38   ` Jan Beulich
2019-09-24 11:44     ` Jürgen Groß
2019-09-24 17:23   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 10/47] xen/sched: add scheduler helpers hiding vcpu Juergen Gross
2019-09-19 15:45   ` Jan Beulich
2019-09-24 11:46     ` Jürgen Groß
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 11/47] xen/sched: rename scheduler related perf counters Juergen Gross
2019-09-24 17:25   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 12/47] xen/sched: switch struct task_slice from vcpu to sched_unit Juergen Gross
2019-09-25 15:23   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 13/47] xen/sched: add is_running indicator to struct sched_unit Juergen Gross
2019-09-19 15:53   ` Jan Beulich
2019-09-24 11:47     ` Jürgen Groß
2019-09-24 12:00       ` Jan Beulich
2019-09-24 12:34         ` Jürgen Groß
2019-09-25 15:27   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 14/47] xen/sched: make null scheduler vcpu agnostic Juergen Gross
2019-09-25 12:51   ` Dario Faggioli
2019-09-25 12:59     ` Jürgen Groß
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 15/47] xen/sched: make rt " Juergen Gross
2019-09-25 13:20   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 16/47] xen/sched: make credit " Juergen Gross
2019-09-25 14:21   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 17/47] xen/sched: make credit2 " Juergen Gross
2019-09-25 15:02   ` Dario Faggioli
2019-09-25 15:18     ` Jürgen Groß
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 18/47] xen/sched: make arinc653 " Juergen Gross
2019-09-25 13:51   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 19/47] xen: add sched_unit_pause_nosync() and sched_unit_unpause() Juergen Gross
2019-09-25 15:20   ` Dario Faggioli
2019-09-26  4:49     ` Jürgen Groß
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 20/47] xen: let vcpu_create() select processor Juergen Gross
2019-09-25 16:31   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 21/47] xen/sched: use sched_resource cpu instead smp_processor_id in schedulers Juergen Gross
2019-09-26 10:01   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 22/47] xen/sched: switch schedule() from vcpus to sched_units Juergen Gross
2019-09-25 16:34   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 23/47] xen/sched: switch sched_move_irqs() to take sched_unit as parameter Juergen Gross
2019-09-20 14:34   ` Jan Beulich
2019-09-24 11:55     ` Jürgen Groß
2019-09-24 20:43   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 24/47] xen: switch from for_each_vcpu() to for_each_sched_unit() Juergen Gross
2019-09-20 15:05   ` Jan Beulich
2019-09-24 12:13     ` Jürgen Groß
2019-09-24 12:31       ` Jan Beulich
2019-09-24 15:00         ` Jürgen Groß
2019-09-24 15:04           ` Jan Beulich
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 25/47] xen/sched: add runstate counters to struct sched_unit Juergen Gross
2019-09-20 15:27   ` Jan Beulich
2019-09-24 13:50     ` Jürgen Groß
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 26/47] xen/sched: Change vcpu_migrate_*() to operate on schedule unit Juergen Gross
2019-09-24 22:33   ` Dario Faggioli
2019-09-25 12:04     ` Jürgen Groß
2019-09-25 16:37       ` Dario Faggioli
2019-09-26  4:51         ` Jürgen Groß
2019-09-26 13:29           ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 27/47] xen/sched: move struct task_slice into struct sched_unit Juergen Gross
2019-09-26 10:30   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 28/47] xen/sched: add code to sync scheduling of all vcpus of a sched unit Juergen Gross
2019-09-20 16:08   ` Jan Beulich
2019-09-24 14:14     ` Jürgen Groß
2019-09-24 14:39       ` Jan Beulich
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 29/47] xen/sched: introduce unit_runnable_state() Juergen Gross
2019-09-23 15:24   ` Jan Beulich
2019-09-24 14:25     ` Jürgen Groß
2019-09-24 14:45       ` Jan Beulich
2019-09-24 14:48         ` Jürgen Groß
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 30/47] xen/sched: add support for multiple vcpus per sched unit where missing Juergen Gross
2019-09-23 15:41   ` Jan Beulich
2019-09-24 14:41     ` Jürgen Groß
2019-09-24 15:00       ` Jan Beulich
2019-09-24 15:09         ` Jürgen Groß
2019-09-24 15:22           ` Jan Beulich
2019-09-25 12:40             ` Jürgen Groß
2019-09-25 13:07               ` Jan Beulich
2019-09-26 13:53                 ` Dario Faggioli
2019-09-26 14:24                   ` Jan Beulich
2019-09-26 14:40                   ` Jürgen Groß
2019-09-26 16:41                     ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 31/47] xen/sched: modify cpupool_domain_cpumask() to be an unit mask Juergen Gross
2019-09-23 15:44   ` Jan Beulich
2019-09-24 14:45     ` Jürgen Groß
2019-09-23 15:50   ` Jan Beulich
2019-09-24 14:46     ` Jürgen Groß
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 32/47] xen/sched: support allocating multiple vcpus into one sched unit Juergen Gross
2019-09-24  9:46   ` Jan Beulich
2019-09-24 10:06     ` Jürgen Groß
2019-09-24 10:13       ` Jan Beulich
2019-09-24 15:13         ` Jürgen Groß
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 33/47] xen/sched: add a percpu resource index Juergen Gross
2019-09-24 10:05   ` Jan Beulich
2019-09-24 15:20     ` Jürgen Groß
2019-09-24 15:29       ` Jan Beulich
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 34/47] xen/sched: add fall back to idle vcpu when scheduling unit Juergen Gross
2019-09-24 10:53   ` Jan Beulich
2019-09-25 12:58     ` Jürgen Groß [this message]
2019-09-25 13:11       ` Jan Beulich
2019-09-25 13:15         ` Jürgen Groß
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 35/47] xen/sched: make vcpu_wake() and vcpu_sleep() core scheduling aware Juergen Gross
2019-09-24 11:55   ` Jan Beulich
2019-09-25 13:07     ` Jürgen Groß
2019-09-27  4:42       ` Jürgen Groß
2019-09-27  7:32         ` Dario Faggioli
2019-09-27  7:48           ` Jürgen Groß
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 36/47] xen/sched: carve out freeing sched_unit memory into dedicated function Juergen Gross
2019-09-24 12:04   ` Jan Beulich
2019-09-25 13:09     ` Jürgen Groß
2019-09-25 13:16       ` Jan Beulich
2019-09-25 17:31         ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 37/47] xen/sched: move per-cpu variable scheduler to struct sched_resource Juergen Gross
2019-09-24 12:16   ` Jan Beulich
2019-09-25 13:13     ` Jürgen Groß
2019-09-26  9:06       ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 38/47] xen/sched: move per-cpu variable cpupool " Juergen Gross
2019-09-24 13:10   ` Jan Beulich
2019-09-25 13:17     ` Jürgen Groß
2019-09-26  9:09   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 39/47] xen/sched: reject switching smt on/off with core scheduling active Juergen Gross
2019-09-26  9:10   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 40/47] xen/sched: prepare per-cpupool scheduling granularity Juergen Gross
2019-09-24 13:34   ` Jan Beulich
2019-09-25 13:31     ` Jürgen Groß
2019-09-26  9:41     ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 41/47] xen/sched: split schedule_cpu_switch() Juergen Gross
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 42/47] xen/sched: protect scheduling resource via rcu Juergen Gross
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 43/47] xen/sched: support multiple cpus per scheduling resource Juergen Gross
2019-09-24 13:49   ` Jan Beulich
2019-09-25 13:39     ` Jürgen Groß
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 44/47] xen/sched: support differing granularity in schedule_cpu_[add/rm]() Juergen Gross
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 45/47] xen/sched: support core scheduling for moving cpus to/from cpupools Juergen Gross
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 46/47] xen/sched: disable scheduling when entering ACPI deep sleep states Juergen Gross
2019-09-25 16:02   ` Jan Beulich
2019-09-26  9:41   ` Dario Faggioli
2019-09-14  8:52 ` [Xen-devel] [PATCH v3 47/47] xen/sched: add scheduling granularity enum Juergen Gross
2019-09-26  9:46   ` Dario Faggioli
2019-09-26 12:37     ` Jürgen Groß
2019-09-26 16:21       ` Dario Faggioli
2019-09-20 16:14 ` [Xen-devel] [PATCH v3 00/47] xen: add core scheduling support Jan Beulich
2019-09-24 10:36   ` Dario Faggioli
2019-09-24 11:15 ` Sergey Dyasli
2019-09-24 11:17   ` Jürgen Groß
2019-09-24 17:29   ` Dario Faggioli
2019-09-24 17:42     ` Igor Druzhinin

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=76b8ac21-a20e-069a-c7a3-36b46b60d692@suse.com \
    --to=jgross@suse.com \
    --cc=George.Dunlap@eu.citrix.com \
    --cc=Volodymyr_Babchuk@epam.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=dfaggioli@suse.com \
    --cc=ian.jackson@eu.citrix.com \
    --cc=jbeulich@suse.com \
    --cc=julien.grall@arm.com \
    --cc=konrad.wilk@oracle.com \
    --cc=roger.pau@citrix.com \
    --cc=sstabellini@kernel.org \
    --cc=tim@xen.org \
    --cc=wl@xen.org \
    --cc=xen-devel@lists.xenproject.org \
    /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 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.