Home
last modified time | relevance | path

Searched refs:MAX_CALLID (Results 1 – 1 of 1) sorted by relevance

/linux-4.1.27/drivers/net/ppp/
Dpptp.c47 #define MAX_CALLID 65535 macro
49 static DECLARE_BITMAP(callid_bitmap, MAX_CALLID + 1);
120 for_each_set_bit_from(i, callid_bitmap, MAX_CALLID) { in lookup_chan_dst()
131 return i < MAX_CALLID; in lookup_chan_dst()
141 call_id = find_next_zero_bit(callid_bitmap, MAX_CALLID, call_id + 1); in add_chan()
142 if (call_id == MAX_CALLID) { in add_chan()
143 call_id = find_next_zero_bit(callid_bitmap, MAX_CALLID, 1); in add_chan()
144 if (call_id == MAX_CALLID) in add_chan()
694 callid_sock = vzalloc((MAX_CALLID + 1) * sizeof(void *)); in pptp_init_module()