This comparison should be != NULL, else a NULL pointer could be
dereferenced.
Lustre-change: https://review.whamcloud.com/43558
Lustre-commit:
0024460d797490ae90a2221cb5d4648c9d4fac82
Test-Parameters: trivial
Fixes:
34b57a6f8fcd ("LU-12678 lnet: use list_first_entry() in lnet/klnds subdirectory.")
Signed-off-by: Mr NeilBrown <neilb@suse.de>
Change-Id: I4510e2e0f2eb7b5bf86626e5ddb5ee537d3fae02
Reviewed-on: https://review.whamcloud.com/48245
Reviewed-by: Andreas Dilger <adilger@whamcloud.com>
Tested-by: Andreas Dilger <adilger@whamcloud.com>
spin_lock(&ps->ps_lock);
while ((po = list_first_entry_or_null(&ps->ps_pool_list,
struct kib_pool,
- po_list)) == NULL) {
+ po_list)) != NULL) {
po->po_failed = 1;
if (po->po_allocated == 0)
list_move(&po->po_list, zombies);