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

aufs: for v5.5-rc1, remove an arg from rwsem_release()



Simply follows a change in mainline,
5facae4f3549 2019-10-09 locking/lockdep: Remove unused @nested argument from lock_release()
Signed-off-by: default avatarJ. R. Okajima <hooanon05g@gmail.com>
parent e6194431
......@@ -643,7 +643,7 @@ void au_pin_hdir_release(struct au_pin *p)
{
if (p->hdir) {
au_pin_hdir_set_owner(p, p->task);
rwsem_release(&p->hdir->hi_inode->i_rwsem.dep_map, 1, _RET_IP_);
rwsem_release(&p->hdir->hi_inode->i_rwsem.dep_map, _RET_IP_);
}
}
......
......@@ -192,7 +192,7 @@ static void au_wkq_lockdep_post(struct au_wkinfo *wkinfo)
if (!hl)
return;
while ((p = *hl++)) /* assignment */
rwsem_release(p->instance, 0, /*p->acquire_ip*/_RET_IP_);
rwsem_release(p->instance, /*p->acquire_ip*/_RET_IP_);
}
#endif
......
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