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
536e2eb4
Commit
536e2eb4
authored
Dec 01, 2011
by
Pavel Shilovsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove rwpidforward from wine mount option for 3.1
parent
d1847c6c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
5 deletions
+3
-5
README
sources/3.1/README
+1
-1
cifsfs.c
sources/3.1/cifsfs.c
+1
-2
cifsglob.h
sources/3.1/cifsglob.h
+1
-1
connect.c
sources/3.1/connect.c
+0
-1
No files found.
sources/3.1/README
View file @
536e2eb4
...
...
@@ -460,7 +460,7 @@ A partial list of the supported mount options follows:
rwpidforward Forward pid of a process who opened a file to any read or write
operation on that file. This prevent applications like WINE
from failing on read and write if we use mandatory brlock style.
wine Switch on
pidforwardio+
strictcache+forcemand.
wine Switch on strictcache+forcemand.
acl Allow setfacl and getfacl to manage posix ACLs if server
supports them. (default)
noacl Do not allow setfacl and getfacl calls on this mount
...
...
sources/3.1/cifsfs.c
View file @
536e2eb4
...
...
@@ -434,8 +434,7 @@ cifs_show_options(struct seq_file *s, struct vfsmount *m)
seq_printf
(
s
,
",mfsymlinks"
);
if
(
cifs_sb
->
mnt_cifs_flags
&
CIFS_MOUNT_FSCACHE
)
seq_printf
(
s
,
",fsc"
);
if
((
cifs_sb
->
mnt_cifs_flags
&
CIFS_MOUNT_RWPIDFORWARD
)
&&
(
cifs_sb
->
mnt_cifs_flags
&
CIFS_MOUNT_STRICT_IO
)
&&
if
((
cifs_sb
->
mnt_cifs_flags
&
CIFS_MOUNT_STRICT_IO
)
&&
(
cifs_sb
->
mnt_cifs_flags
&
CIFS_MOUNT_NOPOSIXBRL
))
seq_printf
(
s
,
",wine"
);
...
...
sources/3.1/cifsglob.h
View file @
536e2eb4
...
...
@@ -201,7 +201,7 @@ struct smb_vol {
bool
mfsymlinks
:
1
;
/* use Minshall+French Symlinks */
bool
multiuser
:
1
;
bool
rwpidforward
:
1
;
/* pid forward for read/write operations */
bool
wine
:
1
;
/* switch on
pidforwardio+
strictcache+forcemand */
bool
wine
:
1
;
/* switch on strictcache+forcemand */
unsigned
int
rsize
;
unsigned
int
wsize
;
bool
sockopt_tcp_nodelay
:
1
;
...
...
sources/3.1/connect.c
View file @
536e2eb4
...
...
@@ -1407,7 +1407,6 @@ cifs_parse_mount_options(const char *mountdata, const char *devname,
vol
->
wine
=
1
;
vol
->
strict_io
=
1
;
vol
->
mand_lock
=
1
;
vol
->
rwpidforward
=
1
;
}
else
if
(
strnicmp
(
data
,
"cifsacl"
,
7
)
==
0
)
{
vol
->
cifs_acl
=
1
;
}
else
if
(
strnicmp
(
data
,
"nocifsacl"
,
9
)
==
0
)
{
...
...
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