[PATCH 1/5] perf trace: Handle MSG_WAITFORONE not defined

2013-09-22 Thread David Ahern
Needed for compiles on Fedora 12 for example.

Signed-off-by: David Ahern 
---
 tools/perf/builtin-trace.c |3 +++
 1 file changed, 3 insertions(+)

diff --git a/tools/perf/builtin-trace.c b/tools/perf/builtin-trace.c
index f869c87..9c7f017 100644
--- a/tools/perf/builtin-trace.c
+++ b/tools/perf/builtin-trace.c
@@ -340,6 +340,9 @@ static size_t syscall_arg__scnprintf_socket_type(char *bf, 
size_t size,
 #ifndef MSG_PROBE
 #define MSG_PROBE   0x10
 #endif
+#ifndef MSG_WAITFORONE
+#define MSG_WAITFORONE 0x1
+#endif
 #ifndef MSG_SENDPAGE_NOTLAST
 #define MSG_SENDPAGE_NOTLAST 0x2
 #endif
-- 
1.7.10.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH 1/5] perf trace: Handle MSG_WAITFORONE not defined

2013-09-22 Thread David Ahern
Needed for compiles on Fedora 12 for example.

Signed-off-by: David Ahern dsah...@gmail.com
---
 tools/perf/builtin-trace.c |3 +++
 1 file changed, 3 insertions(+)

diff --git a/tools/perf/builtin-trace.c b/tools/perf/builtin-trace.c
index f869c87..9c7f017 100644
--- a/tools/perf/builtin-trace.c
+++ b/tools/perf/builtin-trace.c
@@ -340,6 +340,9 @@ static size_t syscall_arg__scnprintf_socket_type(char *bf, 
size_t size,
 #ifndef MSG_PROBE
 #define MSG_PROBE   0x10
 #endif
+#ifndef MSG_WAITFORONE
+#define MSG_WAITFORONE 0x1
+#endif
 #ifndef MSG_SENDPAGE_NOTLAST
 #define MSG_SENDPAGE_NOTLAST 0x2
 #endif
-- 
1.7.10.1

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/