diff options
author | Steve French <sfrench@us.ibm.com> | 2005-11-18 20:25:31 -0800 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2005-11-18 20:25:31 -0800 |
commit | 86c96b4bb70dac67d6815e09a0949427d439b280 (patch) | |
tree | f36ac16583ea9f935fcbed006a8edd99cf83852f /fs/cifs/cifspdu.h | |
parent | c119b87d596cdd99ac20095ae2ae90b525418605 (diff) | |
download | op-kernel-dev-86c96b4bb70dac67d6815e09a0949427d439b280.zip op-kernel-dev-86c96b4bb70dac67d6815e09a0949427d439b280.tar.gz |
[CIFS] Fix mknod of block and chardev over SFU mounts
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/cifspdu.h')
-rw-r--r-- | fs/cifs/cifspdu.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/fs/cifs/cifspdu.h b/fs/cifs/cifspdu.h index 48a05b9..33e1859 100644 --- a/fs/cifs/cifspdu.h +++ b/fs/cifs/cifspdu.h @@ -603,7 +603,9 @@ typedef struct smb_com_logoff_andx_rsp { __u16 ByteCount; } __attribute__((packed)) LOGOFF_ANDX_RSP; -typedef union smb_com_tree_disconnect { /* as an altetnative can use flag on tree_connect PDU to effect disconnect *//* probably the simplest SMB PDU */ +typedef union smb_com_tree_disconnect { /* as an altetnative can use flag on + tree_connect PDU to effect disconnect */ + /* tdis is probably simplest SMB PDU */ struct { struct smb_hdr hdr; /* wct = 0 */ __u16 ByteCount; /* bcc = 0 */ @@ -2025,6 +2027,12 @@ typedef struct { } __attribute__((packed)) FILE_BOTH_DIRECTORY_INFO; /* level 0x104 FF response data area */ +struct win_dev { + unsigned char type[8]; /* IntxCHR or IntxBLK */ + __le64 major; + __le64 minor; +} __attribute__((packed)); + struct gea { unsigned char name_len; char name[1]; |