summaryrefslogtreecommitdiffstats
path: root/patches/lmbench-3.0-a9/lmbench-3.0-a9-rpcheaders.diff
blob: 07ef7b144cb7e86d7299e99e85ac1ac1b1d23dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
From: Robert Schwebel <r.schwebel@pengutronix.de>
Subject: minor cleanups

Add missing header file, add a cast to silence compiler.

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
---

--- lmbench-3.0-a9-orig/src/lib_tcp.c	2006-06-27 18:27:19.000000000 +0200
+++ lmbench-3.0-a9/src/lib_tcp.c	2009-04-09 17:56:50.000000000 +0200
@@ -7,6 +7,7 @@
  */
 #define		_LIB /* bench.h needs this */
 #include	"bench.h"
+#include	<rpc/pmap_clnt.h>
 
 /*
  * Get a TCP socket, bind it, figure out the port,
@@ -148,7 +149,7 @@
 	fprintf(stderr, "Client port %d\n", sockport(sock));
 #endif
 	sock_optimize(sock, rdwr);
-	if (!h || host != save_host || prog != save_prog) {
+	if (!h || host != save_host || prog != (int)save_prog) {
 		save_host = host;	/* XXX - counting on them not
 					 * changing it - benchmark only.
 					 */
--- lmbench-3.0-a9-orig/src/lib_udp.c	2006-06-27 18:27:20.000000000 +0200
+++ lmbench-3.0-a9/src/lib_udp.c	2009-04-09 17:57:19.000000000 +0200
@@ -7,6 +7,7 @@
  */
 #define		_LIB /* bench.h needs this */
 #include	"bench.h"
+#include	<rpc/pmap_clnt.h>
 
 /*
  * Get a UDP socket, bind it, figure out the port,