liquidio: use list_empty_careful in lio_list_delete_head

Use list_empty_careful() instead of open-coding.

Signed-off-by: Geliang Tang <geliangtang@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Geliang Tang 2020-06-28 18:14:13 +08:00 коммит произвёл David S. Miller
Родитель 6fc3e68f5b
Коммит b8483ecaf7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -612,7 +612,7 @@ static inline struct list_head *lio_list_delete_head(struct list_head *root)
{
struct list_head *node;
if (root->prev == root && root->next == root)
if (list_empty_careful(root))
node = NULL;
else
node = root->next;