1163841Spjd/*-
2163841Spjd * Copyright (c) 2005-2006 Pawel Jakub Dawidek <pjd@FreeBSD.org>
3163841Spjd * All rights reserved.
4163841Spjd *
5163841Spjd * Redistribution and use in source and binary forms, with or without
6163841Spjd * modification, are permitted provided that the following conditions
7163841Spjd * are met:
8163841Spjd * 1. Redistributions of source code must retain the above copyright
9163841Spjd *    notice, this list of conditions and the following disclaimer.
10163841Spjd * 2. Redistributions in binary form must reproduce the above copyright
11163841Spjd *    notice, this list of conditions and the following disclaimer in the
12163841Spjd *    documentation and/or other materials provided with the distribution.
13163841Spjd *
14163841Spjd * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
15163841Spjd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16163841Spjd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17163841Spjd * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
18163841Spjd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19163841Spjd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20163841Spjd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21163841Spjd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22163841Spjd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23163841Spjd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24163841Spjd * SUCH DAMAGE.
25163841Spjd *
26163841Spjd * $FreeBSD$
27163841Spjd */
28163841Spjd
29163841Spjd#ifndef _UFS_UFS_GJOURNAL_H_
30163841Spjd#define _UFS_UFS_GJOURNAL_H_
31163841Spjd
32163841Spjd/*
33163841Spjd * GEOM journal function prototypes.
34163841Spjd */
35163841Spjdvoid	ufs_gjournal_orphan(struct vnode *fvp);
36163841Spjdvoid	ufs_gjournal_close(struct vnode *vp);
37163841Spjd#endif /* !_UFS_UFS_GJOURNAL_H_ */
38