Deleted Added
full compact
nfs.h (98988) nfs.h (101777)
1/*
2 * Copyright (c) 1989, 1993, 1995
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Rick Macklem at The University of Guelph.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)nfs.h 8.4 (Berkeley) 5/1/95
1/*
2 * Copyright (c) 1989, 1993, 1995
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Rick Macklem at The University of Guelph.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)nfs.h 8.4 (Berkeley) 5/1/95
37 * $FreeBSD: head/sys/nfsclient/nfs.h 98988 2002-06-28 21:53:08Z jhb $
37 * $FreeBSD: head/sys/nfsclient/nfs.h 101777 2002-08-13 10:05:50Z phk $
38 */
39
40#ifndef _NFSCLIENT_NFS_H_
41#define _NFSCLIENT_NFS_H_
42
43#ifdef _KERNEL
44#include "opt_nfs.h"
45#endif

--- 197 unchanged lines hidden (view full) ---

243 } while (0)
244
245#else
246
247#define NFS_DPF(cat, args)
248
249#endif
250
38 */
39
40#ifndef _NFSCLIENT_NFS_H_
41#define _NFSCLIENT_NFS_H_
42
43#ifdef _KERNEL
44#include "opt_nfs.h"
45#endif

--- 197 unchanged lines hidden (view full) ---

243 } while (0)
244
245#else
246
247#define NFS_DPF(cat, args)
248
249#endif
250
251int nfs_init(struct vfsconf *vfsp);
252int nfs_uninit(struct vfsconf *vfsp);
251vfs_init_t nfs_init;
252vfs_uninit_t nfs_uninit;
253int nfs_mountroot(struct mount *mp, struct thread *td);
254int nfs_send(struct socket *, struct sockaddr *, struct mbuf *,
255 struct nfsreq *);
256int nfs_sndlock(struct nfsreq *);
257void nfs_sndunlock(struct nfsreq *);
258int nfs_vinvalbuf(struct vnode *, int, struct ucred *, struct thread *,
259 int);
260int nfs_readrpc(struct vnode *, struct uio *, struct ucred *);

--- 36 unchanged lines hidden ---
253int nfs_mountroot(struct mount *mp, struct thread *td);
254int nfs_send(struct socket *, struct sockaddr *, struct mbuf *,
255 struct nfsreq *);
256int nfs_sndlock(struct nfsreq *);
257void nfs_sndunlock(struct nfsreq *);
258int nfs_vinvalbuf(struct vnode *, int, struct ucred *, struct thread *,
259 int);
260int nfs_readrpc(struct vnode *, struct uio *, struct ucred *);

--- 36 unchanged lines hidden ---