search for: symbols_offset

Displaying 4 results from an estimated 4 matches for "symbols_offset".

Did you mean: symbol_offset
2009 Jul 13
0
[PATCH, v2] x86-64: reduce symbol table size
...common/symbols.c 2009-06-30 16:58:32.000000000 +0200 @@ -18,21 +18,27 @@ #include <xen/string.h> #include <xen/spinlock.h> -extern unsigned long symbols_addresses[]; -extern unsigned long symbols_num_syms; -extern u8 symbols_names[]; +#ifdef SYMBOLS_ORIGIN +extern const unsigned int symbols_offsets[1]; +#define symbols_address(n) (SYMBOLS_ORIGIN + symbols_offsets[n]) +#else +extern const unsigned long symbols_addresses[]; +#define symbols_address(n) symbols_addresses[n] +#endif +extern const unsigned int symbols_num_syms; +extern const u8 symbols_names[]; -extern u8 symbols_token_table[];...
2015 Oct 24
0
Bug#802870: xen: FTBFS: error: array subscript is above array bounds
...rg Usertags: ftbfs X-Debbugs-CC: reproducible-builds at lists.alioth.debian.org Dear Maintainer, The package fails to build: symbols.c: In function ?symbols_lookup?: symbols.c:23:61: error: array subscript is above array bounds [-Werror=array-bounds] #define symbols_address(n) (SYMBOLS_ORIGIN + symbols_offsets[n]) ^ symbols.c:128:47: note: in expansion of macro ?symbols_address? while (low && symbols_address(low - 1) == symbols_address(low)) ^ symbols.c:23:61: error: array subscript i...
2015 Jul 21
0
Bug#793132: xen: FTBFS with glibc 2.21 and gcc-5
...stdinc -DHAS_ACPI -DHAS_GDBSX -DHAS_PASSTHROUGH -DHAS_PCI -DHAS_IOPORTS -MMD -MF .symbols.o.d -c symbols.c -o symbols.o symbols.c: In function 'symbols_lookup': symbols.c:23:61: error: array subscript is above array bounds [-Werror=array-bounds] #define symbols_address(n) (SYMBOLS_ORIGIN + symbols_offsets[n]) ^ symbols.c:128:47: note: in expansion of macro 'symbols_address' while (low && symbols_address(low - 1) == symbols_address(low)) ^ symbols.c:23:61: error: array sub...
2015 Aug 21
1
Bug#796370: xen: Include a reportbug control file to redirect bugs to src:xen
...9;ve also done git flow publish to populate the feature/reportbug branch in git. Note that this also contains two other changes which I needed to be able to build test against current sid: - Added upstream patch 3f82ea62826d4eb06002d8dba475bafcc454b845 "xen: common: Use unbounded array for symbols_offset" for FTBFS with gcc-5 - Update to linux-support-4.1.0-1 You may or may not want those, but I trust you can cherry-pick as you want. Cheers, Ian. -- System Information: Debian Release: stretch/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500,...