]> git.baikalelectronics.ru Git - kernel.git/commit
fs: dlm: move kref_put assert for lkb structs
authorAlexander Aring <aahringo@redhat.com>
Fri, 24 Jun 2022 01:28:58 +0000 (21:28 -0400)
committerDavid Teigland <teigland@redhat.com>
Mon, 1 Aug 2022 14:31:46 +0000 (09:31 -0500)
commit50ea5c1905ead915bd5b620de6f51d3843cdd241
tree1f1e73b26254d944769759cad98ce9c349d1194f
parentc24aff07aa02a8db548b7ca682e19425cd3c25de
fs: dlm: move kref_put assert for lkb structs

The unhold_lkb() function decrements the lock's kref, and
asserts that the ref count was not the final one.  Use the
kref_put release function (which should not be called) to
call the assert, rather than doing the assert based on the
kref_put return value.  Using kill_lkb() as the release
function doesn't make sense if we only want to assert.

Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
fs/dlm/lock.c