Skip to content

Commit 607eeb0

Browse files
committed
Merge tag 'stable/for-linus-3.10-rc0-tag-two' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen
Pull Xen bug-fixes from Konrad Rzeszutek Wilk: - More fixes in the vCPU PVHVM hotplug path. - Add more documentation. - Fix various ARM related issues in the Xen generic drivers. - Updates in the xen-pciback driver per Bjorn's updates. - Mask the x2APIC feature for PV guests. * tag 'stable/for-linus-3.10-rc0-tag-two' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen: xen/pci: Used cached MSI-X capability offset xen/pci: Use PCI_MSIX_TABLE_BIR, not PCI_MSIX_FLAGS_BIRMASK xen: clear IRQ_NOAUTOEN and IRQ_NOREQUEST xen: mask x2APIC feature in PV xen: SWIOTLB is only used on x86 xen/spinlock: Fix check from greater than to be also be greater or equal to. xen/smp/pvhvm: Don't point per_cpu(xen_vpcu, 33 and larger) to shared_info xen/vcpu: Document the xen_vcpu_info and xen_vcpu xen/vcpu/pvhvm: Fix vcpu hotplugging hanging.
2 parents 4c44450 + 7c86617 commit 607eeb0

File tree

5 files changed

+55
-7
lines changed

5 files changed

+55
-7
lines changed

arch/x86/pci/xen.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -295,11 +295,10 @@ static int xen_initdom_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
295295
int pos;
296296
u32 table_offset, bir;
297297

298-
pos = pci_find_capability(dev, PCI_CAP_ID_MSIX);
299-
298+
pos = dev->msix_cap;
300299
pci_read_config_dword(dev, pos + PCI_MSIX_TABLE,
301300
&table_offset);
302-
bir = (u8)(table_offset & PCI_MSIX_FLAGS_BIRMASK);
301+
bir = (u8)(table_offset & PCI_MSIX_TABLE_BIR);
303302

304303
map_irq.table_base = pci_resource_start(dev, bir);
305304
map_irq.entry_nr = msidesc->msi_attrib.entry_nr;

arch/x86/xen/enlighten.c

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,29 @@
8585

8686
EXPORT_SYMBOL_GPL(hypercall_page);
8787

88+
/*
89+
* Pointer to the xen_vcpu_info structure or
90+
* &HYPERVISOR_shared_info->vcpu_info[cpu]. See xen_hvm_init_shared_info
91+
* and xen_vcpu_setup for details. By default it points to share_info->vcpu_info
92+
* but if the hypervisor supports VCPUOP_register_vcpu_info then it can point
93+
* to xen_vcpu_info. The pointer is used in __xen_evtchn_do_upcall to
94+
* acknowledge pending events.
95+
* Also more subtly it is used by the patched version of irq enable/disable
96+
* e.g. xen_irq_enable_direct and xen_iret in PV mode.
97+
*
98+
* The desire to be able to do those mask/unmask operations as a single
99+
* instruction by using the per-cpu offset held in %gs is the real reason
100+
* vcpu info is in a per-cpu pointer and the original reason for this
101+
* hypercall.
102+
*
103+
*/
88104
DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
105+
106+
/*
107+
* Per CPU pages used if hypervisor supports VCPUOP_register_vcpu_info
108+
* hypercall. This can be used both in PV and PVHVM mode. The structure
109+
* overrides the default per_cpu(xen_vcpu, cpu) value.
110+
*/
89111
DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
90112

91113
enum xen_domain_type xen_domain_type = XEN_NATIVE;
@@ -157,6 +179,21 @@ static void xen_vcpu_setup(int cpu)
157179

158180
BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
159181

182+
/*
183+
* This path is called twice on PVHVM - first during bootup via
184+
* smp_init -> xen_hvm_cpu_notify, and then if the VCPU is being
185+
* hotplugged: cpu_up -> xen_hvm_cpu_notify.
186+
* As we can only do the VCPUOP_register_vcpu_info once lets
187+
* not over-write its result.
188+
*
189+
* For PV it is called during restore (xen_vcpu_restore) and bootup
190+
* (xen_setup_vcpu_info_placement). The hotplug mechanism does not
191+
* use this function.
192+
*/
193+
if (xen_hvm_domain()) {
194+
if (per_cpu(xen_vcpu, cpu) == &per_cpu(xen_vcpu_info, cpu))
195+
return;
196+
}
160197
if (cpu < MAX_VIRT_CPUS)
161198
per_cpu(xen_vcpu,cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
162199

@@ -172,7 +209,12 @@ static void xen_vcpu_setup(int cpu)
172209

173210
/* Check to see if the hypervisor will put the vcpu_info
174211
structure where we want it, which allows direct access via
175-
a percpu-variable. */
212+
a percpu-variable.
213+
N.B. This hypercall can _only_ be called once per CPU. Subsequent
214+
calls will error out with -EINVAL. This is due to the fact that
215+
hypervisor has no unregister variant and this hypercall does not
216+
allow to over-write info.mfn and info.offset.
217+
*/
176218
err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
177219

178220
if (err) {
@@ -387,6 +429,9 @@ static void __init xen_init_cpuid_mask(void)
387429
cpuid_leaf1_edx_mask &=
388430
~((1 << X86_FEATURE_APIC) | /* disable local APIC */
389431
(1 << X86_FEATURE_ACPI)); /* disable ACPI */
432+
433+
cpuid_leaf1_ecx_mask &= ~(1 << (X86_FEATURE_X2APIC % 32));
434+
390435
ax = 1;
391436
cx = 0;
392437
xen_cpuid(&ax, &bx, &cx, &dx);
@@ -1603,6 +1648,9 @@ void __ref xen_hvm_init_shared_info(void)
16031648
* online but xen_hvm_init_shared_info is run at resume time too and
16041649
* in that case multiple vcpus might be online. */
16051650
for_each_online_cpu(cpu) {
1651+
/* Leave it to be NULL. */
1652+
if (cpu >= MAX_VIRT_CPUS)
1653+
continue;
16061654
per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
16071655
}
16081656
}

arch/x86/xen/spinlock.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ void __cpuinit xen_init_lock_cpu(int cpu)
364364
int irq;
365365
const char *name;
366366

367-
WARN(per_cpu(lock_kicker_irq, cpu) > 0, "spinlock on CPU%d exists on IRQ%d!\n",
367+
WARN(per_cpu(lock_kicker_irq, cpu) >= 0, "spinlock on CPU%d exists on IRQ%d!\n",
368368
cpu, per_cpu(lock_kicker_irq, cpu));
369369

370370
/*

drivers/xen/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ config XEN_GRANT_DEV_ALLOC
141141

142142
config SWIOTLB_XEN
143143
def_bool y
144-
depends on PCI
144+
depends on PCI && X86
145145
select SWIOTLB
146146

147147
config XEN_TMEM

drivers/xen/events.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,8 @@ static void xen_irq_info_common_init(struct irq_info *info,
167167
info->cpu = cpu;
168168

169169
evtchn_to_irq[evtchn] = irq;
170+
171+
irq_clear_status_flags(irq, IRQ_NOREQUEST|IRQ_NOAUTOEN);
170172
}
171173

172174
static void xen_irq_info_evtchn_init(unsigned irq,
@@ -874,7 +876,6 @@ int bind_evtchn_to_irq(unsigned int evtchn)
874876
struct irq_info *info = info_for_irq(irq);
875877
WARN_ON(info == NULL || info->type != IRQT_EVTCHN);
876878
}
877-
irq_clear_status_flags(irq, IRQ_NOREQUEST|IRQ_NOAUTOEN);
878879

879880
out:
880881
mutex_unlock(&irq_mapping_update_lock);

0 commit comments

Comments
 (0)