[PATCH RESEND stable 5.4] perf tools: Fixup get_current_dir_name() compilation

Florian Fainelli posted 1 patch 3 years, 6 months ago
There is a newer version of this series
tools/perf/util/get_current_dir_name.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
[PATCH RESEND stable 5.4] perf tools: Fixup get_current_dir_name() compilation
Posted by Florian Fainelli 3 years, 6 months ago
From: Alexey Dobriyan <adobriyan@gmail.com>

commit 128dbd78bd673f9edbc4413072b23efb6657feb0 upstream

strdup() prototype doesn't live in stdlib.h .

Add limits.h for PATH_MAX definition as well.

This fixes the build on Android.

Signed-off-by: Alexey Dobriyan (SK hynix) <adobriyan@gmail.com>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Link: http://lore.kernel.org/lkml/YRukaQbrgDWhiwGr@localhost.localdomain
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---

This patch is necessary to build perf with a musl-libc toolchain, not
just Android's bionic.

Resending because missed stable the first time

 tools/perf/util/get_current_dir_name.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/perf/util/get_current_dir_name.c b/tools/perf/util/get_current_dir_name.c
index b205d929245f..e68935e9ac8c 100644
--- a/tools/perf/util/get_current_dir_name.c
+++ b/tools/perf/util/get_current_dir_name.c
@@ -3,8 +3,9 @@
 //
 #ifndef HAVE_GET_CURRENT_DIR_NAME
 #include "get_current_dir_name.h"
+#include <limits.h>
+#include <string.h>
 #include <unistd.h>
-#include <stdlib.h>
 
 /* Android's 'bionic' library, for one, doesn't have this */
 
-- 
2.25.1
Re: [PATCH RESEND stable 5.4] perf tools: Fixup get_current_dir_name() compilation
Posted by Greg Kroah-Hartman 3 years, 6 months ago
On Wed, Oct 05, 2022 at 01:40:28PM -0700, Florian Fainelli wrote:
> From: Alexey Dobriyan <adobriyan@gmail.com>
> 
> commit 128dbd78bd673f9edbc4413072b23efb6657feb0 upstream
> 
> strdup() prototype doesn't live in stdlib.h .
> 
> Add limits.h for PATH_MAX definition as well.
> 
> This fixes the build on Android.
> 
> Signed-off-by: Alexey Dobriyan (SK hynix) <adobriyan@gmail.com>
> Acked-by: Namhyung Kim <namhyung@kernel.org>
> Link: http://lore.kernel.org/lkml/YRukaQbrgDWhiwGr@localhost.localdomain
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
> ---
> 
> This patch is necessary to build perf with a musl-libc toolchain, not
> just Android's bionic.
> 
> Resending because missed stable the first time

Both backports now queued up, thanks.

greg k-h