Files
linux-nvgpu/drivers/gpu/nvgpu/os/posix/rwsem.c
ajesh ce4e7a6859 gpu: nvgpu: remove redundant error prints
Remove OS API return error prints from posix files as the BUG
function prints the function and line number which causes the
error.

Jira NVGPU-4987

Change-Id: Ie6d6f781241ac5e837f2732fbb1cc1ddc4d971d4
Signed-off-by: ajesh <akv@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2337390
Reviewed-by: automaticguardword <automaticguardword@nvidia.com>
Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com>
Reviewed-by: svc-mobile-misra <svc-mobile-misra@nvidia.com>
Reviewed-by: Shashank Singh <shashsingh@nvidia.com>
Reviewed-by: Ankur Kishore <ankkishore@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
GVS: Gerrit_Virtual_Submit
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
2020-12-15 14:13:28 -06:00

63 lines
1.9 KiB
C

/*
* Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#include <pthread.h>
#include <nvgpu/rwsem.h>
#include <nvgpu/log.h>
#include <nvgpu/bug.h>
void nvgpu_rwsem_init(struct nvgpu_rwsem *rwsem)
{
int err = pthread_rwlock_init(&rwsem->rw_sem, NULL);
nvgpu_assert(err == 0);
}
/*
* Acquire.
*/
void nvgpu_rwsem_down_read(struct nvgpu_rwsem *rwsem)
{
int err = pthread_rwlock_rdlock(&rwsem->rw_sem);
nvgpu_assert(err == 0);
}
/*
* Release.
*/
void nvgpu_rwsem_up_read(struct nvgpu_rwsem *rwsem)
{
int err = pthread_rwlock_unlock(&rwsem->rw_sem);
nvgpu_assert(err == 0);
}
void nvgpu_rwsem_down_write(struct nvgpu_rwsem *rwsem)
{
int err = pthread_rwlock_wrlock(&rwsem->rw_sem);
nvgpu_assert(err == 0);
}
void nvgpu_rwsem_up_write(struct nvgpu_rwsem *rwsem)
{
int err = pthread_rwlock_unlock(&rwsem->rw_sem);
nvgpu_assert(err == 0);
}