iwm: Fix S:N reporting in ifconfig(8)
[dragonfly.git] / lib / libc / gen / getmntinfo.3
1 .\" Copyright (c) 1989, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)getmntinfo.3        8.1 (Berkeley) 6/9/93
29 .\" $FreeBSD: src/lib/libc/gen/getmntinfo.3,v 1.8.2.4 2003/03/13 18:05:37 trhodes Exp $
30 .\"
31 .Dd April 1, 2011
32 .Dt GETMNTINFO 3
33 .Os
34 .Sh NAME
35 .Nm getmntinfo ,
36 .Nm getmntvinfo
37 .Nd get information about mounted file systems
38 .Sh LIBRARY
39 .Lb libc
40 .Sh SYNOPSIS
41 .In sys/param.h
42 .In sys/ucred.h
43 .In sys/mount.h
44 .Ft int
45 .Fn getmntinfo "struct statfs **mntbufp" "int flags"
46 .Ft int
47 .Fn getmntvinfo "struct statfs **mntbufp" "struct statvfs **mntvbufp" "int flags"
48 .Sh DESCRIPTION
49 The
50 .Fn getmntinfo
51 function
52 returns an array of
53 .Fn statfs
54 structures describing each currently mounted file system (see
55 .Xr statfs 2 ) .
56 .Pp
57 The
58 .Fn getmntinfo
59 function
60 passes its
61 .Fa flags
62 argument transparently to
63 .Xr getfsstat 2 .
64 .Pp
65 The
66 .Fn getmntvinfo
67 function
68 returns an array of
69 .Vt statfs
70 and
71 .Vt statvfs
72 structures describing each currently mounted file system (see
73 .Xr statfs 2 ) ,
74 and otherwise works like
75 .Fn getmntinfo .
76 .Sh RETURN VALUES
77 On successful completion,
78 .Fn getmntinfo
79 returns a count of the number of elements in the array.
80 The pointer to the array is stored into
81 .Fa mntbufp .
82 .Pp
83 If an error occurs, zero is returned and the external variable
84 .Va errno
85 is set to indicate the error.
86 Although the pointer
87 .Fa mntbufp
88 will be unmodified, any information previously returned by
89 .Fn getmntinfo
90 will be lost.
91 .Pp
92 The
93 .Fn getmntvinfo
94 function
95 additionally stores the pointer to the
96 .Vt statvfs
97 array into
98 .Fa mntvbufp .
99 .Sh ERRORS
100 The
101 .Fn getmntinfo
102 and
103 .Fn getmntvinfo
104 functions may fail and set
105 .Va errno
106 for any of the errors specified for the library routines
107 .Xr getfsstat 2 ,
108 .Xr getvfsstat 2
109 or
110 .Xr malloc 3 .
111 .Sh SEE ALSO
112 .Xr getfsstat 2 ,
113 .Xr getvfsstat 2 ,
114 .Xr mount 2 ,
115 .Xr statfs 2 ,
116 .Xr mount 8
117 .Sh HISTORY
118 The
119 .Fn getmntinfo
120 function first appeared in
121 .Bx 4.4 .
122 .Pp
123 The
124 .Fn getmntvinfo
125 function first appeared in
126 .Dx 1.13 .
127 .Sh BUGS
128 The
129 .Fn getmntinfo
130 and
131 .Fn getmntvinfo
132 functions write the array of structures to an internal static object
133 and returns
134 a pointer to that object.
135 Subsequent calls to
136 .Fn getmntinfo
137 or
138 .Fn getmntvinfo
139 will modify the same object.
140 .Pp
141 The memory allocated by
142 .Fn getmntinfo
143 or
144 .Fn getmntvinfo
145 cannot be
146 .Xr free 3 Ns 'd
147 by the application.