summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Harfouche <mark.harfouche@gmail.com>2024-02-23 13:18:13 -0500
committerGitHub <noreply@github.com>2024-02-23 13:18:13 -0500
commitb4679db71a8fa41c637530bdfabbf807239f27e3 (patch)
tree747059e3470c4a75fffaf6fd6d7c898a61251aaf
parent7906a062c76f498cbfeea5b312ee1baa765f56d2 (diff)
Remove import of kcmp
-rw-r--r--src/extract_gpuinfo_amdgpu.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/extract_gpuinfo_amdgpu.c b/src/extract_gpuinfo_amdgpu.c
index 93095b9..e166cc9 100644
--- a/src/extract_gpuinfo_amdgpu.c
+++ b/src/extract_gpuinfo_amdgpu.c
@@ -37,7 +37,6 @@
#include <inttypes.h>
#include <libdrm/amdgpu.h>
#include <libdrm/amdgpu_drm.h>
-#include <linux/kcmp.h>
#include <math.h>
#include <stdarg.h>
#include <stdbool.h>
@@ -814,9 +813,6 @@ static bool parse_drm_fdinfo_amd(struct gpu_info *info, FILE *fdinfo_file, struc
// Client id is a unique identifier. From the DRM documentation "Unique value relating to the open DRM
// file descriptor used to distinguish duplicated and shared file descriptors. Conceptually the value should map
// 1:1 to the in kernel representation of struct drm_file instances."
- // This information is available for the AMDGPU driver shipping with
- // the kernel >= 5.19. We still have to use the kcmp syscall to
- // distinguish duplicated file descriptors for older kernels.
char *endptr;
cid = strtoul(val, &endptr, 10);
if (*endptr)