net/ena/base: add device argument to logging macros
[dpdk.git] / app / test / test_rwlock.c
index 1d3774e..b47150a 100644 (file)
@@ -46,6 +46,7 @@ enum {
 static struct {
        rte_rwlock_t lock;
        uint64_t tick;
+
        volatile union {
                uint8_t u8[RTE_CACHE_LINE_SIZE];
                uint64_t u64[RTE_CACHE_LINE_SIZE / sizeof(uint64_t)];
@@ -65,7 +66,7 @@ struct try_rwlock_lcore {
 static struct try_rwlock_lcore try_lcore_data[RTE_MAX_LCORE];
 
 static int
-test_rwlock_per_core(__attribute__((unused)) void *arg)
+test_rwlock_per_core(__rte_unused void *arg)
 {
        rte_rwlock_write_lock(&sl);
        printf("Global write lock taken on core %u\n", rte_lcore_id());
@@ -86,26 +87,26 @@ test_rwlock_per_core(__attribute__((unused)) void *arg)
 
 static rte_rwlock_t lk = RTE_RWLOCK_INITIALIZER;
 static volatile uint64_t rwlock_data;
-static uint64_t lock_count[RTE_MAX_LCORE] = {0};
+static uint64_t time_count[RTE_MAX_LCORE] = {0};
 
-#define TIME_MS 100
+#define MAX_LOOP 10000
 #define TEST_RWLOCK_DEBUG 0
 
 static int
-load_loop_fn(__attribute__((unused)) void *arg)
+load_loop_fn(__rte_unused void *arg)
 {
        uint64_t time_diff = 0, begin;
        uint64_t hz = rte_get_timer_hz();
        uint64_t lcount = 0;
        const unsigned int lcore = rte_lcore_id();
 
-       /* wait synchro for slaves */
-       if (lcore != rte_get_master_lcore())
+       /* wait synchro for workers */
+       if (lcore != rte_get_main_lcore())
                while (rte_atomic32_read(&synchro) == 0)
                        ;
 
        begin = rte_rdtsc_precise();
-       while (time_diff < hz * TIME_MS / 1000) {
+       while (lcount < MAX_LOOP) {
                rte_rwlock_write_lock(&lk);
                ++rwlock_data;
                rte_rwlock_write_unlock(&lk);
@@ -119,10 +120,10 @@ load_loop_fn(__attribute__((unused)) void *arg)
                lcount++;
                /* delay to make lock duty cycle slightly realistic */
                rte_pause();
-               time_diff = rte_rdtsc_precise() - begin;
        }
 
-       lock_count[lcore] = lcount;
+       time_diff = rte_rdtsc_precise() - begin;
+       time_count[lcore] = time_diff * 1000000 / hz;
        return 0;
 }
 
@@ -134,23 +135,25 @@ test_rwlock_perf(void)
 
        printf("\nRwlock Perf Test on %u cores...\n", rte_lcore_count());
 
-       /* clear synchro and start slaves */
+       /* clear synchro and start workers */
        rte_atomic32_set(&synchro, 0);
-       if (rte_eal_mp_remote_launch(load_loop_fn, NULL, SKIP_MASTER) < 0)
+       if (rte_eal_mp_remote_launch(load_loop_fn, NULL, SKIP_MAIN) < 0)
                return -1;
 
-       /* start synchro and launch test on master */
+       /* start synchro and launch test on main */
        rte_atomic32_set(&synchro, 1);
        load_loop_fn(NULL);
 
        rte_eal_mp_wait_lcore();
 
        RTE_LCORE_FOREACH(i) {
-               printf("Core [%u] count = %"PRIu64"\n", i, lock_count[i]);
-               total += lock_count[i];
+               printf("Core [%u] cost time = %"PRIu64" us\n",
+                       i, time_count[i]);
+               total += time_count[i];
        }
 
-       printf("Total count = %"PRIu64"\n", total);
+       printf("Total cost time = %"PRIu64" us\n", total);
+       memset(time_count, 0, sizeof(time_count));
 
        return 0;
 }
@@ -159,7 +162,7 @@ test_rwlock_perf(void)
  * - There is a global rwlock and a table of rwlocks (one per lcore).
  *
  * - The test function takes all of these locks and launches the
- *   ``test_rwlock_per_core()`` function on each core (except the master).
+ *   ``test_rwlock_per_core()`` function on each core (except the main).
  *
  *   - The function takes the global write lock, display something,
  *     then releases the global lock.
@@ -180,26 +183,26 @@ rwlock_test1(void)
        int i;
 
        rte_rwlock_init(&sl);
-       for (i=0; i<RTE_MAX_LCORE; i++)
+       for (i = 0; i < RTE_MAX_LCORE; i++)
                rte_rwlock_init(&sl_tab[i]);
 
        rte_rwlock_write_lock(&sl);
 
-       RTE_LCORE_FOREACH_SLAVE(i) {
+       RTE_LCORE_FOREACH_WORKER(i) {
                rte_rwlock_write_lock(&sl_tab[i]);
                rte_eal_remote_launch(test_rwlock_per_core, NULL, i);
        }
 
        rte_rwlock_write_unlock(&sl);
 
-       RTE_LCORE_FOREACH_SLAVE(i) {
+       RTE_LCORE_FOREACH_WORKER(i) {
                rte_rwlock_write_unlock(&sl_tab[i]);
                rte_delay_ms(100);
        }
 
        rte_rwlock_write_lock(&sl);
        /* this message should be the last message of test */
-       printf("Global write lock taken on master core %u\n", rte_lcore_id());
+       printf("Global write lock taken on main core %u\n", rte_lcore_id());
        rte_rwlock_write_unlock(&sl);
 
        rte_eal_mp_wait_lcore();
@@ -250,7 +253,7 @@ try_write(uint32_t lc)
        if (rc != 0)
                return rc;
 
-       /* update by bytes in reverese order */
+       /* update by bytes in reverse order */
        for (i = RTE_DIM(try_rwlock_data.data.u8); i-- != 0; ) {
 
                /* race condition occurred, lock doesn't work properly */
@@ -267,7 +270,7 @@ try_write(uint32_t lc)
                try_rwlock_data.data.u8[i] = v;
        }
 
-       /* restore by bytes in reverese order */
+       /* restore by bytes in reverse order */
        for (i = RTE_DIM(try_rwlock_data.data.u8); i-- != 0; ) {
 
                /* race condition occurred, lock doesn't work properly */
@@ -459,27 +462,27 @@ try_rwlock_test_rda(void)
 {
        try_test_reset();
 
-       /* start read test on all avaialble lcores */
-       rte_eal_mp_remote_launch(try_read_lcore, NULL, CALL_MASTER);
+       /* start read test on all available lcores */
+       rte_eal_mp_remote_launch(try_read_lcore, NULL, CALL_MAIN);
        rte_eal_mp_wait_lcore();
 
        return process_try_lcore_stats();
 }
 
-/* all slave lcores grab RDLOCK, master one grabs WRLOCK */
+/* all worker lcores grab RDLOCK, main one grabs WRLOCK */
 static int
 try_rwlock_test_rds_wrm(void)
 {
        try_test_reset();
 
-       rte_eal_mp_remote_launch(try_read_lcore, NULL, SKIP_MASTER);
+       rte_eal_mp_remote_launch(try_read_lcore, NULL, SKIP_MAIN);
        try_write_lcore(NULL);
        rte_eal_mp_wait_lcore();
 
        return process_try_lcore_stats();
 }
 
-/* master and even slave lcores grab RDLOCK, odd lcores grab WRLOCK */
+/* main and even worker lcores grab RDLOCK, odd lcores grab WRLOCK */
 static int
 try_rwlock_test_rde_wro(void)
 {
@@ -487,7 +490,7 @@ try_rwlock_test_rde_wro(void)
 
        try_test_reset();
 
-       mlc = rte_get_master_lcore();
+       mlc = rte_get_main_lcore();
 
        RTE_LCORE_FOREACH(lc) {
                if (lc != mlc) {
@@ -545,3 +548,9 @@ test_rwlock(void)
 }
 
 REGISTER_TEST_COMMAND(rwlock_autotest, test_rwlock);
+
+/* subtests used in meson for CI */
+REGISTER_TEST_COMMAND(rwlock_test1_autotest, rwlock_test1);
+REGISTER_TEST_COMMAND(rwlock_rda_autotest, try_rwlock_test_rda);
+REGISTER_TEST_COMMAND(rwlock_rds_wrm_autotest, try_rwlock_test_rds_wrm);
+REGISTER_TEST_COMMAND(rwlock_rde_wro_autotest, try_rwlock_test_rde_wro);