156893Sfenner/*-
256893Sfenner * Copyright (c) 2008, 2009 Reinoud Zandijk
356893Sfenner * All rights reserved.
456893Sfenner *
556893Sfenner * Redistribution and use in source and binary forms, with or without
656893Sfenner * modification, are permitted provided that the following conditions
756893Sfenner * are met:
856893Sfenner * 1. Redistributions of source code must retain the above copyright
956893Sfenner *    notice, this list of conditions and the following disclaimer.
1056893Sfenner * 2. Redistributions in binary form must reproduce the above copyright
1156893Sfenner *    notice, this list of conditions and the following disclaimer in the
1256893Sfenner *    documentation and/or other materials provided with the distribution.
1356893Sfenner * 3. All advertising materials mentioning features or use of this software
1456893Sfenner *    must display the following acknowledgement:
1556893Sfenner *          This product includes software developed for the
1656893Sfenner *          NetBSD Project.  See http://www.NetBSD.org/ for
1756893Sfenner *          information about NetBSD.
1856893Sfenner * 4. The name of the author may not be used to endorse or promote products
1956893Sfenner *    derived from this software without specific prior written permission.
2056893Sfenner *
2156893Sfenner * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
2256893Sfenner * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
2356893Sfenner * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2456893Sfenner * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2556893Sfenner * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2656893Sfenner * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2756893Sfenner * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2856893Sfenner * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2956893Sfenner * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
3056893Sfenner * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3156893Sfenner *
3256893Sfenner * From: NetBSD: nilfs_mount.h,v 1.1 2009/07/18 16:31:42 reinoud
3356893Sfenner *
3456893Sfenner * $FreeBSD: releng/11.0/sys/fs/nandfs/nandfs_mount.h 235537 2012-05-17 10:11:18Z gber $
3556893Sfenner */
3656893Sfenner
3756893Sfenner#ifndef _FS_NANDFS_NANDFS_MOUNT_H_
3856893Sfenner#define _FS_NANDFS_NANDFS_MOUNT_H_
3956893Sfenner
4056893Sfenner/*
4156893Sfenner * Arguments to mount NANDFS filingsystem.
4256893Sfenner */
4356893Sfenner
44127668Sbmsstruct nandfs_args {
45190207Srpaulo	char		*fspec;		/* mount specifier                   */
4656893Sfenner	int64_t		cpno;		/* checkpoint number                 */
47127668Sbms};
4856893Sfenner
4956893Sfenner#endif /* !_FS_NANDFS_NANDFS_MOUNT_H_ */
5056893Sfenner
5156893Sfenner