]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - share/man/man9/physio.9
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / share / man / man9 / physio.9
1 .\"     $NetBSD: physio.9,v 1.2 1996/11/11 00:05:12 lukem Exp $
2 .\"
3 .\" Copyright (c) 1996 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
5 .\"
6 .\" This code is derived from software contributed to The NetBSD Foundation
7 .\" by Paul Kranenburg.
8 .\"
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
11 .\" are met:
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\"    notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\"    notice, this list of conditions and the following disclaimer in the
16 .\"    documentation and/or other materials provided with the distribution.
17 .\" 3. All advertising materials mentioning features or use of this software
18 .\"    must display the following acknowledgement:
19 .\"        This product includes software developed by the NetBSD
20 .\"        Foundation, Inc. and its contributors.
21 .\" 4. Neither the name of The NetBSD Foundation nor the names of its
22 .\"    contributors may be used to endorse or promote products derived
23 .\"    from this software without specific prior written permission.
24 .\"
25 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
26 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
29 .\" LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 .\" POSSIBILITY OF SUCH DAMAGE.
36 .\"
37 .\" $FreeBSD$
38 .\"
39 .Dd July 8, 2004
40 .Dt PHYSIO 9
41 .Os
42 .Sh NAME
43 .Nm physio
44 .Nd initiate I/O on raw devices
45 .Sh SYNOPSIS
46 .In sys/param.h
47 .In sys/systm.h
48 .In sys/bio.h
49 .In sys/buf.h
50 .Ft int
51 .Fn physio "dev_t dev" "struct uio *uio" "int ioflag"
52 .Sh DESCRIPTION
53 The
54 .Fn physio
55 is a helper function typically called from character device
56 .Fn read
57 and
58 .Fn write
59 routines to start I/O on a user process buffer.
60 The maximum amount of data to transfer with each call
61 is determined by
62 .Fa dev->si_iosize_max .
63 The
64 .Fn physio
65 call converts the I/O request into a
66 .Fn strategy
67 request and passes the new request to the driver's
68 .Fn strategy
69 routine for processing.
70 .Pp
71 Since
72 .Fa uio
73 normally describes user space addresses,
74 .Fn physio
75 needs to lock those pages into memory.
76 This is done by calling
77 .Fn vmapbuf
78 for the appropriate pages.
79 .Fn physio
80 always awaits the completion of the entire requested transfer before
81 returning, unless an error condition is detected earlier.
82 .Pp
83 A break-down of the arguments follows:
84 .Bl -tag -width indent
85 .It Fa dev
86 The device number identifying the device to interact with.
87 .It Fa uio
88 The description of the entire transfer as requested by the user process.
89 Currently, the results of passing a
90 .Fa uio
91 structure with the
92 .Va uio_segflg
93 set to anything other than
94 .Dv UIO_USERSPACE
95 are undefined.
96 .It Fa ioflag
97 The ioflag argument from the
98 .Fn read
99 or
100 .Fn write
101 function calling
102 .Fn physio .
103 .El
104 .Sh RETURN VALUES
105 If successful
106 .Fn physio
107 returns 0.
108 .Er EFAULT
109 is returned if the address range described by
110 .Fa uio
111 is not accessible by the requesting process.
112 .Fn physio
113 will return any error resulting from calls to the device strategy routine,
114 by examining the
115 .Dv B_ERROR
116 buffer flag and the
117 .Va b_error
118 field.
119 Note that the actual transfer size may be less than requested by
120 .Fa uio
121 if the device signals an
122 .Dq "end of file"
123 condition.
124 .Sh SEE ALSO
125 .Xr read 2 ,
126 .Xr write 2
127 .Sh HISTORY
128 The
129 .Nm
130 manual page is originally from
131 .Nx
132 with minor changes for applicability with
133 .Fx .
134 .Pp
135 The
136 .Nm
137 call has been completely re-written for providing higher
138 I/O and paging performance.