mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-22 17:36:20 +03:00
Added bellow CFLAGS:
-Werror -Wall -Wextra \
-Wmissing-braces -Wpointer-arith -Wundef \
-Wconversion -Wsign-conversion \
-Wformat-security \
-Wmissing-declarations -Wredundant-decls -Wimplicit-fallthrough
Also fixed all of compile errors for posix.
It's preparing for porting gpu server.
Jira GVSCI-11640
Signed-off-by: Richard Zhao <rizhao@nvidia.com>
Change-Id: I30b09a62a57396abd642922e22f2e550a96f42c2
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2555059
Reviewed-by: Shashank Singh <shashsingh@nvidia.com>
Reviewed-by: Aparna Das <aparnad@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
GVS: Gerrit_Virtual_Submit
102 lines
3.0 KiB
C
102 lines
3.0 KiB
C
/*
|
|
* Copyright (c) 2018-2022, 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 <nvgpu/os_sched.h>
|
|
|
|
#include <unistd.h>
|
|
#include <pthread.h>
|
|
|
|
#define CURRENT_NAME_LEN 30
|
|
|
|
int nvgpu_current_pid(struct gk20a *g)
|
|
{
|
|
(void)g;
|
|
/*
|
|
* In the kernel this gets us the PID of the calling process for IOCTLs.
|
|
* But since we are in userspace this doesn't quite mean the same thing.
|
|
* This simply returns the PID of the currently running process.
|
|
*/
|
|
return (int)getpid();
|
|
}
|
|
|
|
int nvgpu_current_tid(struct gk20a *g)
|
|
{
|
|
(void)g;
|
|
/*
|
|
* In POSIX thread ID is not the same as a process ID. In Linux threads
|
|
* and processes are represented by the same thing, but userspace can't
|
|
* really rely on that.
|
|
*
|
|
* We can, however, get a pthread_t for a given thread. But this
|
|
* pthread_t need not have any relation to the underlying system's
|
|
* representation of "threads".
|
|
*/
|
|
return (int)pthread_self();
|
|
}
|
|
|
|
void nvgpu_print_current_impl(struct gk20a *g, const char *func_name, int line,
|
|
void *ctx, enum nvgpu_log_type type)
|
|
{
|
|
(void)func_name;
|
|
(void)line;
|
|
(void)ctx;
|
|
const char *log_message = "(unknown process)";
|
|
|
|
#if defined(__NVGPU_POSIX__)
|
|
#ifdef _GNU_SOURCE
|
|
char current_tname[CURRENT_NAME_LEN];
|
|
|
|
/* pthread_getname_np() will return null terminated string on success */
|
|
if (pthread_getname_np(0, current_tname, CURRENT_NAME_LEN) == 0) {
|
|
log_message = current_tname;
|
|
}
|
|
#else
|
|
type = NVGPU_ERROR;
|
|
#endif
|
|
#else
|
|
char current_tname[CURRENT_NAME_LEN];
|
|
|
|
/* pthread_getname_np() will return null terminated string on success */
|
|
if (pthread_getname_np(0, current_tname, CURRENT_NAME_LEN) == 0) {
|
|
log_message = current_tname;
|
|
}
|
|
#endif
|
|
|
|
switch (type) {
|
|
case NVGPU_ERROR:
|
|
nvgpu_err(g, "%s", log_message);
|
|
break;
|
|
case NVGPU_WARNING:
|
|
nvgpu_warn(g, "%s", log_message);
|
|
break;
|
|
case NVGPU_DEBUG:
|
|
nvgpu_log(g, 0U, "%s", log_message);
|
|
break;
|
|
case NVGPU_INFO:
|
|
nvgpu_info(g, "%s", log_message);
|
|
break;
|
|
default:
|
|
nvgpu_err(g, "%s", log_message);
|
|
break;
|
|
}
|
|
}
|