Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
etercifs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
etercifs
Commits
6e69f5a2
Commit
6e69f5a2
authored
Nov 21, 2011
by
Pavel Shilovsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update 3.1 sources from stable (v3.1.1)
parent
5a41aa04
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
9 deletions
+14
-9
connect.c
sources/3.1/connect.c
+2
-2
inode.c
sources/3.1/inode.c
+12
-7
No files found.
sources/3.1/connect.c
View file @
6e69f5a2
...
...
@@ -2812,10 +2812,10 @@ void cifs_setup_cifs_sb(struct smb_vol *pvolume_info,
/*
* When the server doesn't allow large posix writes, only allow a wsize of
*
128k
minus the size of the WRITE_AND_X header. That allows for a write up
*
2^17-1
minus the size of the WRITE_AND_X header. That allows for a write up
* to the maximum size described by RFC1002.
*/
#define CIFS_MAX_RFC1002_WSIZE (
128 * 1024
- sizeof(WRITE_REQ) + 4)
#define CIFS_MAX_RFC1002_WSIZE (
(1<<17) - 1
- sizeof(WRITE_REQ) + 4)
/*
* The default wsize is 1M. find_get_pages seems to return a maximum of 256
...
...
sources/3.1/inode.c
View file @
6e69f5a2
...
...
@@ -562,7 +562,16 @@ int cifs_get_file_info(struct file *filp)
xid
=
GetXid
();
rc
=
CIFSSMBQFileInfo
(
xid
,
tcon
,
cfile
->
netfid
,
&
find_data
);
if
(
rc
==
-
EOPNOTSUPP
||
rc
==
-
EINVAL
)
{
switch
(
rc
)
{
case
0
:
cifs_all_info_to_fattr
(
&
fattr
,
&
find_data
,
cifs_sb
,
false
);
break
;
case
-
EREMOTE
:
cifs_create_dfs_fattr
(
&
fattr
,
inode
->
i_sb
);
rc
=
0
;
break
;
case
-
EOPNOTSUPP
:
case
-
EINVAL
:
/*
* FIXME: legacy server -- fall back to path-based call?
* for now, just skip revalidating and mark inode for
...
...
@@ -570,18 +579,14 @@ int cifs_get_file_info(struct file *filp)
*/
rc
=
0
;
CIFS_I
(
inode
)
->
time
=
0
;
default:
goto
cgfi_exit
;
}
else
if
(
rc
==
-
EREMOTE
)
{
cifs_create_dfs_fattr
(
&
fattr
,
inode
->
i_sb
);
rc
=
0
;
}
else
if
(
rc
)
goto
cgfi_exit
;
}
/*
* don't bother with SFU junk here -- just mark inode as needing
* revalidation.
*/
cifs_all_info_to_fattr
(
&
fattr
,
&
find_data
,
cifs_sb
,
false
);
fattr
.
cf_uniqueid
=
CIFS_I
(
inode
)
->
uniqueid
;
fattr
.
cf_flags
|=
CIFS_FATTR_NEED_REVAL
;
cifs_fattr_to_inode
(
inode
,
&
fattr
);
...
...
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