Re: [PATCH 8/9] KVM: Adjust seven checks for null pointers

2017-01-23 Thread Dan Carpenter
Hm... GCC complains about "if (array)" but not about "if (array != NULL) ". I view this as a bug in GCC... But you should still be seeing these compile warnings. This is something like the 6th warning that kbuild has had to send you. regards, dan carpenter

Re: [PATCH 8/9] KVM: Adjust seven checks for null pointers

2017-01-22 Thread kbuild test robot
Hi Markus, [auto build test ERROR on kvm/linux-next] [also build test ERROR on v4.10-rc4 next-20170120] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/SF-Markus-Elfring/KVM-Fine-tuning-for-sever

Re: [PATCH 8/9] KVM: Adjust seven checks for null pointers

2017-01-22 Thread kbuild test robot
Hi Markus, [auto build test WARNING on kvm/linux-next] [also build test WARNING on v4.10-rc4 next-20170120] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/SF-Markus-Elfring/KVM-Fine-tuning-for-s

[PATCH 8/9] KVM: Adjust seven checks for null pointers

2017-01-22 Thread SF Markus Elfring
From: Markus Elfring Date: Sun, 22 Jan 2017 18:54:22 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The script "checkpatch.pl" pointed information out like the following. Comparison to NULL could be written … Thus fix affected source code places.