Re: [PATCH v4 3/3] UBSAN: run-time undefined behavior sanity checker

2015-12-09 Thread Daniel Axtens
Hi Andrey, >+ select ARCH_HAS_UBSAN_SANTIZE_ALL I think you've missed an I in SAN*I*TIZE here. Apart from that, I've tested that this works on PowerPC, so: Tested-by: Daniel Axtens # on PowerPC only Regards, Daniel -- To unsubscribe from this list: send the line "unsubscribe

Re: [PATCH v4 3/3] UBSAN: run-time undefined behavior sanity checker

2015-12-09 Thread Daniel Axtens
Hi Andrey, >+ select ARCH_HAS_UBSAN_SANTIZE_ALL I think you've missed an I in SAN*I*TIZE here. Apart from that, I've tested that this works on PowerPC, so: Tested-by: Daniel Axtens # on PowerPC only Regards, Daniel -- To unsubscribe from this list: send the line

Re: [PATCH v4 3/3] UBSAN: run-time undefined behavior sanity checker

2015-12-08 Thread Andrew Morton
On Thu, 3 Dec 2015 18:50:07 +0300 Andrey Ryabinin wrote: > UBSAN uses compile-time instrumentation to catch undefined behavior (UB). > Compiler inserts code that perform certain kinds of checks before > operations that could cause UB. If check fails (i.e. UB detected) > __ubsan_handle_*

Re: [PATCH v4 3/3] UBSAN: run-time undefined behavior sanity checker

2015-12-08 Thread Andrew Morton
On Thu, 3 Dec 2015 18:50:07 +0300 Andrey Ryabinin wrote: > UBSAN uses compile-time instrumentation to catch undefined behavior (UB). > Compiler inserts code that perform certain kinds of checks before > operations that could cause UB. If check fails (i.e. UB detected) >

Re: [PATCH v4 3/3] UBSAN: run-time undefined behavior sanity checker

2015-12-04 Thread Andrew Morton
On Fri, 4 Dec 2015 22:27:36 +0800 kbuild test robot wrote: > [auto build test WARNING on next-20151203] > [cannot apply to tip/x86/core kbuild/rc-fixes v4.4-rc3 v4.4-rc2 v4.4-rc1 > v4.4-rc3] > > url: >

Re: [PATCH v4 3/3] UBSAN: run-time undefined behavior sanity checker

2015-12-04 Thread kbuild test robot
Hi Andrey, [auto build test WARNING on next-20151203] [cannot apply to tip/x86/core kbuild/rc-fixes v4.4-rc3 v4.4-rc2 v4.4-rc1 v4.4-rc3] url: https://github.com/0day-ci/linux/commits/Andrey-Ryabinin/UBSAN-run-time-undefined-behavior-sanity-checker/20151204-202547 config: i386-allmodconfig

Re: [PATCH v4 3/3] UBSAN: run-time undefined behavior sanity checker

2015-12-04 Thread kbuild test robot
Hi Andrey, [auto build test WARNING on next-20151203] [cannot apply to tip/x86/core kbuild/rc-fixes v4.4-rc3 v4.4-rc2 v4.4-rc1 v4.4-rc3] url: https://github.com/0day-ci/linux/commits/Andrey-Ryabinin/UBSAN-run-time-undefined-behavior-sanity-checker/20151204-202547 config: i386-allmodconfig

Re: [PATCH v4 3/3] UBSAN: run-time undefined behavior sanity checker

2015-12-04 Thread Andrew Morton
On Fri, 4 Dec 2015 22:27:36 +0800 kbuild test robot wrote: > [auto build test WARNING on next-20151203] > [cannot apply to tip/x86/core kbuild/rc-fixes v4.4-rc3 v4.4-rc2 v4.4-rc1 > v4.4-rc3] > > url: >

[PATCH v4 3/3] UBSAN: run-time undefined behavior sanity checker

2015-12-03 Thread Andrey Ryabinin
UBSAN uses compile-time instrumentation to catch undefined behavior (UB). Compiler inserts code that perform certain kinds of checks before operations that could cause UB. If check fails (i.e. UB detected) __ubsan_handle_* function called to print error message. So the most of the work is done by

[PATCH v4 3/3] UBSAN: run-time undefined behavior sanity checker

2015-12-03 Thread Andrey Ryabinin
UBSAN uses compile-time instrumentation to catch undefined behavior (UB). Compiler inserts code that perform certain kinds of checks before operations that could cause UB. If check fails (i.e. UB detected) __ubsan_handle_* function called to print error message. So the most of the work is done by