Re: [PATCH 1/2] powerpc/kprobes: Remove redundant code

2020-02-18 Thread Christophe Leroy
Le 18/02/2020 à 15:39, Naveen N. Rao a écrit : Christophe Leroy wrote: At the time being we have something like if (something) {     p = get();     if (p) {     if (something_wrong)     goto out;     ...     return;     } else if (a != b)

Re: [PATCH 1/2] powerpc/kprobes: Remove redundant code

2020-02-18 Thread Naveen N. Rao
Christophe Leroy wrote: At the time being we have something like if (something) { p = get(); if (p) { if (something_wrong) goto out; ... return;

[PATCH 1/2] powerpc/kprobes: Remove redundant code

2020-02-14 Thread Christophe Leroy
At the time being we have something like if (something) { p = get(); if (p) { if (something_wrong) goto out; ... return; } else if (a !=