Lines Matching refs:lopt
248 struct listen_sock *lopt = queue->listen_opt; in reqsk_queue_removed() local
251 atomic_inc(&lopt->young_dec); in reqsk_queue_removed()
252 atomic_inc(&lopt->qlen_dec); in reqsk_queue_removed()
257 struct listen_sock *lopt = queue->listen_opt; in reqsk_queue_added() local
259 lopt->young_inc++; in reqsk_queue_added()
260 lopt->qlen_inc++; in reqsk_queue_added()
263 static inline int listen_sock_qlen(const struct listen_sock *lopt) in listen_sock_qlen() argument
265 return lopt->qlen_inc - atomic_read(&lopt->qlen_dec); in listen_sock_qlen()
268 static inline int listen_sock_young(const struct listen_sock *lopt) in listen_sock_young() argument
270 return lopt->young_inc - atomic_read(&lopt->young_dec); in listen_sock_young()
275 const struct listen_sock *lopt = queue->listen_opt; in reqsk_queue_len() local
277 return lopt ? listen_sock_qlen(lopt) : 0; in reqsk_queue_len()