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
84e4e7b9
Commit
84e4e7b9
authored
Jun 08, 2019
by
J. R. Okajima
Browse files
Merge branch 'aufs5.0/01modular' into aufs5.0/30stdalone
parents
18798024
296aa84b
Changes
2
Hide whitespace changes
Inline
Side-by-side
fs/aufs/dynop.c
View file @
84e4e7b9
...
...
@@ -40,8 +40,8 @@ static struct au_dykey *dy_gfind_get(struct hlist_bl_head *hbl,
hlist_bl_lock
(
hbl
);
hlist_bl_for_each_entry
(
tmp
,
pos
,
hbl
,
dk_hnode
)
if
(
tmp
->
dk_op
.
dy_hop
==
h_op
)
{
key
=
tmp
;
kref_get
(
&
key
->
dk_kref
)
;
if
(
kref_get_unless_zero
(
&
tmp
->
dk_kref
))
key
=
tmp
;
break
;
}
hlist_bl_unlock
(
hbl
);
...
...
@@ -95,8 +95,8 @@ static struct au_dykey *dy_gadd(struct hlist_bl_head *hbl, struct au_dykey *key)
hlist_bl_lock
(
hbl
);
hlist_bl_for_each_entry
(
tmp
,
pos
,
hbl
,
dk_hnode
)
if
(
tmp
->
dk_op
.
dy_hop
==
h_op
)
{
kref_get
(
&
tmp
->
dk_kref
)
;
found
=
tmp
;
if
(
kref_get
_unless_zero
(
&
tmp
->
dk_kref
)
)
found
=
tmp
;
break
;
}
if
(
!
found
)
...
...
@@ -114,7 +114,7 @@ static void dy_free_rcu(struct rcu_head *rcu)
key
=
container_of
(
rcu
,
struct
au_dykey
,
dk_rcu
);
DyPrSym
(
key
);
au_
kfree
_rcu
(
key
);
kfree
(
key
);
}
static
void
dy_free
(
struct
kref
*
kref
)
...
...
fs/aufs/procfs.c
View file @
84e4e7b9
...
...
@@ -61,8 +61,8 @@ static int au_procfs_plm_write_si(struct file *file, unsigned long id)
hlist_bl_lock
(
&
au_sbilist
);
hlist_bl_for_each_entry
(
sbinfo
,
pos
,
&
au_sbilist
,
si_list
)
if
(
id
==
sysaufs_si_id
(
sbinfo
))
{
kobject_get
(
&
sbinfo
->
si_kobj
)
;
sb
=
sbinfo
->
si_sb
;
if
(
kobject_get
_unless_zero
(
&
sbinfo
->
si_kobj
)
)
sb
=
sbinfo
->
si_sb
;
break
;
}
hlist_bl_unlock
(
&
au_sbilist
);
...
...
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