1249592Sken/*-
2249592Sken * Copyright (c) 2008 Isilon Inc http://www.isilon.com/
3249592Sken * Copyright (c) 2013 Spectra Logic Corporation
4249592Sken *
5249592Sken * Redistribution and use in source and binary forms, with or without
6249592Sken * modification, are permitted provided that the following conditions
7249592Sken * are met:
8249592Sken * 1. Redistributions of source code must retain the above copyright
9249592Sken *    notice, this list of conditions and the following disclaimer.
10249592Sken * 2. Redistributions in binary form must reproduce the above copyright
11249592Sken *    notice, this list of conditions and the following disclaimer in the
12249592Sken *    documentation and/or other materials provided with the distribution.
13249592Sken *
14249592Sken * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15249592Sken * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16249592Sken * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17249592Sken * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18249592Sken * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19249592Sken * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20249592Sken * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21249592Sken * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22249592Sken * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23249592Sken * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24249592Sken * SUCH DAMAGE.
25249592Sken */
26249592Sken/* $FreeBSD$ */
27249592Sken
28249592Sken#ifndef	_NFS_FHA_OLD_H
29249592Sken#define	_NFS_FHA_OLD_H 1
30249592Sken
31249592Sken#ifdef	_KERNEL
32249592Sken
33249592Sken#define	FHAOLD_SERVER_NAME	"nfsrv"
34249592Sken
35249592SkenSVCTHREAD *fhaold_assign(SVCTHREAD *this_thread, struct svc_req *req);
36249592Sken#endif /* _KERNEL */
37249592Sken
38249592Sken#endif /* _NFS_FHA_OLD_H */
39