/linux-2.6.39/net/ipv4/ |
D | tcp_veno.c | 117 static void tcp_veno_cong_avoid(struct sock *sk, u32 ack, u32 in_flight) in tcp_veno_cong_avoid() argument 123 tcp_reno_cong_avoid(sk, ack, in_flight); in tcp_veno_cong_avoid() 128 if (!tcp_is_cwnd_limited(sk, in_flight)) in tcp_veno_cong_avoid() 136 tcp_reno_cong_avoid(sk, ack, in_flight); in tcp_veno_cong_avoid()
|
D | tcp_scalable.c | 18 static void tcp_scalable_cong_avoid(struct sock *sk, u32 ack, u32 in_flight) in tcp_scalable_cong_avoid() argument 22 if (!tcp_is_cwnd_limited(sk, in_flight)) in tcp_scalable_cong_avoid()
|
D | tcp_cong.c | 282 int tcp_is_cwnd_limited(const struct sock *sk, u32 in_flight) in tcp_is_cwnd_limited() argument 287 if (in_flight >= tp->snd_cwnd) in tcp_is_cwnd_limited() 290 left = tp->snd_cwnd - in_flight; in tcp_is_cwnd_limited() 361 void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 in_flight) in tcp_reno_cong_avoid() argument 365 if (!tcp_is_cwnd_limited(sk, in_flight)) in tcp_reno_cong_avoid()
|
D | tcp_hybla.c | 88 static void hybla_cong_avoid(struct sock *sk, u32 ack, u32 in_flight) in hybla_cong_avoid() argument 101 if (!tcp_is_cwnd_limited(sk, in_flight)) in hybla_cong_avoid() 105 tcp_reno_cong_avoid(sk, ack, in_flight); in hybla_cong_avoid()
|
D | tcp_vegas.c | 166 static void tcp_vegas_cong_avoid(struct sock *sk, u32 ack, u32 in_flight) in tcp_vegas_cong_avoid() argument 172 tcp_reno_cong_avoid(sk, ack, in_flight); in tcp_vegas_cong_avoid() 197 tcp_reno_cong_avoid(sk, ack, in_flight); in tcp_vegas_cong_avoid()
|
D | tcp_highspeed.c | 112 static void hstcp_cong_avoid(struct sock *sk, u32 adk, u32 in_flight) in hstcp_cong_avoid() argument 117 if (!tcp_is_cwnd_limited(sk, in_flight)) in hstcp_cong_avoid()
|
D | tcp_bic.c | 140 static void bictcp_cong_avoid(struct sock *sk, u32 ack, u32 in_flight) in bictcp_cong_avoid() argument 145 if (!tcp_is_cwnd_limited(sk, in_flight)) in bictcp_cong_avoid()
|
D | tcp_yeah.c | 72 static void tcp_yeah_cong_avoid(struct sock *sk, u32 ack, u32 in_flight) in tcp_yeah_cong_avoid() argument 77 if (!tcp_is_cwnd_limited(sk, in_flight)) in tcp_yeah_cong_avoid()
|
D | tcp_lp.c | 118 static void tcp_lp_cong_avoid(struct sock *sk, u32 ack, u32 in_flight) in tcp_lp_cong_avoid() argument 123 tcp_reno_cong_avoid(sk, ack, in_flight); in tcp_lp_cong_avoid()
|
D | tcp_illinois.c | 259 static void tcp_illinois_cong_avoid(struct sock *sk, u32 ack, u32 in_flight) in tcp_illinois_cong_avoid() argument 268 if (!tcp_is_cwnd_limited(sk, in_flight)) in tcp_illinois_cong_avoid()
|
D | tcp_htcp.c | 230 static void htcp_cong_avoid(struct sock *sk, u32 ack, u32 in_flight) in htcp_cong_avoid() argument 235 if (!tcp_is_cwnd_limited(sk, in_flight)) in htcp_cong_avoid()
|
D | tcp_cubic.c | 303 static void bictcp_cong_avoid(struct sock *sk, u32 ack, u32 in_flight) in bictcp_cong_avoid() argument 308 if (!tcp_is_cwnd_limited(sk, in_flight)) in bictcp_cong_avoid()
|
D | tcp_output.c | 1340 u32 in_flight, cwnd; in tcp_cwnd_test() local 1346 in_flight = tcp_packets_in_flight(tp); in tcp_cwnd_test() 1348 if (in_flight < cwnd) in tcp_cwnd_test() 1349 return (cwnd - in_flight); in tcp_cwnd_test() 1530 u32 send_win, cong_win, limit, in_flight; in tcp_tso_should_defer() local 1544 in_flight = tcp_packets_in_flight(tp); in tcp_tso_should_defer() 1546 BUG_ON(tcp_skb_pcount(skb) <= 1 || (tp->snd_cwnd <= in_flight)); in tcp_tso_should_defer() 1551 cong_win = (tp->snd_cwnd - in_flight) * tp->mss_cache; in tcp_tso_should_defer()
|
/linux-2.6.39/include/linux/ |
D | genhd.h | 112 atomic_t in_flight[2]; member 373 atomic_inc(&part->in_flight[rw]); in part_inc_in_flight() 375 atomic_inc(&part_to_disk(part)->part0.in_flight[rw]); in part_inc_in_flight() 380 atomic_dec(&part->in_flight[rw]); in part_dec_in_flight() 382 atomic_dec(&part_to_disk(part)->part0.in_flight[rw]); in part_dec_in_flight() 387 return atomic_read(&part->in_flight[0]) + atomic_read(&part->in_flight[1]); in part_in_flight()
|
D | blkdev.h | 346 unsigned int in_flight[2]; member 466 return q->in_flight[0] + q->in_flight[1]; in queue_in_flight()
|
/linux-2.6.39/drivers/usb/serial/ |
D | usb_wwan.c | 253 intfdata->in_flight++; in usb_wwan_write() 261 intfdata->in_flight--; in usb_wwan_write() 343 intfdata->in_flight--; in usb_wwan_outdat_callback() 656 b = intfdata->in_flight; in usb_wwan_suspend() 696 data->in_flight++; in play_delayed()
|
D | usb-wwan.h | 42 int in_flight; member
|
D | sierra.c | 61 int in_flight; member 469 --intfdata->in_flight; in sierra_outdat_callback() 561 intfdata->in_flight++; in sierra_write() 1015 b = intfdata->in_flight; in sierra_suspend() 1046 intfdata->in_flight++; in sierra_resume() 1049 intfdata->in_flight--; in sierra_resume()
|
/linux-2.6.39/Documentation/block/ |
D | stat.txt | 31 in_flight requests number of I/Os currently in flight 63 in_flight
|
/linux-2.6.39/drivers/block/drbd/ |
D | drbd_bitmap.c | 892 atomic_t in_flight; member 943 if (atomic_dec_and_test(&ctx->in_flight)) in bm_async_io_complete() 1007 .in_flight = ATOMIC_INIT(1), in bm_rw() 1050 atomic_inc(&ctx.in_flight); in bm_rw() 1061 if (!atomic_dec_and_test(&ctx.in_flight)) in bm_rw() 1136 .in_flight = ATOMIC_INIT(1), in drbd_bm_write_page()
|
/linux-2.6.39/drivers/crypto/ |
D | picoxcell_crypto.c | 112 int in_flight; member 709 ++engine->in_flight; in spacc_aead_setup() 1052 ++engine->in_flight; in spacc_ablk_setup() 1226 engine->in_flight -= num_removed; in spacc_spacc_complete() 1233 ++engine->in_flight; in spacc_spacc_complete() 1237 if (engine->in_flight) in spacc_spacc_complete() 1752 engine->in_flight = 0; in spacc_probe()
|
/linux-2.6.39/block/ |
D | blk-tag.c | 363 if (q->in_flight[BLK_RW_ASYNC] > max_depth) in blk_queue_start_tag()
|
D | elevator.c | 606 q->in_flight[rq_is_sync(rq)]--; in elv_requeue_request() 826 q->in_flight[rq_is_sync(rq)]--; in elv_completed_request()
|
/linux-2.6.39/fs/partitions/ |
D | check.c | 293 return sprintf(buf, "%8u %8u\n", atomic_read(&p->in_flight[0]), in part_inflight_show() 294 atomic_read(&p->in_flight[1])); in part_inflight_show()
|
/linux-2.6.39/include/net/ |
D | tcp.h | 675 void (*cong_avoid)(struct sock *sk, u32 ack, u32 in_flight); 707 extern void tcp_reno_cong_avoid(struct sock *sk, u32 ack, u32 in_flight); 824 extern int tcp_is_cwnd_limited(const struct sock *sk, u32 in_flight);
|