Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Aufs5 Standalone
Commits
8f5143b3
Commit
8f5143b3
authored
Jun 21, 2020
by
J. R. Okajima
Browse files
Merge branch 'aufs5.2/30stdalone' into aufs5.2/39public
parents
d71d66f8
e585343d
Changes
2
Hide whitespace changes
Inline
Side-by-side
fs/aufs/branch.c
View file @
8f5143b3
...
...
@@ -1218,6 +1218,7 @@ static int au_br_mod_files_ro(struct super_block *sb, aufs_bindex_t bindex)
unsigned
char
verbose
,
writer
;
struct
file
*
file
,
*
hf
,
**
array
;
struct
au_hfile
*
hfile
;
struct
inode
*
h_inode
;
mnt_flags
=
au_mntflags
(
sb
);
verbose
=
!!
au_opt_test
(
mnt_flags
,
VERBOSE
);
...
...
@@ -1288,7 +1289,10 @@ static int au_br_mod_files_ro(struct super_block *sb, aufs_bindex_t bindex)
hf
->
f_mode
&=
~
(
FMODE_WRITE
|
FMODE_WRITER
);
spin_unlock
(
&
hf
->
f_lock
);
if
(
writer
)
{
put_write_access
(
file_inode
(
hf
));
h_inode
=
file_inode
(
hf
);
if
(
hf
->
f_mode
&
FMODE_READ
)
i_readcount_inc
(
h_inode
);
put_write_access
(
h_inode
);
__mnt_drop_write
(
hf
->
f_path
.
mnt
);
}
}
...
...
fs/aufs/vfsub.c
View file @
8f5143b3
...
...
@@ -76,15 +76,8 @@ int vfsub_update_h_iattr(struct path *h_path, int *did)
struct
file
*
vfsub_dentry_open
(
struct
path
*
path
,
int
flags
)
{
struct
file
*
file
;
file
=
dentry_open
(
path
,
flags
/* | __FMODE_NONOTIFY */
,
return
dentry_open
(
path
,
flags
/* | __FMODE_NONOTIFY */
,
current_cred
());
if
(
!
IS_ERR_OR_NULL
(
file
)
&&
(
file
->
f_mode
&
(
FMODE_READ
|
FMODE_WRITE
))
==
FMODE_READ
)
i_readcount_inc
(
d_inode
(
path
->
dentry
));
return
file
;
}
struct
file
*
vfsub_filp_open
(
const
char
*
path
,
int
oflags
,
int
mode
)
...
...
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