initial commit with v2.6.9
[linux-2.6.9-moxart.git] / include / linux / smb_mount.h
blob256900c55881995c49995de2c8b2e7091f2fa219
1 /*
2 * smb_mount.h
4 * Copyright (C) 1995, 1996 by Paal-Kr. Engstad and Volker Lendecke
5 * Copyright (C) 1997 by Volker Lendecke
7 */
9 #ifndef _LINUX_SMB_MOUNT_H
10 #define _LINUX_SMB_MOUNT_H
12 #include <linux/types.h>
14 #define SMB_MOUNT_VERSION 6
16 struct smb_mount_data {
17 int version;
18 __kernel_uid_t mounted_uid; /* Who may umount() this filesystem? */
19 __kernel_uid_t uid;
20 __kernel_gid_t gid;
21 __kernel_mode_t file_mode;
22 __kernel_mode_t dir_mode;
26 #ifdef __KERNEL__
28 /* "vers" in big-endian */
29 #define SMB_MOUNT_ASCII 0x76657273
31 #define SMB_MOUNT_OLDVERSION 6
32 #undef SMB_MOUNT_VERSION
33 #define SMB_MOUNT_VERSION 7
35 /* flags */
36 #define SMB_MOUNT_WIN95 0x0001 /* Win 95 server */
37 #define SMB_MOUNT_OLDATTR 0x0002 /* Use core getattr (Win 95 speedup) */
38 #define SMB_MOUNT_DIRATTR 0x0004 /* Use find_first for getattr */
39 #define SMB_MOUNT_CASE 0x0008 /* Be case sensitive */
40 #define SMB_MOUNT_UNICODE 0x0010 /* Server talks unicode */
43 struct smb_mount_data_kernel {
44 int version;
46 uid_t mounted_uid; /* Who may umount() this filesystem? */
47 uid_t uid;
48 gid_t gid;
49 mode_t file_mode;
50 mode_t dir_mode;
52 u32 flags;
54 /* maximum age in jiffies (inode, dentry and dircache) */
55 int ttl;
57 struct smb_nls_codepage codepage;
60 #endif
62 #endif