Deleted Added
full compact
mem.4 (140561) mem.4 (231564)
1.\" Copyright (c) 1991 The Regents of the University of California.
2.\" 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.

--- 16 unchanged lines hidden (view full) ---

25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\" @(#)mem.4 5.3 (Berkeley) 5/2/91
1.\" Copyright (c) 1991 The Regents of the University of California.
2.\" 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.

--- 16 unchanged lines hidden (view full) ---

25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\" @(#)mem.4 5.3 (Berkeley) 5/2/91
33.\" $FreeBSD: head/share/man/man4/mem.4 140561 2005-01-21 08:36:40Z ru $
33.\" $FreeBSD: head/share/man/man4/mem.4 231564 2012-02-12 18:29:56Z ed $
34.\"
35.Dd October 3, 2004
36.Dt MEM 4
37.Os
38.Sh NAME
39.Nm mem ,
40.Nm kmem
41.Nd memory files

--- 54 unchanged lines hidden (view full) ---

96Writes to the region are committed asynchronously.
97.It Dv MDF_WRITEPROTECT
98The region cannot be written to.
99.El
100.Pp
101Memory ranges are described by
102.Vt struct mem_range_desc :
103.Bd -literal -offset indent
34.\"
35.Dd October 3, 2004
36.Dt MEM 4
37.Os
38.Sh NAME
39.Nm mem ,
40.Nm kmem
41.Nd memory files

--- 54 unchanged lines hidden (view full) ---

96Writes to the region are committed asynchronously.
97.It Dv MDF_WRITEPROTECT
98The region cannot be written to.
99.El
100.Pp
101Memory ranges are described by
102.Vt struct mem_range_desc :
103.Bd -literal -offset indent
104u_int64_t mr_base; /\(** physical base address \(**/
105u_int64_t mr_len; /\(** physical length of region \(**/
104uint64_t mr_base; /\(** physical base address \(**/
105uint64_t mr_len; /\(** physical length of region \(**/
106int mr_flags; /\(** attributes of region \(**/
107char mr_owner[8];
108.Ed
109.Pp
110In addition to the region attributes listed above, the following flags
111may also be set in the
112.Fa mr_flags
113field:

--- 98 unchanged lines hidden ---
106int mr_flags; /\(** attributes of region \(**/
107char mr_owner[8];
108.Ed
109.Pp
110In addition to the region attributes listed above, the following flags
111may also be set in the
112.Fa mr_flags
113field:

--- 98 unchanged lines hidden ---