Skip to content

Commit

Permalink
crypto: cavium/nitrox - Fix 'nitrox_get_first_device()' when ndevlist…
Browse files Browse the repository at this point in the history
… is fully iterated

When a list is completely iterated with 'list_for_each_entry(x, ...)', x is
not NULL at the end.

While at it, remove a useless initialization of the ndev variable. It
is overridden by 'list_for_each_entry'.

Fixes: f266387 ("crypto: cavium - Register the CNN55XX supported crypto algorithms.")
Cc: <[email protected]>
Signed-off-by: Christophe JAILLET <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
tititiou36 authored and herbertx committed Jun 4, 2020
1 parent 281c377 commit 320bdbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/crypto/cavium/nitrox/nitrox_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -278,15 +278,15 @@ static void nitrox_remove_from_devlist(struct nitrox_device *ndev)

struct nitrox_device *nitrox_get_first_device(void)
{
struct nitrox_device *ndev = NULL;
struct nitrox_device *ndev;

mutex_lock(&devlist_lock);
list_for_each_entry(ndev, &ndevlist, list) {
if (nitrox_ready(ndev))
break;
}
mutex_unlock(&devlist_lock);
if (!ndev)
if (&ndev->list == &ndevlist)
return NULL;

refcount_inc(&ndev->refcnt);
Expand Down

0 comments on commit 320bdbd

Please sign in to comment.