NFC: llcp: Use list_for_each_entry in llcp_accept_poll
authorAxel Lin <axel.lin@ingics.com>
Thu, 6 Nov 2014 10:20:41 +0000 (18:20 +0800)
committerSamuel Ortiz <sameo@linux.intel.com>
Fri, 28 Nov 2014 12:41:44 +0000 (13:41 +0100)
list_for_each_entry_safe() is necessary if list objects are deleted from
the list while traversing it. Not the case here, so we can use the base
list_for_each_entry variant.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
net/nfc/llcp_sock.c

index 51f077a92fa9220eb987b7b9185efcc75312328a..4894c415c4414885ada7d558da3d142105e8788b 100644 (file)
@@ -524,13 +524,13 @@ static int llcp_sock_getname(struct socket *sock, struct sockaddr *uaddr,
 
 static inline unsigned int llcp_accept_poll(struct sock *parent)
 {
-       struct nfc_llcp_sock *llcp_sock, *n, *parent_sock;
+       struct nfc_llcp_sock *llcp_sock, *parent_sock;
        struct sock *sk;
 
        parent_sock = nfc_llcp_sock(parent);
 
-       list_for_each_entry_safe(llcp_sock, n, &parent_sock->accept_queue,
-                                accept_queue) {
+       list_for_each_entry(llcp_sock, &parent_sock->accept_queue,
+                           accept_queue) {
                sk = &llcp_sock->sk;
 
                if (sk->sk_state == LLCP_CONNECTED)