函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:mm\backing-dev.c Create Date:2022-07-27 15:48:51
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:wait_iff_congested - Conditionally wait for a backing_dev to become uncongested or a pgdat to complete writes*@sync: SYNC or ASYNC IO*@timeout: timeout in jiffies* In the event of a congested backing_dev (any backing_dev) this waits* for up to @timeout

函数原型:long wait_iff_congested(int sync, long timeout)

返回类型:long

参数:

类型参数名称
intsync
longtimeout
1119  start等于jiffies
1120  DEFINE_WAIT(wait)
1121  wqh等于congestion_wqh[sync]
1127  如果atomic_read( & nr_wb_congested[sync])恒等于0则
1128  cond_resched()
1131  ret等于timeoutjiffiesstart
1132  如果ret小于0则ret等于0
1135  转到:out
1139  Note: we use "set_current_state()" _after_ the wait-queue add,* because we need a memory barrier there on SMP, so that any* wake-function that tests for the wait-queue being active* will be guaranteed to see waitqueue addition _or_ subsequent
1140  ret等于This task is about to go to sleep on IO. Increment rq->nr_iowait so* that process accounting knows that this is a task in IO wait state.
1141  sh_wait - clean up after waiting in a queue*@wq_head: waitqueue waited on*@wq_entry: wait descriptor* Sets current thread back to running state and removes* the wait descriptor from the given waitqueue if still* queued.
1143  out :
1144  trace_writeback_wait_iff_congested(jiffies_to_usecs(timeout), jiffies_to_usecs(jiffies - start))
1147  返回:ret
调用者
名称描述
shrink_node