mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 15:11:31 +00:00
net: qede: Use list_for_each_entry() to simplify code
Convert list_for_each() to list_for_each_entry() where applicable. This simplifies the code. Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Wang Hai <wanghai38@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1c7536528c
commit
36861d1f04
@ -247,12 +247,10 @@ static struct qede_rdma_event_work *
|
||||
qede_rdma_get_free_event_node(struct qede_dev *edev)
|
||||
{
|
||||
struct qede_rdma_event_work *event_node = NULL;
|
||||
struct list_head *list_node = NULL;
|
||||
bool found = false;
|
||||
|
||||
list_for_each(list_node, &edev->rdma_info.rdma_event_list) {
|
||||
event_node = list_entry(list_node, struct qede_rdma_event_work,
|
||||
list);
|
||||
list_for_each_entry(event_node, &edev->rdma_info.rdma_event_list,
|
||||
list) {
|
||||
if (!work_pending(&event_node->work)) {
|
||||
found = true;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user