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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2010-2014 Intel Corporation
*/
#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
#include <unistd.h>
#include <sys/queue.h>
#include <string.h>
#include <rte_common.h>
#include <rte_memory.h>
#include <rte_per_lcore.h>
#include <rte_launch.h>
#include <rte_rwlock.h>
#include <rte_eal.h>
#include <rte_lcore.h>
#include <rte_cycles.h>
#include "test.h"
/*
* rwlock test
* ===========
* Provides UT for rte_rwlock API.
* Main concern is on functional testing, but also provides some
* performance measurements.
* Obviously for proper testing need to be executed with more than one lcore.
*/
#define ITER_NUM 0x80
#define TEST_SEC 5
static rte_rwlock_t sl;
static rte_rwlock_t sl_tab[RTE_MAX_LCORE];
static RTE_ATOMIC(uint32_t) synchro;
enum {
LC_TYPE_RDLOCK,
LC_TYPE_WRLOCK,
};
static alignas(RTE_CACHE_LINE_SIZE) 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)];
} data;
} try_rwlock_data;
struct __rte_cache_aligned try_rwlock_lcore {
int32_t rc;
int32_t type;
struct {
uint64_t tick;
uint64_t fail;
uint64_t success;
} stat;
};
static struct try_rwlock_lcore try_lcore_data[RTE_MAX_LCORE];
static int
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());
rte_rwlock_write_unlock(&sl);
rte_rwlock_write_lock(&sl_tab[rte_lcore_id()]);
printf("Hello from core %u !\n", rte_lcore_id());
rte_rwlock_write_unlock(&sl_tab[rte_lcore_id()]);
rte_rwlock_read_lock(&sl);
printf("Global read lock taken on core %u\n", rte_lcore_id());
rte_delay_ms(100);
printf("Release global read lock on core %u\n", rte_lcore_id());
rte_rwlock_read_unlock(&sl);
return 0;
}
static rte_rwlock_t lk = RTE_RWLOCK_INITIALIZER;
static volatile uint64_t rwlock_data;
static uint64_t time_count[RTE_MAX_LCORE] = {0};
#define MAX_LOOP 10000
#define TEST_RWLOCK_DEBUG 0
static int
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 workers */
if (lcore != rte_get_main_lcore())
rte_wait_until_equal_32((uint32_t *)(uintptr_t)&synchro, 1,
rte_memory_order_relaxed);
begin = rte_rdtsc_precise();
while (lcount < MAX_LOOP) {
rte_rwlock_write_lock(&lk);
++rwlock_data;
rte_rwlock_write_unlock(&lk);
rte_rwlock_read_lock(&lk);
if (TEST_RWLOCK_DEBUG && !(lcount % 100))
printf("Core [%u] rwlock_data = %"PRIu64"\n",
lcore, rwlock_data);
rte_rwlock_read_unlock(&lk);
lcount++;
/* delay to make lock duty cycle slightly realistic */
rte_pause();
}
time_diff = rte_rdtsc_precise() - begin;
time_count[lcore] = time_diff * 1000000 / hz;
return 0;
}
static int
test_rwlock_perf(void)
{
unsigned int i;
uint64_t total = 0;
printf("\nRwlock Perf Test on %u cores...\n", rte_lcore_count());
/* clear synchro and start workers */
rte_atomic_store_explicit(&synchro, 0, rte_memory_order_relaxed);
if (rte_eal_mp_remote_launch(load_loop_fn, NULL, SKIP_MAIN) < 0)
return -1;
/* start synchro and launch test on main */
rte_atomic_store_explicit(&synchro, 1, rte_memory_order_relaxed);
load_loop_fn(NULL);
rte_eal_mp_wait_lcore();
RTE_LCORE_FOREACH(i) {
printf("Core [%u] cost time = %"PRIu64" us\n",
i, time_count[i]);
total += time_count[i];
}
printf("Total cost time = %"PRIu64" us\n", total);
memset(time_count, 0, sizeof(time_count));
return 0;
}
/*
* - 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 main).
*
* - The function takes the global write lock, display something,
* then releases the global lock.
* - Then, it takes the per-lcore write lock, display something, and
* releases the per-core lock.
* - Finally, a read lock is taken during 100 ms, then released.
*
* - The main function unlocks the per-lcore locks sequentially and
* waits between each lock. This triggers the display of a message
* for each core, in the correct order.
*
* Then, it tries to take the global write lock and display the last
* message. The autotest script checks that the message order is correct.
*/
static int
rwlock_test1(void)
{
int i;
rte_rwlock_init(&sl);
for (i = 0; i < RTE_MAX_LCORE; i++)
rte_rwlock_init(&sl_tab[i]);
rte_rwlock_write_lock(&sl);
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_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 main core %u\n", rte_lcore_id());
rte_rwlock_write_unlock(&sl);
rte_eal_mp_wait_lcore();
if (test_rwlock_perf() < 0)
return -1;
return 0;
}
static int
try_read(uint32_t lc)
{
int32_t rc;
uint32_t i;
rc = rte_rwlock_read_trylock(&try_rwlock_data.lock);
if (rc != 0)
return rc;
for (i = 0; i != RTE_DIM(try_rwlock_data.data.u64); i++) {
/* race condition occurred, lock doesn't work properly */
if (try_rwlock_data.data.u64[i] != 0) {
printf("%s(%u) error: unexpected data pattern\n",
__func__, lc);
rte_memdump(stdout, NULL,
(void *)(uintptr_t)&try_rwlock_data.data,
sizeof(try_rwlock_data.data));
rc = -EFAULT;
break;
}
}
rte_rwlock_read_unlock(&try_rwlock_data.lock);
return rc;
}
static int
try_write(uint32_t lc)
{
int32_t rc;
uint32_t i, v;
v = RTE_MAX(lc % UINT8_MAX, 1U);
rc = rte_rwlock_write_trylock(&try_rwlock_data.lock);
if (rc != 0)
return rc;
/* 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 */
if (try_rwlock_data.data.u8[i] != 0) {
printf("%s:%d(%u) error: unexpected data pattern\n",
__func__, __LINE__, lc);
rte_memdump(stdout, NULL,
(void *)(uintptr_t)&try_rwlock_data.data,
sizeof(try_rwlock_data.data));
rc = -EFAULT;
break;
}
try_rwlock_data.data.u8[i] = v;
}
/* 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 */
if (try_rwlock_data.data.u8[i] != v) {
printf("%s:%d(%u) error: unexpected data pattern\n",
__func__, __LINE__, lc);
rte_memdump(stdout, NULL,
(void *)(uintptr_t)&try_rwlock_data.data,
sizeof(try_rwlock_data.data));
rc = -EFAULT;
break;
}
try_rwlock_data.data.u8[i] = 0;
}
rte_rwlock_write_unlock(&try_rwlock_data.lock);
return rc;
}
static int
try_read_lcore(__rte_unused void *data)
{
int32_t rc;
uint32_t i, lc;
uint64_t ftm, stm, tm;
struct try_rwlock_lcore *lcd;
lc = rte_lcore_id();
lcd = try_lcore_data + lc;
lcd->type = LC_TYPE_RDLOCK;
ftm = try_rwlock_data.tick;
stm = rte_get_timer_cycles();
do {
for (i = 0; i != ITER_NUM; i++) {
rc = try_read(lc);
if (rc == 0)
lcd->stat.success++;
else if (rc == -EBUSY)
lcd->stat.fail++;
else
break;
rc = 0;
}
tm = rte_get_timer_cycles() - stm;
} while (tm < ftm && rc == 0);
lcd->rc = rc;
lcd->stat.tick = tm;
return rc;
}
static int
try_write_lcore(__rte_unused void *data)
{
int32_t rc;
uint32_t i, lc;
uint64_t ftm, stm, tm;
struct try_rwlock_lcore *lcd;
lc = rte_lcore_id();
lcd = try_lcore_data + lc;
lcd->type = LC_TYPE_WRLOCK;
ftm = try_rwlock_data.tick;
stm = rte_get_timer_cycles();
do {
for (i = 0; i != ITER_NUM; i++) {
rc = try_write(lc);
if (rc == 0)
lcd->stat.success++;
else if (rc == -EBUSY)
lcd->stat.fail++;
else
break;
rc = 0;
}
tm = rte_get_timer_cycles() - stm;
} while (tm < ftm && rc == 0);
lcd->rc = rc;
lcd->stat.tick = tm;
return rc;
}
static void
print_try_lcore_stats(const struct try_rwlock_lcore *tlc, uint32_t lc)
{
uint64_t f, s;
f = RTE_MAX(tlc->stat.fail, 1ULL);
s = RTE_MAX(tlc->stat.success, 1ULL);
printf("try_lcore_data[%u]={\n"
"\trc=%d,\n"
"\ttype=%s,\n"
"\tfail=%" PRIu64 ",\n"
"\tsuccess=%" PRIu64 ",\n"
"\tcycles=%" PRIu64 ",\n"
"\tcycles/op=%#Lf,\n"
"\tcycles/success=%#Lf,\n"
"\tsuccess/fail=%#Lf,\n"
"};\n",
lc,
tlc->rc,
tlc->type == LC_TYPE_RDLOCK ? "RDLOCK" : "WRLOCK",
tlc->stat.fail,
tlc->stat.success,
tlc->stat.tick,
(long double)tlc->stat.tick /
(tlc->stat.fail + tlc->stat.success),
(long double)tlc->stat.tick / s,
(long double)tlc->stat.success / f);
}
static void
collect_try_lcore_stats(struct try_rwlock_lcore *tlc,
const struct try_rwlock_lcore *lc)
{
tlc->stat.tick += lc->stat.tick;
tlc->stat.fail += lc->stat.fail;
tlc->stat.success += lc->stat.success;
}
/*
* Process collected results:
* - check status
* - collect and print statistics
*/
static int
process_try_lcore_stats(void)
{
int32_t rc;
uint32_t lc, rd, wr;
struct try_rwlock_lcore rlc, wlc;
memset(&rlc, 0, sizeof(rlc));
memset(&wlc, 0, sizeof(wlc));
rlc.type = LC_TYPE_RDLOCK;
wlc.type = LC_TYPE_WRLOCK;
rd = 0;
wr = 0;
rc = 0;
RTE_LCORE_FOREACH(lc) {
rc |= try_lcore_data[lc].rc;
if (try_lcore_data[lc].type == LC_TYPE_RDLOCK) {
collect_try_lcore_stats(&rlc, try_lcore_data + lc);
rd++;
} else {
collect_try_lcore_stats(&wlc, try_lcore_data + lc);
wr++;
}
}
if (rc == 0) {
RTE_LCORE_FOREACH(lc)
print_try_lcore_stats(try_lcore_data + lc, lc);
if (rd != 0) {
printf("aggregated stats for %u RDLOCK cores:\n", rd);
print_try_lcore_stats(&rlc, rd);
}
if (wr != 0) {
printf("aggregated stats for %u WRLOCK cores:\n", wr);
print_try_lcore_stats(&wlc, wr);
}
}
return rc;
}
static void
try_test_reset(void)
{
memset(&try_lcore_data, 0, sizeof(try_lcore_data));
memset(&try_rwlock_data, 0, sizeof(try_rwlock_data));
try_rwlock_data.tick = TEST_SEC * rte_get_tsc_hz();
}
/* all lcores grab RDLOCK */
static int
try_rwlock_test_rda(void)
{
try_test_reset();
/* 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 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_MAIN);
try_write_lcore(NULL);
rte_eal_mp_wait_lcore();
return process_try_lcore_stats();
}
/* main and even worker lcores grab RDLOCK, odd lcores grab WRLOCK */
static int
try_rwlock_test_rde_wro(void)
{
uint32_t lc, mlc;
try_test_reset();
mlc = rte_get_main_lcore();
RTE_LCORE_FOREACH(lc) {
if (lc != mlc) {
if ((lc & 1) == 0)
rte_eal_remote_launch(try_read_lcore,
NULL, lc);
else
rte_eal_remote_launch(try_write_lcore,
NULL, lc);
}
}
try_read_lcore(NULL);
rte_eal_mp_wait_lcore();
return process_try_lcore_stats();
}
REGISTER_FAST_TEST(rwlock_test1_autotest, true, true, rwlock_test1);
REGISTER_FAST_TEST(rwlock_rda_autotest, true, true, try_rwlock_test_rda);
REGISTER_FAST_TEST(rwlock_rds_wrm_autotest, true, true, try_rwlock_test_rds_wrm);
REGISTER_FAST_TEST(rwlock_rde_wro_autotest, true, true, try_rwlock_test_rde_wro);
|