diff options
author | Jason Unovitch <junovitch@FreeBSD.org> | 2015-08-17 13:55:06 +0000 |
---|---|---|
committer | Jason Unovitch <junovitch@FreeBSD.org> | 2015-08-17 13:55:06 +0000 |
commit | 5c08f16d47ccff07072343b2962629fce51934ee (patch) | |
tree | ba31218bc5a7467bdd9c7f2e896abe29864c65c9 /sysutils/xen-tools/files/0001-libelf-fix-elf_parse_bsdsyms-call.patch | |
parent | 906f4181a0c7d64c69d9223904678b32e9442d3b (diff) | |
download | ports-5c08f16d47ccff07072343b2962629fce51934ee.tar.gz ports-5c08f16d47ccff07072343b2962629fce51934ee.zip |
Notes
Diffstat (limited to 'sysutils/xen-tools/files/0001-libelf-fix-elf_parse_bsdsyms-call.patch')
-rw-r--r-- | sysutils/xen-tools/files/0001-libelf-fix-elf_parse_bsdsyms-call.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/sysutils/xen-tools/files/0001-libelf-fix-elf_parse_bsdsyms-call.patch b/sysutils/xen-tools/files/0001-libelf-fix-elf_parse_bsdsyms-call.patch deleted file mode 100644 index ddab05badaed..000000000000 --- a/sysutils/xen-tools/files/0001-libelf-fix-elf_parse_bsdsyms-call.patch +++ /dev/null @@ -1,36 +0,0 @@ -From c2da83662498a5cd66512c684a0af178228f9d5a Mon Sep 17 00:00:00 2001 -From: Roger Pau Monne <roger.pau@citrix.com> -Date: Thu, 11 Jun 2015 17:08:26 +0200 -Subject: [PATCH 1/2] libelf: fix elf_parse_bsdsyms call -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -elf_parse_bsdsyms expects the second paramater to be a physical address, not -a virtual one. - -Signed-off-by: Roger Pau Monné <roger.pau@citrix.com> -Cc: Ian Campbell <ian.campbell@citrix.com> -Cc: Ian Jackson <ian.jackson@eu.citrix.com> -Cc: Jan Beulich <jbeulich@suse.com> -Cc: Tim Deegan <tim@xen.org> ---- - xen/common/libelf/libelf-dominfo.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/xen/common/libelf/libelf-dominfo.c b/xen/common/libelf/libelf-dominfo.c -index 6120dd4..86403b9 100644 ---- a/xen/common/libelf/libelf-dominfo.c -+++ b/xen/common/libelf/libelf-dominfo.c -@@ -438,7 +438,7 @@ static elf_errorstatus elf_xen_addr_calc_check(struct elf_binary *elf, - - if ( parms->bsd_symtab ) - { -- elf_parse_bsdsyms(elf, parms->virt_kend); -+ elf_parse_bsdsyms(elf, elf->pend); - if ( elf->bsd_symtab_pend ) - parms->virt_kend = elf->bsd_symtab_pend + parms->virt_offset; - } --- -1.9.5 (Apple Git-50.3) - |