ipv6: bool/const conversions phase2
[deliverable/linux.git] / drivers / net / ppp / pptp.c
index 885dbdd9c39e0f9ea1101d7a5642fc52d6a081a7..72b50f57e7b28df4a0be367c219dc2cee3022739 100644 (file)
@@ -116,8 +116,8 @@ static int lookup_chan_dst(u16 call_id, __be32 d_addr)
        int i;
 
        rcu_read_lock();
-       for (i = find_next_bit(callid_bitmap, MAX_CALLID, 1); i < MAX_CALLID;
-            i = find_next_bit(callid_bitmap, MAX_CALLID, i + 1)) {
+       i = 1;
+       for_each_set_bit_from(i, callid_bitmap, MAX_CALLID) {
                sock = rcu_dereference(callid_sock[i]);
                if (!sock)
                        continue;
This page took 0.023898 seconds and 5 git commands to generate.