blob: 251f5d2b0e0db31b2762c30629f7114735d8d600 [file] [log] [blame]
Andrew Geissler5f350902021-07-23 13:09:54 -04001From a9802902d37b83c2c992cfe34179312f7209a962 Mon Sep 17 00:00:00 2001
2From: Wang Mingyu <wangmy@fujitsu.com>
3Date: Mon, 19 Jul 2021 10:12:12 +0900
4Subject: [PATCH] fix error for undeclared macro on musl
5
6Fixes the following compilation errors with musl that does not have
7NAME_MAX declared:
8'NAME_MAX' undeclared (first use in this function)
9
10Upstream-Status: Pending
11
12Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
13---
14 cmds/filesystem-usage.c | 1 +
15 1 file changed, 1 insertion(+)
16
17diff --git a/cmds/filesystem-usage.c b/cmds/filesystem-usage.c
18index 50d8995e..856e9d7b 100644
19--- a/cmds/filesystem-usage.c
20+++ b/cmds/filesystem-usage.c
21@@ -24,6 +24,7 @@
22 #include <stdarg.h>
23 #include <getopt.h>
24 #include <fcntl.h>
25+#include <limits.h>
26
27 #include "common/utils.h"
28 #include "kerncompat.h"