On Tue, Apr 03, 2018 at 12:28:26PM +0200, Greg Kroah-Hartman wrote: > On Sun, Apr 01, 2018 at 03:44:46AM -0700, Nathan Chancellor wrote: > > db0a6fb5d97a ("audit: add tty field to LOGIN event") > > This feels like a new feature, not a clang build warning fix, right? > Why is it needed? > > thanks, > > greg k-h It very well might but it does fix the following Clang warning: ../kernel/audit.c:1894:59: warning: address of array 'tsk->signal->tty->name' will always evaluate to 'true' [-Wpointer-bool-conversion] if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name) ~~ ~~~~~~~~~~~~~~~~~~^~~~ 1 warning generated. I guess a 4.4 only fix would be to remove the '&& tsk->signal->tty->name' but I know you have said many times that just taking the patch in Linus' tree is preferred. Thanks! Nathan