Home
last modified time | relevance | path

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

/linux/fs/
H A Dfs-writeback.c1622 struct wait_queue_head *wq_head; in inode_wait_for_writeback() local
1629 wq_head = inode_bit_waitqueue(&wqe, inode, __I_SYNC); in inode_wait_for_writeback()
1631 prepare_to_wait_event(wq_head, &wqe.wq_entry, TASK_UNINTERRUPTIBLE); in inode_wait_for_writeback()
1639 finish_wait(wq_head, &wqe.wq_entry); in inode_wait_for_writeback()
1651 struct wait_queue_head *wq_head; in inode_sleep_on_writeback() local
1656 wq_head = inode_bit_waitqueue(&wqe, inode, __I_SYNC); in inode_sleep_on_writeback()
1657 prepare_to_wait_event(wq_head, &wqe.wq_entry, TASK_UNINTERRUPTIBLE); in inode_sleep_on_writeback()
1663 finish_wait(wq_head, &wqe.wq_entry); in inode_sleep_on_writeback()
/linux/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dreporter_rx.c263 u16 wq_head; in mlx5e_rx_reporter_build_diagnose_output_rq_common() local
271 wq_head = mlx5e_rqwq_get_head(rq); in mlx5e_rx_reporter_build_diagnose_output_rq_common()
278 devlink_fmsg_u32_pair_put(fmsg, "cc", wq_head); in mlx5e_rx_reporter_build_diagnose_output_rq_common()
/linux/tools/memory-model/Documentation/
H A Drecipes.txt510 * @cond = true; prepare_to_wait(&wq_head, &wait, state);
512 * if (waitqueue_active(wq_head)) if (@cond)
513 * wake_up(wq_head); break;
516 * finish_wait(&wq_head, &wait);
519 On CPU1, prepare_to_wait() contains both a store to wq_head and a call