1235537Sgber/*-
2235537Sgber * Copyright (c) 2008, 2009 Reinoud Zandijk
3235537Sgber * All rights reserved.
4235537Sgber *
5235537Sgber * Redistribution and use in source and binary forms, with or without
6235537Sgber * modification, are permitted provided that the following conditions
7235537Sgber * are met:
8235537Sgber * 1. Redistributions of source code must retain the above copyright
9235537Sgber *    notice, this list of conditions and the following disclaimer.
10235537Sgber * 2. Redistributions in binary form must reproduce the above copyright
11235537Sgber *    notice, this list of conditions and the following disclaimer in the
12235537Sgber *    documentation and/or other materials provided with the distribution.
13235537Sgber * 3. All advertising materials mentioning features or use of this software
14235537Sgber *    must display the following acknowledgement:
15235537Sgber *          This product includes software developed for the
16235537Sgber *          NetBSD Project.  See http://www.NetBSD.org/ for
17235537Sgber *          information about NetBSD.
18235537Sgber * 4. The name of the author may not be used to endorse or promote products
19235537Sgber *    derived from this software without specific prior written permission.
20235537Sgber *
21235537Sgber * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22235537Sgber * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23235537Sgber * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24235537Sgber * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25235537Sgber * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26235537Sgber * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27235537Sgber * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28235537Sgber * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29235537Sgber * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30235537Sgber * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31235537Sgber *
32235537Sgber * From: NetBSD: nilfs_mount.h,v 1.1 2009/07/18 16:31:42 reinoud
33235537Sgber *
34235537Sgber * $FreeBSD$
35235537Sgber */
36235537Sgber
37235537Sgber#ifndef _FS_NANDFS_NANDFS_MOUNT_H_
38235537Sgber#define _FS_NANDFS_NANDFS_MOUNT_H_
39235537Sgber
40235537Sgber/*
41235537Sgber * Arguments to mount NANDFS filingsystem.
42235537Sgber */
43235537Sgber
44235537Sgberstruct nandfs_args {
45235537Sgber	char		*fspec;		/* mount specifier                   */
46235537Sgber	int64_t		cpno;		/* checkpoint number                 */
47235537Sgber};
48235537Sgber
49235537Sgber#endif /* !_FS_NANDFS_NANDFS_MOUNT_H_ */
50235537Sgber
51