Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/net/ppp/
Dpptp.c45 #define MAX_CALLID 65535 macro
47 static DECLARE_BITMAP(callid_bitmap, MAX_CALLID + 1);
118 for_each_set_bit_from(i, callid_bitmap, MAX_CALLID) { in lookup_chan_dst()
129 return i < MAX_CALLID; in lookup_chan_dst()
139 call_id = find_next_zero_bit(callid_bitmap, MAX_CALLID, call_id + 1); in add_chan()
140 if (call_id == MAX_CALLID) { in add_chan()
141 call_id = find_next_zero_bit(callid_bitmap, MAX_CALLID, 1); in add_chan()
142 if (call_id == MAX_CALLID) in add_chan()
693 callid_sock = vzalloc((MAX_CALLID + 1) * sizeof(void *)); in pptp_init_module()