Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 48288
b: refs/heads/master
c: 595dcfe
h: refs/heads/master
v: v3
  • Loading branch information
Steve French committed Feb 8, 2007
1 parent 765eda7 commit 92c35fb
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1d9564ea0ac72ef7c4068d66fe42ad23af4ff53f
refs/heads/master: 595dcfecf642c8b0772989ed46f15ee03c25a205
2 changes: 2 additions & 0 deletions trunk/fs/cifs/CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Version 1.47
------------
Fix oops in list_del during mount caused by unaligned string.
Fix file corruption which could occur on some large file
copies caused by writepages page i/o completion bug.
Seek to SEEK_END forces check for update of file size for non-cached
files.

Expand Down
15 changes: 15 additions & 0 deletions trunk/fs/cifs/cifspdu.h
Original file line number Diff line number Diff line change
Expand Up @@ -796,6 +796,8 @@ typedef struct smb_com_openx_rsp {
__u16 ByteCount;
} __attribute__((packed)) OPENX_RSP;

/* For encoding of POSIX Open Request - see trans2 function 0x209 data struct */

/* Legacy write request for older servers */
typedef struct smb_com_writex_req {
struct smb_hdr hdr; /* wct = 12 */
Expand Down Expand Up @@ -2096,6 +2098,19 @@ struct cifs_posix_acl { /* access conrol list (ACL) */

/* end of POSIX ACL definitions */

typedef struct {
__u32 OpenFlags; /* same as NT CreateX */
__u32 PosixOpenFlags;
__u32 Mode;
__u16 Level; /* reply level requested (see QPathInfo levels) */
__u16 Pad; /* reserved - MBZ */
} __attribute__((packed)) OPEN_PSX_REQ; /* level 0x209 SetPathInfo data */

typedef struct {
/* reply varies based on requested level */
} __atribute__((packed)) OPEN_PSX_RSP; /* level 0x209 SetPathInfo data */


struct file_internal_info {
__u64 UniqueId; /* inode number */
} __attribute__((packed)); /* level 0x3ee */
Expand Down

0 comments on commit 92c35fb

Please sign in to comment.