drivers/hv: Replace binary semaphore with mutex
authorDavidlohr Bueso <dave@stgolabs.net>
Fri, 1 Nov 2019 20:00:04 +0000 (13:00 -0700)
committerSasha Levin <sashal@kernel.org>
Fri, 22 Nov 2019 01:10:45 +0000 (20:10 -0500)
commit8aea7f82153d6f292add3eb4bd7ba8edcae5c7f7
tree244565444f8607800b64948edd97ccf12a9e2d7d
parentd7f0b2e450e94ad3811a812236529175ae86751e
drivers/hv: Replace binary semaphore with mutex

At a slight footprint cost (24 vs 32 bytes), mutexes are more optimal
than semaphores; it's also a nicer interface for mutual exclusion,
which is why they are encouraged over binary semaphores, when possible.

Replace the hyperv_mmio_lock, its semantics implies traditional lock
ownership; that is, the lock owner is the same for both lock/unlock
operations. Therefore it is safe to convert.

Signed-off-by: Davidlohr Bueso <dbueso@suse.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/hv/vmbus_drv.c