summaryrefslogtreecommitdiffstats
path: root/meta-openembedded/meta-oe/recipes-extended/tipcutils/tipcutils/0002-replace-non-standard-uint-with-unsigned-int.patch
blob: 03e711e9a4bd0cd2efbc71d438f2cde12c70d392 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
From 3d091efa09478d0330be686184ae4793764504e7 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Tue, 11 Apr 2017 14:22:23 -0700
Subject: [PATCH 2/2] replace non-standard uint with unsigned int

make it portable on musl

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 demos/benchmark/client_tipc.c       | 34 +++++++++++++++++-----------------
 demos/benchmark/common_tipc.h       |  2 +-
 demos/benchmark/server_tipc.c       | 10 +++++-----
 demos/inventory_sim/inventory_sim.c | 12 ++++++------
 4 files changed, 29 insertions(+), 29 deletions(-)

diff --git a/demos/benchmark/client_tipc.c b/demos/benchmark/client_tipc.c
index 5d889ee..d913e42 100644
--- a/demos/benchmark/client_tipc.c
+++ b/demos/benchmark/client_tipc.c
@@ -65,7 +65,7 @@ static const struct sockaddr_tipc master_clnt_addr = {
 
 static int master_clnt_sd;
 static int master_srv_sd;
-static uint client_id;
+static unsigned int client_id;
 static unsigned char *buf = NULL;
 static int non_blk = 0;
 static int select_ip(struct srv_info *sinfo, char *name);
@@ -79,7 +79,7 @@ struct master_client_cmd {
 	__u32 bounce;
 };
 
-static void master_to_client(uint cmd, uint msglen, uint msgcnt, uint bounce)
+static void master_to_client(unsigned int cmd, unsigned int msglen, unsigned int msgcnt, unsigned int bounce)
 {
 	struct master_client_cmd c;
 
@@ -93,7 +93,7 @@ static void master_to_client(uint cmd, uint msglen, uint msgcnt, uint bounce)
 		die("Unable to send cmd %u to clients\n", cmd);
 }
 
-static void client_from_master(uint *cmd, uint *msglen, uint *msgcnt, uint *bounce)
+static void client_from_master(unsigned int *cmd, unsigned int *msglen, unsigned int *msgcnt, unsigned int *bounce)
 {
 	struct master_client_cmd c;
 
@@ -114,7 +114,7 @@ struct client_master_cmd {
 	__u32 cmd;
 };
 
-static void client_to_master(uint cmd)
+static void client_to_master(unsigned int cmd)
 {
 	struct client_master_cmd c;
 
@@ -125,7 +125,7 @@ static void client_to_master(uint cmd)
 		die("Client: Unable to send msg to master\n");
 }
 
-static void master_from_client(uint *cmd)
+static void master_from_client(unsigned int *cmd)
 {
 	struct client_master_cmd c;
 
@@ -137,7 +137,7 @@ static void master_from_client(uint *cmd)
 	*cmd = ntohl(c.cmd);
 }
 
-static void master_to_srv(uint cmd, uint msglen, uint msgcnt, uint echo)
+static void master_to_srv(unsigned int cmd, unsigned int msglen, unsigned int msgcnt, unsigned int echo)
 {
 	struct master_srv_cmd c;
 
@@ -151,7 +151,7 @@ static void master_to_srv(uint cmd, uint msglen, uint msgcnt, uint echo)
 		die("Unable to send cmd %u to servers\n", cmd);
 }
 
-static void master_from_srv(uint *cmd, struct srv_info *sinfo, __u32 *tipc_addr)
+static void master_from_srv(unsigned int *cmd, struct srv_info *sinfo, __u32 *tipc_addr)
 {
 	struct srv_to_master_cmd c;
 
@@ -290,7 +290,7 @@ static void client_main(unsigned int clnt_id, ushort tcp_port, int tcp_addr)
 {
 	int peer_sd, efd = 0;
 	int imp = clnt_id % 4;
-	uint cmd, msglen, msgcnt, echo;
+	unsigned int cmd, msglen, msgcnt, echo;
 	struct epoll_event event, revents;
 	struct sockaddr_in tcp_dest;
 	int rc;
@@ -400,22 +400,22 @@ static void client_main(unsigned int clnt_id, ushort tcp_port, int tcp_addr)
 int main(int argc, char *argv[], char *dummy[])
 {
 	int c;
-	uint cmd;
-	uint latency_transf = DEFAULT_LAT_MSGS;
-	uint thruput_transf = DEFAULT_THRU_MSGS;
-	uint req_clients = DEFAULT_CLIENTS;
-	uint first_msglen = DEFAULT_MSGLEN;
-	uint last_msglen = TIPC_MAX_USER_MSG_SIZE;
+	unsigned int cmd;
+	unsigned int latency_transf = DEFAULT_LAT_MSGS;
+	unsigned int thruput_transf = DEFAULT_THRU_MSGS;
+	unsigned int req_clients = DEFAULT_CLIENTS;
+	unsigned int first_msglen = DEFAULT_MSGLEN;
+	unsigned int last_msglen = TIPC_MAX_USER_MSG_SIZE;
 	unsigned long long msglen;
 	unsigned long long num_clients;
 	struct timeval start_time;
 	unsigned long long elapsed;
 	unsigned long long msgcnt;
 	unsigned long long iter;
-	uint clnt_id;
-	uint conn_typ = TIPC_CONN;
+	unsigned int clnt_id;
+	unsigned int conn_typ = TIPC_CONN;
 	ushort tcp_port = 0;
-	uint tcp_addr = 0;
+	unsigned int tcp_addr = 0;
 	struct srv_info sinfo;
 	__u32 peer_tipc_addr;
 	char ifname[16] = {0,};
diff --git a/demos/benchmark/common_tipc.h b/demos/benchmark/common_tipc.h
index 1765ba1..47947e0 100644
--- a/demos/benchmark/common_tipc.h
+++ b/demos/benchmark/common_tipc.h
@@ -256,7 +256,7 @@ static void get_ip_list(struct srv_info *sinfo, char *ifname)
 	}
 }
 
-static uint own_node(void)
+static unsigned int own_node(void)
 {
 	struct sockaddr_tipc addr;
 	socklen_t sz = sizeof(addr);
diff --git a/demos/benchmark/server_tipc.c b/demos/benchmark/server_tipc.c
index 9d0e2be..3cd82b7 100644
--- a/demos/benchmark/server_tipc.c
+++ b/demos/benchmark/server_tipc.c
@@ -45,7 +45,7 @@ static int wait_for_connection(int listener_sd);
 static void echo_messages(int peer_sd, int master_sd, int srv_id);
 static __u32 own_node_addr;
 
-static void srv_to_master(uint cmd, struct srv_info *sinfo)
+static void srv_to_master(unsigned int cmd, struct srv_info *sinfo)
 {
 	struct srv_to_master_cmd c;
 
@@ -62,7 +62,7 @@ static void srv_to_master(uint cmd, struct srv_info *sinfo)
 		die("Server: unable to send info to master\n");
 }
 
-static void srv_from_master(uint *cmd, uint* msglen, uint *msgcnt, uint *echo)
+static void srv_from_master(unsigned int *cmd, unsigned int* msglen, unsigned int *msgcnt, unsigned int *echo)
 {
 	struct master_srv_cmd c;
 
@@ -84,8 +84,8 @@ int main(int argc, char *argv[], char *dummy[])
 {
 	ushort tcp_port = 4711;
 	struct srv_info sinfo;
-	uint cmd;
-	uint max_msglen;
+	unsigned int cmd;
+	unsigned int max_msglen;
 	struct sockaddr_in srv_addr;
 	int lstn_sd, peer_sd;
 	int srv_id = 0, srv_cnt = 0;;
@@ -221,7 +221,7 @@ static int wait_for_connection(int lstn_sd)
 
 static void echo_messages(int peer_sd, int master_sd, int srv_id)
 {
-	uint cmd, msglen, msgcnt, echo, rcvd = 0;
+	unsigned int cmd, msglen, msgcnt, echo, rcvd = 0;
 
 	do {
 		/* Get msg length and number to expect, and ack: */
diff --git a/demos/inventory_sim/inventory_sim.c b/demos/inventory_sim/inventory_sim.c
index 22c33d1..9bf5443 100644
--- a/demos/inventory_sim/inventory_sim.c
+++ b/demos/inventory_sim/inventory_sim.c
@@ -940,9 +940,9 @@ int simItem(int itemID, int lagTime, int speed)
 	char outMsg[MSG_SIZE_MAX];
 	char *marker;
 	int msgSize;
-	uint zone;
-	uint cluster;
-	uint node;
+	unsigned int zone;
+	unsigned int cluster;
+	unsigned int node;
 	char itemName[NAME_SIZE];
 	int haveItem;
 	int res;
@@ -1134,9 +1134,9 @@ int simCust(int itemID, int lagTime, int waitTime, int speed, int taskID)
 	char msg[MSG_SIZE_MAX];
 	char *marker;
 	int msgSize;
-	uint zone;
-	uint cluster;
-	uint node;
+	unsigned int zone;
+	unsigned int cluster;
+	unsigned int node;
 	char custName[NAME_SIZE];
 	int transactionID;
 	int needItem;
-- 
2.12.2

OpenPOWER on IntegriCloud