Deleted Added
full compact
smbfs.h (139776) smbfs.h (140223)
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 139776 2005-01-06 18:10:42Z imp $
32 * $FreeBSD: head/sys/fs/smbfs/smbfs.h 140223 2005-01-14 08:52:55Z phk $
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"

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

98
99#define VFSTOSMBFS(mp) ((struct smbmount *)((mp)->mnt_data))
100#define SMBFSTOVFS(smp) ((struct mount *)((smp)->sm_mp))
101#define VTOVFS(vp) ((vp)->v_mount)
102#define VTOSMBFS(vp) (VFSTOSMBFS(VTOVFS(vp)))
103
104int smbfs_ioctl(struct vop_ioctl_args *ap);
105int smbfs_doio(struct vnode *vp, struct buf *bp, struct ucred *cr, struct thread *td);
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"

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

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