mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
fs: dlm: plock use list_first_entry
This patch will use the list helper list_first_entry() instead of using list_entry() to get the first element of a list. Signed-off-by: Alexander Aring <aahringo@redhat.com> Signed-off-by: David Teigland <teigland@redhat.com>
This commit is contained in:
parent
a111daf0c5
commit
976a062434
1 changed files with 1 additions and 1 deletions
|
@ -378,7 +378,7 @@ static ssize_t dev_read(struct file *file, char __user *u, size_t count,
|
|||
|
||||
spin_lock(&ops_lock);
|
||||
if (!list_empty(&send_list)) {
|
||||
op = list_entry(send_list.next, struct plock_op, list);
|
||||
op = list_first_entry(&send_list, struct plock_op, list);
|
||||
if (op->info.flags & DLM_PLOCK_FL_CLOSE)
|
||||
list_del(&op->list);
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue