summaryrefslogtreecommitdiff
path: root/sysutils/xentools42/patches
diff options
context:
space:
mode:
authorriz <riz@pkgsrc.org>2013-12-08 19:17:56 +0000
committerriz <riz@pkgsrc.org>2013-12-08 19:17:56 +0000
commit96fc30833f25515458de261689b59a33585c8085 (patch)
tree2b99b5d81cb264276a20cdbe092f1f4aa1559080 /sysutils/xentools42/patches
parent9276cd8b2e1aade434cfc23719da43c6977b8d80 (diff)
downloadpkgsrc-96fc30833f25515458de261689b59a33585c8085.tar.gz
add patch from upstream to fix a regression which made that the symbol
table of NetBSD domU kernels was not loaded correctly, see http://mail-index.netbsd.org/port-xen/2013/11/29/msg008157.html for details bump PKGREV
Diffstat (limited to 'sysutils/xentools42/patches')
-rw-r--r--sysutils/xentools42/patches/patch-libxc_xc_dom_h13
1 files changed, 13 insertions, 0 deletions
diff --git a/sysutils/xentools42/patches/patch-libxc_xc_dom_h b/sysutils/xentools42/patches/patch-libxc_xc_dom_h
new file mode 100644
index 00000000000..07ef6235494
--- /dev/null
+++ b/sysutils/xentools42/patches/patch-libxc_xc_dom_h
@@ -0,0 +1,13 @@
+$NetBSD: patch-libxc_xc_dom_h,v 1.1 2013/12/08 19:17:56 riz Exp $
+
+--- libxc/xc_dom.h.orig 2013-11-29 18:20:47.000000000 +0000
++++ libxc/xc_dom.h 2013-11-29 18:22:14.000000000 +0000
+@@ -303,7 +303,7 @@ static inline void *xc_dom_vaddr_to_ptr(
+ if ( ptr == NULL )
+ return ptr;
+ *safe_region_out = (safe_region_count << XC_DOM_PAGE_SHIFT(dom)) - offset;
+- return ptr;
++ return ptr + offset;
+ }
+
+ static inline int xc_dom_feature_translated(struct xc_dom_image *dom)