Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:fs\io_uring.c Create Date:2022-07-28 20:22:12
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:io_fsync_finish

Proto:static void io_fsync_finish(struct io_wq_work **workptr)

Type:void

Parameter:

TypeParameterName
struct io_wq_work **workptr
2066  req = container_of - cast a member of a structure out to the containing structure*@ptr: the pointer to the member.*@type: the type of the container struct this is embedded in.*@member: the name of the member within the struct.( * workptr, structio_kiocb, work)
2067  end = off + len
2068  struct io_kiocb * nxt = NULL
2071  If io_req_cancelled(req) Then Return
2074  ret = vfs_fsync_range - helper to sync a range of data & metadata to disk*@file: file to sync*@start: offset in bytes of the beginning of data range to sync*@end: offset in bytes of the end of data range (inclusive)*@datasync: perform only datasync
2077  If ret < 0 Then req_set_fail_links(req)
2079  io_cqring_add_event(req, ret)
2080  Drop reference to request, return next in chain (if there is one) if this* was the last reference to this request.
2081  If nxt Then io_wq_assign_next(workptr, nxt)
Caller
NameDescribe
io_fsync