The patch titled
xen: relax signature check
has been removed from the -mm tree. Its filename was
xen-relax-signature-check.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
Subject: xen: relax signature check
From: Jeremy Fitzhardinge <[EMAIL PROTECTED]>
Some versions of Xen 3.x set their magic number to "xen-3.[12]", so relax
the test to match them.
Signed-off-by: Jeremy Fitzhardinge <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
arch/x86/xen/enlighten.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN arch/x86/xen/enlighten.c~xen-relax-signature-check
arch/x86/xen/enlighten.c
--- a/arch/x86/xen/enlighten.c~xen-relax-signature-check
+++ a/arch/x86/xen/enlighten.c
@@ -1131,7 +1131,7 @@ asmlinkage void __init xen_start_kernel(
if (!xen_start_info)
return;
- BUG_ON(memcmp(xen_start_info->magic, "xen-3.0", 7) != 0);
+ BUG_ON(memcmp(xen_start_info->magic, "xen-3", 5) != 0);
/* Install Xen paravirt ops */
pv_info = xen_info;
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
git-x86.patch
maps4-simplify-interdependence-of-maps-and-smaps.patch
maps4-move-clear_refs-code-to-task_mmuc.patch
maps4-regroup-task_mmu-by-interface.patch
maps4-add-proc-kpagecount-interface.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html