Prev: [PATCH 08/12] Fix possible NULL pointer dereference in print_IO_APIC
Next: [PATCH 03/12] evtchn delivery on HVM
From: Konrad Rzeszutek Wilk on 8 Jun 2010 15:10 On Tue, Jun 08, 2010 at 05:25:52PM +0100, Stefano Stabellini wrote: > On Tue, 8 Jun 2010, Konrad Rzeszutek Wilk wrote: > > On Tue, Jun 08, 2010 at 04:55:33PM +0100, Stefano Stabellini wrote: > > > On Tue, 8 Jun 2010, Konrad Rzeszutek Wilk wrote: > > > > > > > + HYPERVISOR_shared_info = (struct shared_info *)shared_info_page; > > > > > > > + > > > > > > > + /* Don't do the full vcpu_info placement stuff until we have a > > > > > > > + possible map and a non-dummy shared_info. */ > > > > > > > > > > > > Might want to mention where the full vpcu placement is done. > > > > > > > > > > The comment is not accurate, we actually don't do any vcpu_info > > > > > placement on hvm because it is not very useful there. > > > > > Better just to remove the comment (I have done so in my tree). > > > > > > > > > > > > + per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0]; > > > > > > > > > > So.. what is the purpose of the per_cpu(xen_vcpu, 0) then? > > > > > > > > > > the vcpu info placement memory area is stored in per_cpu(xen_vcpu_info, cpu); > > > per_cpu(xen_vcpu, cpu) is just a pointer to that area if it is > > > available, otherwise it points to the vcpu_info struct in the shared > > > info page. > > > > I was just wondering why are we doing this when you say: > > " don't do any vcpu_info placement on hvm because it is not very useful there." > > > > So if it is not useful, why do it? > > > > I think Jeremy replied to your question better than me: we still need > the vcpu_info stuff for the timer and event channels, but we don't need > it to be at a specific address in kernel memory. Ok, can you add that comment for the usage of the per_cpu(xen_vcpu,0) and mention that this is bootstrap code - hence only starting at CPU 0. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
From: Stefano Stabellini on 10 Jun 2010 09:50 On Tue, 8 Jun 2010, Konrad Rzeszutek Wilk wrote: > On Tue, Jun 08, 2010 at 05:25:52PM +0100, Stefano Stabellini wrote: > > On Tue, 8 Jun 2010, Konrad Rzeszutek Wilk wrote: > > > On Tue, Jun 08, 2010 at 04:55:33PM +0100, Stefano Stabellini wrote: > > > > On Tue, 8 Jun 2010, Konrad Rzeszutek Wilk wrote: > > > > > > > > + HYPERVISOR_shared_info = (struct shared_info *)shared_info_page; > > > > > > > > + > > > > > > > > + /* Don't do the full vcpu_info placement stuff until we have a > > > > > > > > + possible map and a non-dummy shared_info. */ > > > > > > > > > > > > > > Might want to mention where the full vpcu placement is done. > > > > > > > > > > > > The comment is not accurate, we actually don't do any vcpu_info > > > > > > placement on hvm because it is not very useful there. > > > > > > Better just to remove the comment (I have done so in my tree). > > > > > > > > > > > > > > + per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0]; > > > > > > > > > > > > So.. what is the purpose of the per_cpu(xen_vcpu, 0) then? > > > > > > > > > > > > > the vcpu info placement memory area is stored in per_cpu(xen_vcpu_info, cpu); > > > > per_cpu(xen_vcpu, cpu) is just a pointer to that area if it is > > > > available, otherwise it points to the vcpu_info struct in the shared > > > > info page. > > > > > > I was just wondering why are we doing this when you say: > > > " don't do any vcpu_info placement on hvm because it is not very useful there." > > > > > > So if it is not useful, why do it? > > > > > > > I think Jeremy replied to your question better than me: we still need > > the vcpu_info stuff for the timer and event channels, but we don't need > > it to be at a specific address in kernel memory. > > Ok, can you add that comment for the usage of the per_cpu(xen_vcpu,0) > and mention that this is bootstrap code - hence only starting at CPU 0. > All right, I'll do that. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
First
|
Prev
|
Pages: 1 2 3 Prev: [PATCH 08/12] Fix possible NULL pointer dereference in print_IO_APIC Next: [PATCH 03/12] evtchn delivery on HVM |