vm.h revision 244414
1171176Smlaier/*-
2171176Smlaier * Copyright (c) 2009 Alan L. Cox <alc@cs.rice.edu>
3171176Smlaier * All rights reserved.
4171176Smlaier *
5171176Smlaier * Redistribution and use in source and binary forms, with or without
6171176Smlaier * modification, are permitted provided that the following conditions
7171176Smlaier * are met:
8171176Smlaier * 1. Redistributions of source code must retain the above copyright
9171176Smlaier *    notice, this list of conditions and the following disclaimer.
10171176Smlaier * 2. Redistributions in binary form must reproduce the above copyright
11171176Smlaier *    notice, this list of conditions and the following disclaimer in the
12171176Smlaier *    documentation and/or other materials provided with the distribution.
13171176Smlaier *
14171176Smlaier * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15171176Smlaier * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16171176Smlaier * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17171176Smlaier * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18171176Smlaier * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19171176Smlaier * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20171176Smlaier * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21171176Smlaier * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22171176Smlaier * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23171176Smlaier * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24171176Smlaier * SUCH DAMAGE.
25171176Smlaier *
26171176Smlaier * $FreeBSD: head/sys/arm/include/vm.h 244414 2012-12-19 00:24:31Z cognet $
27171176Smlaier */
28171176Smlaier
29171176Smlaier#ifndef _MACHINE_VM_H_
30171176Smlaier#define	_MACHINE_VM_H_
31171176Smlaier
32171176Smlaier/* Memory attribute configuration. */
33171176Smlaier#define	VM_MEMATTR_DEFAULT	0
34171176Smlaier#define	VM_MEMATTR_UNCACHEABLE	1
35171176Smlaier
36171176Smlaier#endif /* !_MACHINE_VM_H_ */
37171176Smlaier