Deleted Added
full compact
smbfs.h (243397) smbfs.h (250236)
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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/fs/smbfs/smbfs.h 243397 2012-11-22 09:13:45Z davide $
26 * $FreeBSD: head/sys/fs/smbfs/smbfs.h 250236 2013-05-04 14:03:18Z davide $
27 */
28#ifndef _SMBFS_SMBFS_H_
29#define _SMBFS_SMBFS_H_
30
31#define SMBFS_VERMAJ 1
32#define SMBFS_VERMIN 1012
33#define SMBFS_VERSION (SMBFS_VERMAJ*100000 + SMBFS_VERMIN)
34#define SMBFS_VFSNAME "smbfs"

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

70struct smbmount {
71 /* struct smbfs_args sm_args; */
72 uid_t sm_uid;
73 gid_t sm_gid;
74 mode_t sm_file_mode;
75 mode_t sm_dir_mode;
76 struct mount * sm_mp;
77 struct smbnode * sm_root;
27 */
28#ifndef _SMBFS_SMBFS_H_
29#define _SMBFS_SMBFS_H_
30
31#define SMBFS_VERMAJ 1
32#define SMBFS_VERMIN 1012
33#define SMBFS_VERSION (SMBFS_VERMAJ*100000 + SMBFS_VERMIN)
34#define SMBFS_VFSNAME "smbfs"

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

70struct smbmount {
71 /* struct smbfs_args sm_args; */
72 uid_t sm_uid;
73 gid_t sm_gid;
74 mode_t sm_file_mode;
75 mode_t sm_dir_mode;
76 struct mount * sm_mp;
77 struct smbnode * sm_root;
78 struct smb_dev * sm_dev;
78 struct ucred * sm_owner;
79 uint64_t sm_flags;
80 long sm_nextino;
81 struct smb_share * sm_share;
82 struct smbnode * sm_npstack[SMBFS_MAXPATHCOMP];
83 int sm_caseopt;
84 int sm_didrele;
85};

--- 12 unchanged lines hidden ---
79 struct ucred * sm_owner;
80 uint64_t sm_flags;
81 long sm_nextino;
82 struct smb_share * sm_share;
83 struct smbnode * sm_npstack[SMBFS_MAXPATHCOMP];
84 int sm_caseopt;
85 int sm_didrele;
86};

--- 12 unchanged lines hidden ---