netdev
[Top] [All Lists]

[PATCH][2.5] list_move_tail for sunrpc (1 occ)

To: Linux Network <linux-net@xxxxxxxxxxxxxxx>
Subject: [PATCH][2.5] list_move_tail for sunrpc (1 occ)
From: Lightweight patch manager <patch@xxxxxxxxxxxxxxxxx>
Date: Sun, 9 Jun 2002 09:04:15 -0600 (MDT)
Cc: Linux Networking Team <netdev@xxxxxxxxxxx>
Sender: owner-netdev@xxxxxxxxxxx
This patch introduces the new list_move_tail macro for the sunrpc driver
(net/sunrpc/svcsock.c)

--- linus-2.5/net/sunrpc/svcsock.c      Sun Jun  9 04:17:42 2002
+++ thunder-2.5/net/sunrpc/svcsock.c    Sun Jun  9 07:43:53 2002
@@ -1065,8 +1065,7 @@
        if (test_bit(SK_TEMP, &svsk->sk_flags)) {
                /* push active sockets to end of list */
                spin_lock_bh(&serv->sv_lock);
-               list_del(&svsk->sk_list);
-               list_add_tail(&svsk->sk_list, &serv->sv_tempsocks);
+               list_move_tail(&svsk->sk_list, &serv->sv_tempsocks);
                spin_unlock_bh(&serv->sv_lock);
        }
 

-- 
Lightweight patch manager using pine. If you have any objections, tell me.


<Prev in Thread] Current Thread [Next in Thread>
  • [PATCH][2.5] list_move_tail for sunrpc (1 occ), Lightweight patch manager <=