app/test-fib: fix 32-bits build
[dpdk.git] / app / test-fib / main.c
index 3c29ca4..7fd3420 100644 (file)
@@ -362,7 +362,7 @@ complete_v6_addr(uint32_t *addr, uint32_t rnd, int n)
 static void
 gen_random_rt_6(struct rt_rule_6 *rt, int nh_sz)
 {
-       uint32_t i, j, k = 0;
+       uint32_t a, i, j, k = 0;
 
        if (config.nb_routes_per_depth[0] != 0) {
                memset(rt[k].addr, 0, 16);
@@ -370,7 +370,7 @@ gen_random_rt_6(struct rt_rule_6 *rt, int nh_sz)
                rt[k++].nh = rte_rand() & get_max_nh(nh_sz);
        }
 
-       for (int a = 0; a < 4; a++) {
+       for (a = 0; a < 4; a++) {
                for (i = 1; i <= 32; i++) {
                        uint32_t rnd;
                        double edge = 0;
@@ -790,7 +790,7 @@ dump_rt_4(struct rt_rule_4 *rt)
        }
 
        for (i = 0; i < config.nb_routes; i++)
-               fprintf(f, NIPQUAD_FMT"/%d %lu\n", NIPQUAD(rt[i].addr),
+               fprintf(f, NIPQUAD_FMT"/%d %"PRIu64"\n", NIPQUAD(rt[i].addr),
                        rt[i].depth, rt[i].nh);
 
        fclose(f);
@@ -858,7 +858,8 @@ run_v4(void)
                                return -ret;
                        }
                }
-               printf("AVG FIB add %lu\n", (rte_rdtsc_precise() - start) / j);
+               printf("AVG FIB add %"PRIu64"\n",
+                       (rte_rdtsc_precise() - start) / j);
                i += j;
        }
 
@@ -885,7 +886,7 @@ run_v4(void)
                                        return -ret;
                                }
                        }
-                       printf("AVG LPM add %lu\n",
+                       printf("AVG LPM add %"PRIu64"\n",
                                (rte_rdtsc_precise() - start) / j);
                        i += j;
                }
@@ -939,7 +940,7 @@ run_v4(void)
                for (j = 0; j < (config.nb_routes - i) / k; j++)
                        rte_fib_delete(fib, rt[i + j].addr, rt[i + j].depth);
 
-               printf("AVG FIB delete %lu\n",
+               printf("AVG FIB delete %"PRIu64"\n",
                        (rte_rdtsc_precise() - start) / j);
                i += j;
        }
@@ -951,7 +952,7 @@ run_v4(void)
                                rte_lpm_delete(lpm, rt[i + j].addr,
                                        rt[i + j].depth);
 
-                       printf("AVG LPM delete %lu\n",
+                       printf("AVG LPM delete %"PRIu64"\n",
                                (rte_rdtsc_precise() - start) / j);
                        i += j;
                }
@@ -973,7 +974,7 @@ dump_rt_6(struct rt_rule_6 *rt)
        }
 
        for (i = 0; i < config.nb_routes; i++) {
-               fprintf(f, NIPQUAD6_FMT"/%d %lu\n", NIPQUAD6(rt[i].addr),
+               fprintf(f, NIPQUAD6_FMT"/%d %"PRIu64"\n", NIPQUAD6(rt[i].addr),
                        rt[i].depth, rt[i].nh);
 
        }
@@ -1036,7 +1037,8 @@ run_v6(void)
                                return -ret;
                        }
                }
-               printf("AVG FIB add %lu\n", (rte_rdtsc_precise() - start) / j);
+               printf("AVG FIB add %"PRIu64"\n",
+                       (rte_rdtsc_precise() - start) / j);
                i += j;
        }
 
@@ -1063,7 +1065,7 @@ run_v6(void)
                                        return -ret;
                                }
                        }
-                       printf("AVG LPM add %lu\n",
+                       printf("AVG LPM add %"PRIu64"\n",
                                (rte_rdtsc_precise() - start) / j);
                        i += j;
                }
@@ -1121,7 +1123,7 @@ run_v6(void)
                for (j = 0; j < (config.nb_routes - i) / k; j++)
                        rte_fib6_delete(fib, rt[i + j].addr, rt[i + j].depth);
 
-               printf("AVG FIB delete %lu\n",
+               printf("AVG FIB delete %"PRIu64"\n",
                        (rte_rdtsc_precise() - start) / j);
                i += j;
        }
@@ -1133,7 +1135,7 @@ run_v6(void)
                                rte_lpm6_delete(lpm, rt[i + j].addr,
                                        rt[i + j].depth);
 
-                       printf("AVG LPM delete %lu\n",
+                       printf("AVG LPM delete %"PRIu64"\n",
                                (rte_rdtsc_precise() - start) / j);
                        i += j;
                }
@@ -1145,7 +1147,8 @@ int
 main(int argc, char **argv)
 {
        int ret, af, rt_ent_sz, lookup_ent_sz;
-       FILE    *fr, *fl;
+       FILE *fr = NULL;
+       FILE *fl = NULL;
        uint8_t depth_lim;
 
        ret = rte_eal_init(argc, argv);
@@ -1207,7 +1210,7 @@ main(int argc, char **argv)
                rte_exit(-ENOMEM, "Can not alloc lookup table\n");
 
        /* Fill routes table */
-       if (config.routes_file == NULL) {
+       if (fr == NULL) {
                if (distrib_string != NULL)
                        ret = parse_distrib(depth_lim, config.nb_routes);
                else {
@@ -1243,7 +1246,7 @@ main(int argc, char **argv)
        }
 
        /* Fill lookup table with ip's*/
-       if (config.lookup_ips_file == NULL)
+       if (fl == NULL)
                gen_rnd_lookup_tbl(af);
        else {
                ret = parse_lookup(fl, af);