All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tc: add missing limits.h header
@ 2016-12-22 18:52 Baruch Siach
  2016-12-29 18:44 ` Stephen Hemminger
  0 siblings, 1 reply; 2+ messages in thread
From: Baruch Siach @ 2016-12-22 18:52 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: netdev, Baruch Siach

This fixes under musl build issues like:

f_matchall.c: In function ‘matchall_parse_opt’:
f_matchall.c:48:12: error: ‘LONG_MIN’ undeclared (first use in this function)
   if (h == LONG_MIN || h == LONG_MAX) {
            ^
f_matchall.c:48:12: note: each undeclared identifier is reported only once for each function it appears in
f_matchall.c:48:29: error: ‘LONG_MAX’ undeclared (first use in this function)
   if (h == LONG_MIN || h == LONG_MAX) {
                             ^

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 tc/tc_util.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tc/tc_util.h b/tc/tc_util.h
index f198a4ad5554..4db26c6d5e25 100644
--- a/tc/tc_util.h
+++ b/tc/tc_util.h
@@ -2,6 +2,7 @@
 #define _TC_UTIL_H_ 1
 
 #define MAX_MSG 16384
+#include <limits.h>
 #include <linux/pkt_sched.h>
 #include <linux/pkt_cls.h>
 #include <linux/gen_stats.h>
-- 
2.11.0

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

* Re: [PATCH] tc: add missing limits.h header
  2016-12-22 18:52 [PATCH] tc: add missing limits.h header Baruch Siach
@ 2016-12-29 18:44 ` Stephen Hemminger
  0 siblings, 0 replies; 2+ messages in thread
From: Stephen Hemminger @ 2016-12-29 18:44 UTC (permalink / raw)
  To: Baruch Siach; +Cc: netdev

On Thu, 22 Dec 2016 20:52:48 +0200
Baruch Siach <baruch@tkos.co.il> wrote:

> This fixes under musl build issues like:
> 
> f_matchall.c: In function ‘matchall_parse_opt’:
> f_matchall.c:48:12: error: ‘LONG_MIN’ undeclared (first use in this function)
>    if (h == LONG_MIN || h == LONG_MAX) {
>             ^
> f_matchall.c:48:12: note: each undeclared identifier is reported only once for each function it appears in
> f_matchall.c:48:29: error: ‘LONG_MAX’ undeclared (first use in this function)
>    if (h == LONG_MIN || h == LONG_MAX) {
>                              ^
> 
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Sure, applied

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

end of thread, other threads:[~2016-12-29 18:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-22 18:52 [PATCH] tc: add missing limits.h header Baruch Siach
2016-12-29 18:44 ` Stephen Hemminger

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.