Commit 37aa3e13 authored by J. R. Okajima's avatar J. R. Okajima
Browse files

Merge branch 'aufs5.0/30stdalone' into aufs5.1/30stdalone

parents 42461c58 84e4e7b9
...@@ -40,8 +40,8 @@ static struct au_dykey *dy_gfind_get(struct hlist_bl_head *hbl, ...@@ -40,8 +40,8 @@ static struct au_dykey *dy_gfind_get(struct hlist_bl_head *hbl,
hlist_bl_lock(hbl); hlist_bl_lock(hbl);
hlist_bl_for_each_entry(tmp, pos, hbl, dk_hnode) hlist_bl_for_each_entry(tmp, pos, hbl, dk_hnode)
if (tmp->dk_op.dy_hop == h_op) { if (tmp->dk_op.dy_hop == h_op) {
if (kref_get_unless_zero(&tmp->dk_kref))
key = tmp; key = tmp;
kref_get(&key->dk_kref);
break; break;
} }
hlist_bl_unlock(hbl); hlist_bl_unlock(hbl);
...@@ -95,7 +95,7 @@ static struct au_dykey *dy_gadd(struct hlist_bl_head *hbl, struct au_dykey *key) ...@@ -95,7 +95,7 @@ static struct au_dykey *dy_gadd(struct hlist_bl_head *hbl, struct au_dykey *key)
hlist_bl_lock(hbl); hlist_bl_lock(hbl);
hlist_bl_for_each_entry(tmp, pos, hbl, dk_hnode) hlist_bl_for_each_entry(tmp, pos, hbl, dk_hnode)
if (tmp->dk_op.dy_hop == h_op) { if (tmp->dk_op.dy_hop == h_op) {
kref_get(&tmp->dk_kref); if (kref_get_unless_zero(&tmp->dk_kref))
found = tmp; found = tmp;
break; break;
} }
...@@ -114,7 +114,7 @@ static void dy_free_rcu(struct rcu_head *rcu) ...@@ -114,7 +114,7 @@ static void dy_free_rcu(struct rcu_head *rcu)
key = container_of(rcu, struct au_dykey, dk_rcu); key = container_of(rcu, struct au_dykey, dk_rcu);
DyPrSym(key); DyPrSym(key);
au_kfree_rcu(key); kfree(key);
} }
static void dy_free(struct kref *kref) static void dy_free(struct kref *kref)
......
...@@ -61,7 +61,7 @@ static int au_procfs_plm_write_si(struct file *file, unsigned long id) ...@@ -61,7 +61,7 @@ static int au_procfs_plm_write_si(struct file *file, unsigned long id)
hlist_bl_lock(&au_sbilist); hlist_bl_lock(&au_sbilist);
hlist_bl_for_each_entry(sbinfo, pos, &au_sbilist, si_list) hlist_bl_for_each_entry(sbinfo, pos, &au_sbilist, si_list)
if (id == sysaufs_si_id(sbinfo)) { if (id == sysaufs_si_id(sbinfo)) {
kobject_get(&sbinfo->si_kobj); if (kobject_get_unless_zero(&sbinfo->si_kobj))
sb = sbinfo->si_sb; sb = sbinfo->si_sb;
break; break;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment