Lines Matching +full:0 +full:x103
19 #define SMB1_PROT 0
27 #define BAD_PROT 0xFFFF
41 #define MAX_STREAM_PROT_LEN 0x00FFFFFF
44 #define F_SUPERSEDED 0
52 #define ATTR_POSIX_SEMANTICS 0x01000000
53 #define ATTR_BACKUP_SEMANTICS 0x02000000
54 #define ATTR_DELETE_ON_CLOSE 0x04000000
55 #define ATTR_SEQUENTIAL_SCAN 0x08000000
56 #define ATTR_RANDOM_ACCESS 0x10000000
57 #define ATTR_NO_BUFFERING 0x20000000
58 #define ATTR_WRITE_THROUGH 0x80000000
61 #define FILE_SUPPORTS_SPARSE_VDL 0x10000000 /* faster nonsparse extend */
62 #define FILE_SUPPORTS_BLOCK_REFCOUNTING 0x08000000 /* allow ioctl dup extents */
63 #define FILE_SUPPORT_INTEGRITY_STREAMS 0x04000000
64 #define FILE_SUPPORTS_USN_JOURNAL 0x02000000
65 #define FILE_SUPPORTS_OPEN_BY_FILE_ID 0x01000000
66 #define FILE_SUPPORTS_EXTENDED_ATTRIBUTES 0x00800000
67 #define FILE_SUPPORTS_HARD_LINKS 0x00400000
68 #define FILE_SUPPORTS_TRANSACTIONS 0x00200000
69 #define FILE_SEQUENTIAL_WRITE_ONCE 0x00100000
70 #define FILE_READ_ONLY_VOLUME 0x00080000
71 #define FILE_NAMED_STREAMS 0x00040000
72 #define FILE_SUPPORTS_ENCRYPTION 0x00020000
73 #define FILE_SUPPORTS_OBJECT_IDS 0x00010000
74 #define FILE_VOLUME_IS_COMPRESSED 0x00008000
75 #define FILE_SUPPORTS_REMOTE_STORAGE 0x00000100
76 #define FILE_SUPPORTS_REPARSE_POINTS 0x00000080
77 #define FILE_SUPPORTS_SPARSE_FILES 0x00000040
78 #define FILE_VOLUME_QUOTAS 0x00000020
79 #define FILE_FILE_COMPRESSION 0x00000010
80 #define FILE_PERSISTENT_ACLS 0x00000008
81 #define FILE_UNICODE_ON_DISK 0x00000004
82 #define FILE_CASE_PRESERVED_NAMES 0x00000002
83 #define FILE_CASE_SENSITIVE_SEARCH 0x00000001
85 #define FILE_READ_DATA 0x00000001 /* Data can be read from the file */
86 #define FILE_WRITE_DATA 0x00000002 /* Data can be written to the file */
87 #define FILE_APPEND_DATA 0x00000004 /* Data can be appended to the file */
88 #define FILE_READ_EA 0x00000008 /* Extended attributes associated */
90 #define FILE_WRITE_EA 0x00000010 /* Extended attributes associated */
92 #define FILE_EXECUTE 0x00000020 /*Data can be read into memory from */
94 #define FILE_DELETE_CHILD 0x00000040
95 #define FILE_READ_ATTRIBUTES 0x00000080 /* Attributes associated with the */
97 #define FILE_WRITE_ATTRIBUTES 0x00000100 /* Attributes associated with the */
99 #define DELETE 0x00010000 /* The file can be deleted */
100 #define READ_CONTROL 0x00020000 /* The access control list and */
103 #define WRITE_DAC 0x00040000 /* The access control list and */
106 #define WRITE_OWNER 0x00080000 /* Ownership information associated */
108 #define SYNCHRONIZE 0x00100000 /* The file handle can waited on to */
111 #define GENERIC_ALL 0x10000000
112 #define GENERIC_EXECUTE 0x20000000
113 #define GENERIC_WRITE 0x40000000
114 #define GENERIC_READ 0x80000000
159 #define SMB1_PROTO_NUMBER cpu_to_le32(0x424d53ff)
160 #define SMB_COM_NEGOTIATE 0x72
163 #define SMBFLG_RESPONSE 0x80 /* this PDU is a response from server */
165 #define SMBFLG2_IS_LONG_NAME cpu_to_le16(0x40)
166 #define SMBFLG2_EXT_SEC cpu_to_le16(0x800)
167 #define SMBFLG2_ERR_STATUS cpu_to_le16(0x4000)
168 #define SMBFLG2_UNICODE cpu_to_le16(0x8000)
201 struct smb_hdr hdr; /* wct = 0 */
208 __le16 DialectIndex; /* 0xFFFF = no dialect acceptable */
222 } __packed; /* device info level 0x104 */
237 } __packed; /* size info, level 0x103 */
239 #define EXTENDED_INFO_MAGIC 0x43667364 /* Cfsd */
267 } __packed; /* level 0x101 FF resp data */
274 } __packed; /* level 0xc FF resp data */
289 } __packed; /* level 0x102 FF resp */
307 } __packed; /* level 0x104 FFrsp data */
344 } __packed; /* level 0x105 FF rsp data */
383 * to make a second call (to QFSInfo level 0x103 to get this info.
463 return be32_to_cpu(*((__be32 *)buf)) & 0xffffff; in get_rfc1002_len()