Deleted Added
full compact
nfsargs.h (9759) nfsargs.h (11921)
1/*
2 * Copyright (c) 1989, 1993
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.1 (Berkeley) 6/10/93
1/*
2 * Copyright (c) 1989, 1993
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.1 (Berkeley) 6/10/93
37 * $Id: nfs.h,v 1.10 1995/06/27 11:06:33 dfr Exp $
37 * $Id: nfs.h,v 1.11 1995/07/29 11:42:21 bde Exp $
38 */
39
40#ifndef _NFS_NFS_H_
41#define _NFS_NFS_H_
42
43/*
44 * Tunable constants for nfs
45 */

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

485int nfs_send __P((struct socket *,struct mbuf *,struct mbuf *,struct nfsreq *));
486int nfs_rephead __P((int,struct nfsrv_descript *,struct nfssvc_sock *,int,int,u_quad_t *,struct mbuf **,struct mbuf **,caddr_t *));
487int nfs_sndlock __P((int *,struct nfsreq *));
488int nfs_disct __P((struct mbuf **,caddr_t *,int,int,caddr_t *));
489int nfs_vinvalbuf __P((struct vnode *,int,struct ucred *,struct proc *,int));
490int nfs_readrpc __P((struct vnode *,struct uio *,struct ucred *));
491int nfs_writerpc __P((struct vnode *,struct uio *,struct ucred *,int *,int *));
492int nfs_readdirrpc __P((register struct vnode *,struct uio *,struct ucred *));
38 */
39
40#ifndef _NFS_NFS_H_
41#define _NFS_NFS_H_
42
43/*
44 * Tunable constants for nfs
45 */

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

485int nfs_send __P((struct socket *,struct mbuf *,struct mbuf *,struct nfsreq *));
486int nfs_rephead __P((int,struct nfsrv_descript *,struct nfssvc_sock *,int,int,u_quad_t *,struct mbuf **,struct mbuf **,caddr_t *));
487int nfs_sndlock __P((int *,struct nfsreq *));
488int nfs_disct __P((struct mbuf **,caddr_t *,int,int,caddr_t *));
489int nfs_vinvalbuf __P((struct vnode *,int,struct ucred *,struct proc *,int));
490int nfs_readrpc __P((struct vnode *,struct uio *,struct ucred *));
491int nfs_writerpc __P((struct vnode *,struct uio *,struct ucred *,int *,int *));
492int nfs_readdirrpc __P((register struct vnode *,struct uio *,struct ucred *));
493int nfs_setattrrpc __P((struct vnode *,struct vattr *,struct ucred *,struct proc *));
494int nfs_asyncio __P((struct buf *,struct ucred *));
495int nfs_doio __P((struct buf *,struct ucred *,struct proc *));
496int nfs_readlinkrpc __P((struct vnode *,struct uio *,struct ucred *));
497int nfs_sigintr __P((struct nfsmount *,struct nfsreq *r,struct proc *));
498int nfs_readdirplusrpc __P((struct vnode *,register struct uio *,struct ucred *));
499int nfsm_disct __P((struct mbuf **,caddr_t *,int,int,caddr_t *));
500void nfsm_srvfattr __P((struct nfsrv_descript *,struct vattr *,struct nfs_fattr *));
501void nfsm_srvwcc __P((struct nfsrv_descript *,int,struct vattr *,int,struct vattr *,struct mbuf **,char **));

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

532int nfs_bioread __P((struct vnode *,struct uio *,int,struct ucred *));
533int nfsm_uiotombuf __P((struct uio *,struct mbuf **,int,caddr_t *));
534void nfsrv_init __P((int));
535void nfs_clearcommit __P((struct mount *));
536int nfsrv_errmap __P((struct nfsrv_descript *, int));
537void nfsrvw_coalesce __P((struct nfsrv_descript *,struct nfsrv_descript *));
538void nfsrvw_sort __P((gid_t [],int));
539void nfsrv_setcred __P((struct ucred *,struct ucred *));
493int nfs_asyncio __P((struct buf *,struct ucred *));
494int nfs_doio __P((struct buf *,struct ucred *,struct proc *));
495int nfs_readlinkrpc __P((struct vnode *,struct uio *,struct ucred *));
496int nfs_sigintr __P((struct nfsmount *,struct nfsreq *r,struct proc *));
497int nfs_readdirplusrpc __P((struct vnode *,register struct uio *,struct ucred *));
498int nfsm_disct __P((struct mbuf **,caddr_t *,int,int,caddr_t *));
499void nfsm_srvfattr __P((struct nfsrv_descript *,struct vattr *,struct nfs_fattr *));
500void nfsm_srvwcc __P((struct nfsrv_descript *,int,struct vattr *,int,struct vattr *,struct mbuf **,char **));

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

531int nfs_bioread __P((struct vnode *,struct uio *,int,struct ucred *));
532int nfsm_uiotombuf __P((struct uio *,struct mbuf **,int,caddr_t *));
533void nfsrv_init __P((int));
534void nfs_clearcommit __P((struct mount *));
535int nfsrv_errmap __P((struct nfsrv_descript *, int));
536void nfsrvw_coalesce __P((struct nfsrv_descript *,struct nfsrv_descript *));
537void nfsrvw_sort __P((gid_t [],int));
538void nfsrv_setcred __P((struct ucred *,struct ucred *));
540int nfs_flush __P((struct vnode *,struct ucred *,int,struct proc *,int));
541int nfs_writebp __P((struct buf *,int));
542int nfsrv_vput __P(( struct vnode * ));
543int nfsrv_vrele __P(( struct vnode * ));
544int nfsrv_vmio __P(( struct vnode * ));
545int nfsrv_writegather __P((struct nfsrv_descript **, struct nfssvc_sock *,
546 struct proc *, struct mbuf **));
547int nfs_fsinfo __P((struct nfsmount *, struct vnode *, struct ucred *,
548 struct proc *p));
549
550#endif /* KERNEL */
551
552#endif
539int nfs_writebp __P((struct buf *,int));
540int nfsrv_vput __P(( struct vnode * ));
541int nfsrv_vrele __P(( struct vnode * ));
542int nfsrv_vmio __P(( struct vnode * ));
543int nfsrv_writegather __P((struct nfsrv_descript **, struct nfssvc_sock *,
544 struct proc *, struct mbuf **));
545int nfs_fsinfo __P((struct nfsmount *, struct vnode *, struct ucred *,
546 struct proc *p));
547
548#endif /* KERNEL */
549
550#endif