0c76f22ef1
- bnc#633573 - System fail to boot after running several warm reboot tests 22749-vtd-workarounds.patch - Upstream patches from Jan 22744-ept-pod-locking.patch 22777-vtd-ats-fixes.patch 22781-pod-hap-logdirty.patch 22782-x86-emul-smsw.patch 22789-i386-no-x2apic.patch 22790-svm-resume-migrate-pirqs.patch 22816-x86-pirq-drop-priv-check.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=94
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
Are these unsigned long lines really unsigned int, u32?
|
|
|
|
grep -En 'unsigned[[:blank:]]+long' xenalyze.hg/xenalyze.c | \
|
|
grep -Ev 'unsigned[[:blank:]]+long[[:blank:]]+long'
|
|
|
|
Signed-off-by: Olaf Hering <olaf@aepfle.de>
|
|
|
|
---
|
|
xenalyze.hg/xenalyze.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
Index: xen-4.0.2-testing/xenalyze.hg/xenalyze.c
|
|
===================================================================
|
|
--- xen-4.0.2-testing.orig/xenalyze.hg/xenalyze.c
|
|
+++ xen-4.0.2-testing/xenalyze.hg/xenalyze.c
|
|
@@ -3588,12 +3588,12 @@ void hvm_mmio_assist_process(struct reco
|
|
if(mevt.x64) {
|
|
e->gpa = r->x64.gpa;
|
|
e->data = r->x64.data;
|
|
- if(ri->extra_words*(sizeof(unsigned long))==sizeof(r->x64))
|
|
+ if(ri->extra_words*(sizeof(unsigned))==sizeof(r->x64))
|
|
e->mmio_data_valid=1;
|
|
} else {
|
|
e->gpa = r->x32.gpa;
|
|
e->data = r->x32.data;
|
|
- if(ri->extra_words*(sizeof(unsigned long))==sizeof(r->x32))
|
|
+ if(ri->extra_words*(sizeof(unsigned))==sizeof(r->x32))
|
|
e->mmio_data_valid=1;
|
|
}
|
|
|