Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/drivers/block/drbd/
H A Ddrbd_req.c337 list_for_each_entry_continue(req, &connection->transfer_log, tl_requests) { in advance_conn_req_next()
342 if (&req->tl_requests == &connection->transfer_log) in advance_conn_req_next()
363 list_for_each_entry_continue(req, &connection->transfer_log, tl_requests) { in advance_conn_req_ack_pending()
368 if (&req->tl_requests == &connection->transfer_log) in advance_conn_req_ack_pending()
389 list_for_each_entry_continue(req, &connection->transfer_log, tl_requests) { in advance_conn_req_not_net_done()
394 if (&req->tl_requests == &connection->transfer_log) in advance_conn_req_not_net_done()
1354 list_add_tail(&req->tl_requests, &first_peer_device(device)->connection->transfer_log); in drbd_send_and_submit()
H A Ddrbd_main.c195 list_for_each_entry(r, &connection->transfer_log, tl_requests) { in tl_release()
240 list_for_each_entry(req, &connection->transfer_log, tl_requests) in tl_release()
245 req = list_prepare_entry(tmp, &connection->transfer_log, tl_requests); in tl_release()
246 list_for_each_entry_safe_from(req, r, &connection->transfer_log, tl_requests) { in tl_release()
274 list_for_each_entry_safe(req, r, &connection->transfer_log, tl_requests) in _tl_restart()
308 list_for_each_entry_safe(req, r, &connection->transfer_log, tl_requests) { in tl_abort_disk_io()
2633 INIT_LIST_HEAD(&connection->transfer_log); in conn_create()
H A Ddrbd_debugfs.c311 list_for_each_entry(req, &connection->transfer_log, tl_requests) { in seq_print_resource_transfer_log_summary()
326 if (&req->tl_requests == &connection->transfer_log) in seq_print_resource_transfer_log_summary()
H A Ddrbd_int.h717 struct list_head transfer_log; /* all requests not yet fully processed */ member