1163838Spjd/*-
2163838Spjd * Copyright (c) 2006 Pawel Jakub Dawidek <pjd@FreeBSD.org>
3163838Spjd * All rights reserved.
4163838Spjd *
5163838Spjd * Redistribution and use in source and binary forms, with or without
6163838Spjd * modification, are permitted provided that the following conditions
7163838Spjd * are met:
8163838Spjd * 1. Redistributions of source code must retain the above copyright
9163838Spjd *    notice, this list of conditions and the following disclaimer.
10163838Spjd * 2. Redistributions in binary form must reproduce the above copyright
11163838Spjd *    notice, this list of conditions and the following disclaimer in the
12163838Spjd *    documentation and/or other materials provided with the distribution.
13163838Spjd *
14163838Spjd * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
15163838Spjd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16163838Spjd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17163838Spjd * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
18163838Spjd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19163838Spjd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20163838Spjd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21163838Spjd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22163838Spjd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23163838Spjd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24163838Spjd * SUCH DAMAGE.
25163838Spjd *
26163838Spjd * $FreeBSD$
27163838Spjd */
28163838Spjd
29163838Spjd#ifndef	_GEOM_JOURNAL_H_
30163838Spjd#define	_GEOM_JOURNAL_H_
31163838Spjdint g_journal_ufs_exists(const char *prov);
32163838Spjdint g_journal_ufs_using_last_sector(const char *prov);
33163838Spjd#endif	/* !_GEOM_JOURNAL_H_ */
34