1139731Simp/*-
2114373Speter * Copyright (c) 2003 Peter Wemm <peter@FreeBSD.org>
3114373Speter * All rights reserved.
4114373Speter *
5114373Speter * Redistribution and use in source and binary forms, with or without
6114373Speter * modification, are permitted provided that the following conditions
7114373Speter * are met:
8114373Speter * 1. Redistributions of source code must retain the above copyright
9114373Speter *    notice, this list of conditions and the following disclaimer.
10114373Speter * 2. Redistributions in binary form must reproduce the above copyright
11114373Speter *    notice, this list of conditions and the following disclaimer in the
12114373Speter *    documentation and/or other materials provided with the distribution.
13114373Speter *
14114373Speter * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15114373Speter * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16114373Speter * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17114373Speter * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18114373Speter * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19114373Speter * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20114373Speter * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21114373Speter * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22114373Speter * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23114373Speter * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24114373Speter * SUCH DAMAGE.
25114373Speter *
26114373Speter * $FreeBSD$
27114373Speter */
28114373Speter
29114373Speter#ifndef _MACHINE_METADATA_H_
30114373Speter#define	_MACHINE_METADATA_H_
31114373Speter
32114373Speter#define	MODINFOMD_SMAP		0x1001
33191111Sjkim#define	MODINFOMD_SMAP_XATTR	0x1002
34114373Speter
35114373Speter#endif /* !_MACHINE_METADATA_H_ */
36