Re: [PATCH] jump_label: align jump_entry table to at least 4-bytes

From: David Daney
Date: Tue Feb 28 2017 - 13:53:24 EST


On 02/28/2017 08:21 AM, Steven Rostedt wrote:
On Tue, 28 Feb 2017 10:25:46 +0530
Sachin Sant <sachinp@xxxxxxxxxxxxxxxxxx> wrote:

File: ./net/ipv4/xfrm4_input.o
[12] __jump_table PROGBITS 0000000000000000 000639 000018 18 WAM 0 0 1
File: ./net/ipv4/udplite.o
File: ./net/ipv4/xfrm4_output.o
[ 9] __jump_table PROGBITS 0000000000000000 000481 000018 18 WAM 0 0 1

Looks like there's some issues right there.

Those look good to me 18/18 = 1 with no remainder. The odd numbers are the offset of the section in the ELF file.

If you look at the stack trace, it seems that it is during module loading.

Are the primitives for generating the tables doing something different for the module case? I am not familiar enough with the powerpc ABIs to know.

Try this:

$ perl -n -e 's/\[ /\[/; my @f = split " "; print hex($f[5]) % 0x18 if $#f > 5; print $_' <~/jump_table.log


There are no entries with size that is not a multiple of 0x18.

I think my patch to add the ENTSIZE is not doing anything here.

I suspect that the alignment of the __jump_table section in the .ko files is not correct, and you are seeing some sort of problem due to that.





-- Steve