1From 33e945f31fee2d74a392eb79025c9477e12b590d Mon Sep 17 00:00:00 2001 2From: Khem Raj <raj.khem@gmail.com> 3Date: Thu, 18 Mar 2021 00:49:48 -0700 4Subject: [PATCH 08/10] include linux/limits.h for MAX_INPUT 5 6Fixes 7op_pe_utils.cpp:533:19: error: 'MAX_INPUT' was not declared in this scope 8 9Upstream-Status: Pending 10 11Signed-off-by: Khem Raj <raj.khem@gmail.com> 12--- 13 libpe_utils/op_pe_utils.cpp | 1 + 14 1 file changed, 1 insertion(+) 15 16diff --git a/libpe_utils/op_pe_utils.cpp b/libpe_utils/op_pe_utils.cpp 17index 1ca4ce3a..c5d16a56 100644 18--- a/libpe_utils/op_pe_utils.cpp 19+++ b/libpe_utils/op_pe_utils.cpp 20@@ -11,6 +11,7 @@ 21 * 22 */ 23 24+#include <linux/limits.h> 25 #include <linux/perf_event.h> 26 #include <dirent.h> 27 #include <stdio.h> 28-- 292.31.0 30 31