diff options
author | riz <riz@pkgsrc.org> | 2013-12-08 19:17:56 +0000 |
---|---|---|
committer | riz <riz@pkgsrc.org> | 2013-12-08 19:17:56 +0000 |
commit | 96fc30833f25515458de261689b59a33585c8085 (patch) | |
tree | 2b99b5d81cb264276a20cdbe092f1f4aa1559080 /sysutils/xentools42/patches | |
parent | 9276cd8b2e1aade434cfc23719da43c6977b8d80 (diff) | |
download | pkgsrc-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_h | 13 |
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) |