Re: [PATCH] scripts: objdiff: Ignore debug info when comparing

2017-03-10 Thread Masahiro Yamada
2017-02-17 6:18 GMT+09:00 Stephen Boyd : > If the kernel is configured to be built with debug symbols, or > has bug tables, comparing files may not work if line numbers > change. This makes comparing object files with these options > harder to do. Let's strip out the debug info and drop the > __bug

Re: [PATCH] scripts: objdiff: Ignore debug info when comparing

2017-02-25 Thread Masahiro Yamada
Hi. 2017-02-17 6:18 GMT+09:00 Stephen Boyd : > If the kernel is configured to be built with debug symbols, or > has bug tables, comparing files may not work if line numbers > change. This makes comparing object files with these options > harder to do. Let's strip out the debug info and drop the >

Re: [PATCH] scripts: objdiff: Ignore debug info when comparing

2017-02-17 Thread Jason Cooper
Hi Stephen, On Thu, Feb 16, 2017 at 01:18:20PM -0800, Stephen Boyd wrote: > If the kernel is configured to be built with debug symbols, or > has bug tables, comparing files may not work if line numbers > change. This makes comparing object files with these options > harder to do. Let's strip out t

[PATCH] scripts: objdiff: Ignore debug info when comparing

2017-02-16 Thread Stephen Boyd
If the kernel is configured to be built with debug symbols, or has bug tables, comparing files may not work if line numbers change. This makes comparing object files with these options harder to do. Let's strip out the debug info and drop the __bug_table here so that we don't see false positives. T