Searched refs:in_flight (Results 1 - 22 of 22) sorted by last modified time

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Ddm.c357 dm_disk(md)->in_flight = atomic_inc_return(&md->pending);
371 dm_disk(md)->in_flight = pending = atomic_dec_return(&md->pending);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/block/
H A Das-iosched.c539 unsigned long in_flight = atomic_read(&aic->nr_queued) local
546 && in_flight == 0) {
H A Delevator.c521 * in_flight count again
524 q->in_flight--;
639 - q->in_flight;
791 q->in_flight++;
866 q->in_flight--;
877 if (q->in_flight == 0 &&
H A Dgenhd.c448 disk->in_flight,
673 gp->in_flight,
H A Dll_rw_blk.c470 if ((q->ordered & QUEUE_ORDERED_TAG) || q->in_flight == 0)
2691 rq->rq_disk->in_flight++;
2733 if (disk->in_flight) {
2735 disk->in_flight * (now - disk->stamp));
2858 req->rq_disk->in_flight--;
3653 disk->in_flight--;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/net/
H A Dtcp.h649 u32 rtt, u32 in_flight, int good_ack);
681 u32 rtt, u32 in_flight, int flag);
757 static inline int tcp_is_cwnd_limited(const struct sock *sk, u32 in_flight) argument
762 if (in_flight >= tp->snd_cwnd)
768 left = tp->snd_cwnd - in_flight;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dblkdev.h450 unsigned int in_flight; member in struct:request_queue
H A Dgenhd.h137 int in_flight; member in struct:gendisk
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/
H A Dtcp_bic.c140 u32 seq_rtt, u32 in_flight, int data_acked)
145 if (!tcp_is_cwnd_limited(sk, in_flight))
139 bictcp_cong_avoid(struct sock *sk, u32 ack, u32 seq_rtt, u32 in_flight, int data_acked) argument
H A Dtcp_cong.c327 void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 rtt, u32 in_flight, argument
332 if (!tcp_is_cwnd_limited(sk, in_flight))
H A Dtcp_cubic.c273 u32 seq_rtt, u32 in_flight, int data_acked)
281 if (!tcp_is_cwnd_limited(sk, in_flight))
272 bictcp_cong_avoid(struct sock *sk, u32 ack, u32 seq_rtt, u32 in_flight, int data_acked) argument
H A Dtcp_highspeed.c113 u32 in_flight, int data_acked)
118 if (!tcp_is_cwnd_limited(sk, in_flight))
112 hstcp_cong_avoid(struct sock *sk, u32 adk, u32 rtt, u32 in_flight, int data_acked) argument
H A Dtcp_htcp.c229 u32 in_flight, int data_acked)
234 if (!tcp_is_cwnd_limited(sk, in_flight))
228 htcp_cong_avoid(struct sock *sk, u32 ack, u32 rtt, u32 in_flight, int data_acked) argument
H A Dtcp_hybla.c89 u32 in_flight, int flag)
102 if (!tcp_is_cwnd_limited(sk, in_flight))
106 return tcp_reno_cong_avoid(sk, ack, rtt, in_flight, flag);
88 hybla_cong_avoid(struct sock *sk, u32 ack, u32 rtt, u32 in_flight, int flag) argument
H A Dtcp_illinois.c262 u32 in_flight, int flag)
271 if (!tcp_is_cwnd_limited(sk, in_flight))
261 tcp_illinois_cong_avoid(struct sock *sk, u32 ack, u32 rtt, u32 in_flight, int flag) argument
H A Dtcp_input.c1576 * in_flight = packets_out - left_out + retrans_out
1599 * lost_out = packets_out and in_flight = retrans_out.
2324 u32 in_flight, int good)
2327 icsk->icsk_ca_ops->cong_avoid(sk, ack, rtt, in_flight, good);
2323 tcp_cong_avoid(struct sock *sk, u32 ack, u32 rtt, u32 in_flight, int good) argument
H A Dtcp_lp.c118 static void tcp_lp_cong_avoid(struct sock *sk, u32 ack, u32 rtt, u32 in_flight, argument
124 tcp_reno_cong_avoid(sk, ack, rtt, in_flight, flag);
H A Dtcp_output.c966 u32 in_flight, cwnd; local
973 in_flight = tcp_packets_in_flight(tp);
975 if (in_flight < cwnd)
976 return (cwnd - in_flight);
1157 u32 send_win, cong_win, limit, in_flight; local
1169 in_flight = tcp_packets_in_flight(tp);
1172 (tp->snd_cwnd <= in_flight));
1176 /* From in_flight test above, we know that cwnd > in_flight. */
1177 cong_win = (tp->snd_cwnd - in_flight) * t
[all...]
H A Dtcp_scalable.c19 u32 in_flight, int flag)
23 if (!tcp_is_cwnd_limited(sk, in_flight))
18 tcp_scalable_cong_avoid(struct sock *sk, u32 ack, u32 rtt, u32 in_flight, int flag) argument
H A Dtcp_vegas.c166 u32 seq_rtt, u32 in_flight, int flag)
172 return tcp_reno_cong_avoid(sk, ack, seq_rtt, in_flight, flag);
231 tcp_reno_cong_avoid(sk, ack, seq_rtt, in_flight, flag);
165 tcp_vegas_cong_avoid(struct sock *sk, u32 ack, u32 seq_rtt, u32 in_flight, int flag) argument
H A Dtcp_veno.c118 u32 seq_rtt, u32 in_flight, int flag)
124 return tcp_reno_cong_avoid(sk, ack, seq_rtt, in_flight, flag);
127 if (!tcp_is_cwnd_limited(sk, in_flight))
135 tcp_reno_cong_avoid(sk, ack, seq_rtt, in_flight, flag);
117 tcp_veno_cong_avoid(struct sock *sk, u32 ack, u32 seq_rtt, u32 in_flight, int flag) argument
H A Dtcp_yeah.c73 u32 seq_rtt, u32 in_flight, int flag)
78 if (!tcp_is_cwnd_limited(sk, in_flight))
72 tcp_yeah_cong_avoid(struct sock *sk, u32 ack, u32 seq_rtt, u32 in_flight, int flag) argument

Completed in 178 milliseconds