Deleted Added
full compact
smbfs.h (110500) smbfs.h (110533)
1/*
2 * Copyright (c) 2000-2001, Boris Popov
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
1/*
2 * Copyright (c) 2000-2001, Boris Popov
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * $FreeBSD: head/sys/fs/smbfs/smbfs.h 110500 2003-02-07 14:33:10Z tjr $
32 * $FreeBSD: head/sys/fs/smbfs/smbfs.h 110533 2003-02-08 05:48:04Z tjr $
33 */
34#ifndef _SMBFS_SMBFS_H_
35#define _SMBFS_SMBFS_H_
36
37#define SMBFS_VERMAJ 1
38#define SMBFS_VERMIN 1012
39#define SMBFS_VERSION (SMBFS_VERMAJ*100000 + SMBFS_VERMIN)
40#define SMBFS_VFSNAME "smbfs"

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

67
68#ifdef MALLOC_DECLARE
69MALLOC_DECLARE(M_SMBFSMNT);
70#endif
71
72struct smbnode;
73struct smb_share;
74struct u_cred;
33 */
34#ifndef _SMBFS_SMBFS_H_
35#define _SMBFS_SMBFS_H_
36
37#define SMBFS_VERMAJ 1
38#define SMBFS_VERMIN 1012
39#define SMBFS_VERSION (SMBFS_VERMAJ*100000 + SMBFS_VERMIN)
40#define SMBFS_VFSNAME "smbfs"

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

67
68#ifdef MALLOC_DECLARE
69MALLOC_DECLARE(M_SMBFSMNT);
70#endif
71
72struct smbnode;
73struct smb_share;
74struct u_cred;
75struct vop_ioctl_args;
75struct buf;
76
77struct smbmount {
78 struct smbfs_args sm_args;
79 struct mount * sm_mp;
80 struct smbnode * sm_root;
81 struct ucred * sm_owner;
82 int sm_flags;

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

91 int sm_didrele;
92};
93
94#define VFSTOSMBFS(mp) ((struct smbmount *)((mp)->mnt_data))
95#define SMBFSTOVFS(smp) ((struct mount *)((smp)->sm_mp))
96#define VTOVFS(vp) ((vp)->v_mount)
97#define VTOSMBFS(vp) (VFSTOSMBFS(VTOVFS(vp)))
98
76struct buf;
77
78struct smbmount {
79 struct smbfs_args sm_args;
80 struct mount * sm_mp;
81 struct smbnode * sm_root;
82 struct ucred * sm_owner;
83 int sm_flags;

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

92 int sm_didrele;
93};
94
95#define VFSTOSMBFS(mp) ((struct smbmount *)((mp)->mnt_data))
96#define SMBFSTOVFS(smp) ((struct mount *)((smp)->sm_mp))
97#define VTOVFS(vp) ((vp)->v_mount)
98#define VTOSMBFS(vp) (VFSTOSMBFS(VTOVFS(vp)))
99
100int smbfs_ioctl(struct vop_ioctl_args *ap);
99int smbfs_doio(struct buf *bp, struct ucred *cr, struct thread *td);
100int smbfs_vinvalbuf(struct vnode *vp, int flags, struct ucred *cred,
101 struct thread *td, int intrflg);
102#endif /* KERNEL */
103
104#endif /* _SMBFS_SMBFS_H_ */
101int smbfs_doio(struct buf *bp, struct ucred *cr, struct thread *td);
102int smbfs_vinvalbuf(struct vnode *vp, int flags, struct ucred *cred,
103 struct thread *td, int intrflg);
104#endif /* KERNEL */
105
106#endif /* _SMBFS_SMBFS_H_ */