Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
595dcfec
Commit
595dcfec
authored
Feb 08, 2007
by
Steve French
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CIFS] POSIX CIFS Extensions (continued) - POSIX Open
Signed-off-by:
Steve French
<
sfrench@us.ibm.com
>
parent
1d9564ea
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
fs/cifs/CHANGES
fs/cifs/CHANGES
+2
-0
fs/cifs/cifspdu.h
fs/cifs/cifspdu.h
+15
-0
No files found.
fs/cifs/CHANGES
View file @
595dcfec
Version 1.47
Version 1.47
------------
------------
Fix oops in list_del during mount caused by unaligned string.
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
Seek to SEEK_END forces check for update of file size for non-cached
files.
files.
...
...
fs/cifs/cifspdu.h
View file @
595dcfec
...
@@ -796,6 +796,8 @@ typedef struct smb_com_openx_rsp {
...
@@ -796,6 +796,8 @@ typedef struct smb_com_openx_rsp {
__u16
ByteCount
;
__u16
ByteCount
;
}
__attribute__
((
packed
))
OPENX_RSP
;
}
__attribute__
((
packed
))
OPENX_RSP
;
/* For encoding of POSIX Open Request - see trans2 function 0x209 data struct */
/* Legacy write request for older servers */
/* Legacy write request for older servers */
typedef
struct
smb_com_writex_req
{
typedef
struct
smb_com_writex_req
{
struct
smb_hdr
hdr
;
/* wct = 12 */
struct
smb_hdr
hdr
;
/* wct = 12 */
...
@@ -2096,6 +2098,19 @@ struct cifs_posix_acl { /* access conrol list (ACL) */
...
@@ -2096,6 +2098,19 @@ struct cifs_posix_acl { /* access conrol list (ACL) */
/* end of POSIX ACL definitions */
/* 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
{
struct
file_internal_info
{
__u64
UniqueId
;
/* inode number */
__u64
UniqueId
;
/* inode number */
}
__attribute__
((
packed
));
/* level 0x3ee */
}
__attribute__
((
packed
));
/* level 0x3ee */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment