DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] gpu/cuda: fix getenv related build error
@ 2023-08-03 16:25 Levend Sayar
  2023-09-29 15:00 ` David Marchand
  2023-10-06 10:07 ` David Marchand
  0 siblings, 2 replies; 5+ messages in thread
From: Levend Sayar @ 2023-08-03 16:25 UTC (permalink / raw)
  To: eagostini; +Cc: dev, Levend Sayar

If gdrapi.h is available, meson sets DRIVERS_GPU_CUDA_GDRCOPY_H as 1.
This causes gdrcopy.c build to give an error;
because compiler can not find signature of getenv.
stdlib.h is included for the definition of getenv function.

Fixes: ca12f5e8a7db ("gpu/cuda: mark unused GDRCopy functions parameters")

Signed-off-by: Levend Sayar <levendsayar@gmail.com>
---
 drivers/gpu/cuda/gdrcopy.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/gpu/cuda/gdrcopy.c b/drivers/gpu/cuda/gdrcopy.c
index 322a5dbeb2..bd56b73ce4 100644
--- a/drivers/gpu/cuda/gdrcopy.c
+++ b/drivers/gpu/cuda/gdrcopy.c
@@ -6,6 +6,8 @@
 
 #ifdef DRIVERS_GPU_CUDA_GDRCOPY_H
 
+#include <stdlib.h>
+
 static void *gdrclib;
 static gdr_t (*sym_gdr_open)(void);
 static int (*sym_gdr_pin_buffer)(gdr_t g, unsigned long addr, size_t size,
-- 
2.39.2 (Apple Git-143)


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-10-06 19:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-03 16:25 [PATCH] gpu/cuda: fix getenv related build error Levend Sayar
2023-09-29 15:00 ` David Marchand
2023-10-05 12:42   ` Elena Agostini
2023-10-06 10:07 ` David Marchand
2023-10-06 19:45   ` Levend Sayar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).