1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
'\" t
.\" Title: probe::ioblock_trace.request
.\" Author:
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\" Date: April 2025
.\" Manual: IO Scheduler and block IO Tapset
.\" Source: SystemTap Tapset Reference
.\" Language: English
.\"
.TH "PROBE::IOBLOCK_TRACE" "3stap" "April 2025" "SystemTap Tapset Reference" "IO Scheduler and block IO Taps"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
probe::ioblock_trace.request \- Fires just as a generic block I/O request is created for a bio\&.
.SH "SYNOPSIS"
.sp
.nf
ioblock_trace\&.request
.fi
.SH "VALUES"
.PP
\fIbdev\fR
.RS 4
target block device
.RE
.PP
\fIino\fR
.RS 4
i\-node number of the mapped file
.RE
.PP
\fIp_start_sect\fR
.RS 4
points to the start sector of the partition structure of the device
.RE
.PP
\fIq\fR
.RS 4
request queue on which this bio was queued\&.
.RE
.PP
\fIbytes_done\fR
.RS 4
number of bytes transferred
.RE
.PP
\fIdevname\fR
.RS 4
block device name
.RE
.PP
\fIsize\fR
.RS 4
total size in bytes
.RE
.PP
\fIname\fR
.RS 4
name of the probe point
.RE
.PP
\fIrw\fR
.RS 4
binary trace for read/write request
.RE
.PP
\fIidx\fR
.RS 4
offset into the bio vector array
\fIphys_segments\fR
\- number of segments in this bio after physical address coalescing is performed\&.
.RE
.PP
\fIopf\fR
.RS 4
operations and flags
.RE
.PP
\fIvcnt\fR
.RS 4
bio vector count which represents number of array element (page, offset, length) which make up this I/O request
.RE
.PP
\fIbdev_contains\fR
.RS 4
points to the device object which contains the partition (when bio structure represents a partition)
.RE
.PP
\fIsector\fR
.RS 4
beginning sector for the entire bio
.RE
.PP
\fIflags\fR
.RS 4
see below BIO_UPTODATE 0 ok after I/O completion BIO_RW_BLOCK 1 RW_AHEAD set, and read/write would block BIO_EOF 2 out\-out\-bounds error BIO_SEG_VALID 3 nr_hw_seg valid BIO_CLONED 4 doesn\*(Aqt own data BIO_BOUNCED 5 bio is a bounce bio BIO_USER_MAPPED 6 contains user pages BIO_EOPNOTSUPP 7 not supported
.RE
.SH "CONTEXT"
.PP
The process makes block I/O request
.SH SEE ALSO\n
.IR tapset::ioblock (3stap)
|