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 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268
|
/*
* include/mt_list.h
*
* Multi-thread aware circular lists.
*
* Copyright (C) 2018-2023 Willy Tarreau
* Copyright (C) 2018-2023 Olivier Houchard
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef _MT_LIST_H
#define _MT_LIST_H
#include <inttypes.h>
#include <stddef.h>
#if defined(__TINYC__)
/* TCC has __atomic_exchange() for gcc's __atomic_exchange_n(). However it does
* not have any barrier, so we're forcing the order to the stricter SEQ_CST
* instead. There's no thread-local, thus we define __thread, which is only
* used for the PRNG used when sleeping, so we don't care. Anyway tcc with this
* code is mostly used to validate builds and run single-threaded tests.
*/
#include <stdatomic.h>
#define __atomic_exchange_n(val, new, order) __atomic_exchange(val, new, __ATOMIC_SEQ_CST)
#define __atomic_thread_fence(order) do { } while (0)
#define __thread
#endif
/* set NOINLINE to forcefully disable user functions inlining */
#if defined(NOINLINE)
#define MT_INLINE __attribute__((noinline))
#else
#define MT_INLINE inline
#endif
// Note: already defined in list-t.h
#ifndef _HAPROXY_LIST_T_H
/* A list element, it's both a head or any element. Both pointers always point
* to a valid list element (possibly itself for a detached element or an empty
* list head), or are equal to MT_LIST_BUSY for a locked pointer indicating
* that the target element is about to be modified.
*/
struct mt_list {
struct mt_list *next;
struct mt_list *prev;
};
#endif
/* This is the value of the locked list pointer. It is assigned to an mt_list's
* ->next or ->prev pointer to lock the link to the other element while this
* element is being inspected or modified.
*/
#define MT_LIST_BUSY ((struct mt_list *)1)
/* This is used to pre-initialize an mt_list element during its declaration.
* The argument is the name of the variable being declared and being assigned
* this value. Example:
*
* struct mt_list pool_head = MT_LIST_HEAD_INIT(pool_head);
*/
#define MT_LIST_HEAD_INIT(l) { .next = &l, .prev = &l }
/* Returns a pointer of type <t> to the structure containing a member of type
* mt_list called <m> that is accessible at address <a>. Note that <a> may be
* the result of a function or macro since it's used only once. Example:
*
* return MT_LIST_ELEM(cur_node->args.next, struct node *, args)
*/
#define MT_LIST_ELEM(a, t, m) ((t)(size_t)(((size_t)(a)) - ((size_t)&((t)NULL)->m)))
/* Returns a pointer of type <t> to a structure following the element which
* contains the list element at address <a>, which is known as member <m> in
* struct t*. Example:
*
* return MT_LIST_NEXT(args, struct node *, list);
*/
#define MT_LIST_NEXT(a, t, m) (MT_LIST_ELEM((a)->next, t, m))
/* Returns a pointer of type <t> to a structure preceding the element which
* contains the list element at address <a>, which is known as member <m> in
* struct t*. Example:
*
* return MT_LIST_PREV(args, struct node *, list);
*/
#define MT_LIST_PREV(a, t, m) (MT_LIST_ELEM((a)->prev, t, m))
/* This is used to prevent the compiler from knowing the origin of the
* variable, and sometimes avoid being confused about possible null-derefs
* that it sometimes believes are possible after pointer casts.
*/
#define MT_ALREADY_CHECKED(p) do { asm("" : "=rm"(p) : "0"(p)); } while (0)
/* Returns a pointer of type <t> to the structure containing a member of type
* mt_list called <m> that comes from the first element in list <l>, that is
* atomically detached. If the list is empty, NULL is returned instead.
* Example:
*
* while ((conn = MT_LIST_POP(queue, struct conn *, list))) ...
*/
#define MT_LIST_POP(lh, t, m) \
({ \
struct mt_list *_n = mt_list_pop(lh); \
(_n ? MT_LIST_ELEM(_n, t, m) : NULL); \
})
/* Returns a pointer of type <t> to the structure containing a member of type
* mt_list called <m> that comes from the first element in list <l>, that is
* atomically locked. If the list is empty, NULL is returned instead.
* Example:
*
* while ((conn = MT_LIST_POP_LOCKED(queue, struct conn *, list))) ...
*/
#define MT_LIST_POP_LOCKED(lh, t, m) \
({ \
struct mt_list *_n = mt_list_pop_locked(lh); \
(_n ? MT_LIST_ELEM(_n, t, m) : NULL); \
})
/* Iterates <item> through a list of items of type "typeof(*item)" which are
* linked via a "struct mt_list" member named <member>. A pointer to the head
* of the list is passed in <list_head>.
*
* <back> is a temporary struct mt_list, used internally to store the current
* element's ends while it is locked.
*
* This macro is implemented using two nested loops, each defined as a separate
* macro for easier inspection. The inner loop will run for each element in the
* list, and the outer loop will run only once to do some cleanup when the end
* of the list is reached or user breaks from inner loop. It's safe to break
* from this macro as the cleanup will be performed anyway, but it is strictly
* forbidden to branch (goto or return) from the loop because skipping the
* cleanup will lead to undefined behavior.
*
* The current element is detached from the list while being visited, with both
* links locked, and re-attached when switching to the next item. As such in
* order to delete the current item, it's sufficient to set it to NULL to
* prevent the inner loop from attaching it back. In this case it's recommended
* to re-init the item before reusing it in order to clear the locks, in case
* this element is being waited upon from a concurrent thread, or is intended
* to be reused later (e.g. stored into a pool).
*
* Example:
* MT_LIST_FOR_EACH_ENTRY_LOCKED(item, list_head, list_member, back) {
* ...
* }
*/
#define MT_LIST_FOR_EACH_ENTRY_LOCKED(item, list_head, member, back) \
_MT_LIST_FOR_EACH_ENTRY_LOCKED_OUTER(item, list_head, member, back) \
_MT_LIST_FOR_EACH_ENTRY_LOCKED_INNER(item, list_head, member, back)
/* The same as above, except that the item is returned unlocked. The caller
* thus never has to worry about unlocking it, however it must be certain that
* no other thread is trying to use the element in parallel. This is useful for
* constructs such as FIFOs or MPMC queues, where there is no possibility for
* an element to be removed via a direct access, as it saves the caller from
* having to care about the unlock operation when deleting it. The simpler
* usage has a small cost of two extra memory writes per iteration.
*/
#define MT_LIST_FOR_EACH_ENTRY_UNLOCKED(item, list_head, member, back) \
_MT_LIST_FOR_EACH_ENTRY_UNLOCKED_OUTER(item, list_head, member, back) \
_MT_LIST_FOR_EACH_ENTRY_UNLOCKED_INNER(item, list_head, member, back)
/* The macros below directly map to their function equivalent. They are
* provided for ease of use. Please refer to the equivalent functions
* for their description.
*/
#define MT_LIST_INIT(e) (mt_list_init(e))
#define MT_LIST_ISEMPTY(e) (mt_list_isempty(e))
#define MT_LIST_INLIST(e) (mt_list_inlist(e))
#define MT_LIST_TRY_INSERT(l, e) (mt_list_try_insert(l, e))
#define MT_LIST_TRY_APPEND(l, e) (mt_list_try_append(l, e))
#define MT_LIST_BEHEAD(l) (mt_list_behead(l))
#define MT_LIST_INSERT(l, e) (mt_list_insert(l, e))
#define MT_LIST_APPEND(l, e) (mt_list_append(l, e))
#define MT_LIST_DELETE(e) (mt_list_delete(e))
#define MT_LIST_LOCK_NEXT(el) (mt_list_lock_next(el))
#define MT_LIST_LOCK_PREV(el) (mt_list_lock_prev(el))
#define MT_LIST_LOCK_FULL(el) (mt_list_lock_full(el))
#define MT_LIST_UNLOCK_LINK(ends) (mt_list_unlock_link(ends))
#define MT_LIST_UNLOCK_FULL(el, ends) (mt_list_unlock_full(el, ends))
/* This is a Xorshift-based thread-local PRNG aimed at reducing the risk of
* resonance between competing threads during exponential back-off. Threads
* quickly become out of sync and use completely different values.
*/
static __thread unsigned int _prng_state = 0xEDCBA987;
static inline unsigned int mt_list_prng()
{
unsigned int x = _prng_state;
x ^= x << 13;
x ^= x >> 17;
x ^= x << 5;
return _prng_state = x;
}
static inline unsigned int mt_list_wait(unsigned factor)
{
//return ((uint64_t)factor * mt_list_prng() + factor) >> 32;
return mt_list_prng() & factor;
}
/* This function relaxes the CPU during contention. It is meant to be
* architecture-specific and may even be OS-specific, and always exists in a
* generic version. It should return a non-null integer value that can be used
* as a boolean in while() loops. The argument indicates the maximum number of
* loops to be performed before returning.
*/
static inline __attribute__((always_inline)) unsigned long mt_list_cpu_relax(unsigned long loop)
{
/* limit maximum wait time for unlucky threads */
loop = mt_list_wait(loop);
for (loop &= 0xfffff; loop >= 32; loop--) {
#if defined(__x86_64__)
/* This is a PAUSE instruction on x86_64 */
asm volatile("rep;nop\n");
#elif defined(__aarch64__)
/* This was shown to improve fairness on modern ARMv8
* such as Cortex A72 or Neoverse N1.
*/
asm volatile("isb");
#else
/* Generic implementation */
asm volatile("");
#endif
}
/* faster ending */
while (loop--)
asm volatile("");
return 1;
}
/* Initialize list element <el>. It will point to itself, matching a list head
* or a detached list element. The list element is returned.
*/
static inline struct mt_list *mt_list_init(struct mt_list *el)
{
__atomic_store_n(&el->next, el, __ATOMIC_RELAXED);
__atomic_store_n(&el->prev, el, __ATOMIC_RELAXED);
return el;
}
/* Returns true if the list element <e> corresponds to an empty list head or a
* detached element, false otherwise. Only the <next> member is checked.
*/
static inline long mt_list_isempty(const struct mt_list *el)
{
return el->next == el;
}
/* Returns true if the list element <e> corresponds to a non-empty list head or
* to an element that is part of a list, false otherwise. Only the <next> member
* is checked.
*/
static inline long mt_list_inlist(const struct mt_list *el)
{
return el->next != el;
}
/* Adds element <el> at the beginning of list <lh>, which means that element
* <el> is added immediately after element <lh> (nothing strictly requires that
* <lh> is effectively the list's head, any valid element will work). Returns
* non-zero if the element was added, otherwise zero (because the element was
* already part of a list).
*/
static MT_INLINE long mt_list_try_insert(struct mt_list *lh, struct mt_list *el)
{
struct mt_list *n, *n2;
struct mt_list *p, *p2;
unsigned long loops = 0;
long ret = 0;
/* Note that the first element checked is the most likely to face
* contention, particularly on the list's head/tail. That's why we
* perform a prior load there: if the element is being modified by
* another thread, requesting a read-only access only leaves the
* other thread's cache line in shared mode, which will impact it
* less than if we attempted a change that would invalidate it.
*/
for (;; mt_list_cpu_relax(loops = loops * 8 + 7)) {
n = __atomic_exchange_n(&lh->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (n == MT_LIST_BUSY)
continue;
p = __atomic_exchange_n(&n->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (p == MT_LIST_BUSY) {
lh->next = n;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
n2 = __atomic_exchange_n(&el->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (n2 != el) {
/* This element was already attached elsewhere */
if (n2 != MT_LIST_BUSY)
el->next = n2;
n->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
lh->next = n;
__atomic_thread_fence(__ATOMIC_RELEASE);
if (n2 == MT_LIST_BUSY)
continue;
break;
}
p2 = __atomic_exchange_n(&el->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (p2 != el) {
/* This element was already attached elsewhere */
if (p2 != MT_LIST_BUSY)
el->prev = p2;
n->prev = p;
el->next = el;
__atomic_thread_fence(__ATOMIC_RELEASE);
lh->next = n;
__atomic_thread_fence(__ATOMIC_RELEASE);
if (p2 == MT_LIST_BUSY)
continue;
break;
}
el->next = n;
el->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
n->prev = el;
__atomic_thread_fence(__ATOMIC_RELEASE);
p->next = el;
__atomic_thread_fence(__ATOMIC_RELEASE);
ret = 1;
break;
}
return ret;
}
/* Adds element <el> at the end of list <lh>, which means that element <el> is
* added immediately before element <lh> (nothing strictly requires that <lh>
* is effectively the list's head, any valid element will work). Returns non-
* zero if the element was added, otherwise zero (because the element was
* already part of a list).
*/
static MT_INLINE long mt_list_try_append(struct mt_list *lh, struct mt_list *el)
{
struct mt_list *n, *n2;
struct mt_list *p, *p2;
unsigned long loops = 0;
long ret = 0;
/* Note that the first element checked is the most likely to face
* contention, particularly on the list's head/tail. That's why we
* perform a prior load there: if the element is being modified by
* another thread, requesting a read-only access only leaves the
* other thread's cache line in shared mode, which will impact it
* less than if we attempted a change that would invalidate it.
*/
for (;; mt_list_cpu_relax(loops = loops * 8 + 7)) {
p = __atomic_exchange_n(&lh->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (p == MT_LIST_BUSY)
continue;
n = __atomic_exchange_n(&p->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (n == MT_LIST_BUSY) {
lh->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
p2 = __atomic_exchange_n(&el->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (p2 != el) {
/* This element was already attached elsewhere */
if (p2 != MT_LIST_BUSY)
el->prev = p2;
p->next = n;
__atomic_thread_fence(__ATOMIC_RELEASE);
lh->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
if (p2 == MT_LIST_BUSY)
continue;
break;
}
n2 = __atomic_exchange_n(&el->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (n2 != el) {
/* This element was already attached elsewhere */
if (n2 != MT_LIST_BUSY)
el->next = n2;
p->next = n;
el->prev = el;
__atomic_thread_fence(__ATOMIC_RELEASE);
lh->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
if (n2 == MT_LIST_BUSY)
continue;
break;
}
el->next = n;
el->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
p->next = el;
__atomic_thread_fence(__ATOMIC_RELEASE);
n->prev = el;
__atomic_thread_fence(__ATOMIC_RELEASE);
ret = 1;
break;
}
return ret;
}
/* Detaches a list from its head. A pointer to the first element is returned
* and the list is closed. If the list was empty, NULL is returned. This may
* exclusively be used with lists manipulated using mt_list_try_insert() and
* mt_list_try_append(). This is incompatible with mt_list_delete() run
* concurrently. If there's at least one element, the next of the last element
* will always be NULL.
*/
static MT_INLINE struct mt_list *mt_list_behead(struct mt_list *lh)
{
struct mt_list *n;
struct mt_list *p;
unsigned long loops = 0;
for (;; mt_list_cpu_relax(loops = loops * 8 + 7)) {
p = __atomic_exchange_n(&lh->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (p == MT_LIST_BUSY)
continue;
if (p == lh) {
lh->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
n = NULL;
break;
}
n = __atomic_exchange_n(&lh->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (n == MT_LIST_BUSY) {
lh->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
if (n == lh) {
lh->next = n;
lh->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
n = NULL;
break;
}
__atomic_store_n(&lh->next, lh, __ATOMIC_RELAXED);
__atomic_store_n(&lh->prev, lh, __ATOMIC_RELAXED);
__atomic_thread_fence(__ATOMIC_RELEASE);
n->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
p->next = NULL;
__atomic_thread_fence(__ATOMIC_RELEASE);
break;
}
return n;
}
/* Adds element <el> at the beginning of list <lh>, which means that element
* <el> is added immediately after element <lh> (nothing strictly requires that
* <lh> is effectively the list's head, any valid element will work). It is
* assumed that the element cannot already be part of a list so it isn't
* checked for this.
*/
static MT_INLINE void mt_list_insert(struct mt_list *lh, struct mt_list *el)
{
struct mt_list *n;
struct mt_list *p;
unsigned long loops = 0;
for (;; mt_list_cpu_relax(loops = loops * 8 + 7)) {
n = __atomic_exchange_n(&lh->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (n == MT_LIST_BUSY)
continue;
p = __atomic_exchange_n(&n->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (p == MT_LIST_BUSY) {
lh->next = n;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
el->next = n;
el->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
n->prev = el;
__atomic_thread_fence(__ATOMIC_RELEASE);
p->next = el;
__atomic_thread_fence(__ATOMIC_RELEASE);
break;
}
}
/* Adds element <el> at the end of list <lh>, which means that element <el> is
* added immediately after element <lh> (nothing strictly requires that <lh> is
* effectively the list's head, any valid element will work). It is assumed
* that the element cannot already be part of a list so it isn't checked for
* this.
*/
static MT_INLINE void mt_list_append(struct mt_list *lh, struct mt_list *el)
{
struct mt_list *n;
struct mt_list *p;
unsigned long loops = 0;
for (;; mt_list_cpu_relax(loops = loops * 8 + 7)) {
p = __atomic_exchange_n(&lh->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (p == MT_LIST_BUSY)
continue;
n = __atomic_exchange_n(&p->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (n == MT_LIST_BUSY) {
lh->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
el->next = n;
el->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
p->next = el;
__atomic_thread_fence(__ATOMIC_RELEASE);
n->prev = el;
__atomic_thread_fence(__ATOMIC_RELEASE);
break;
}
}
/* Removes element <el> from the list it belongs to. The function returns
* non-zero if the element could be removed, otherwise zero if the element
* could not be removed, because it was already not in a list anymore. This is
* functionally equivalent to the following except that it also returns a
* success status:
* link = mt_list_lock_full(el);
* mt_list_unlock_link(link);
* mt_list_unlock_self(link);
*/
static MT_INLINE long mt_list_delete(struct mt_list *el)
{
struct mt_list *n, *n2;
struct mt_list *p, *p2;
unsigned long loops = 0;
long ret = 0;
for (;; mt_list_cpu_relax(loops = loops * 8 + 7)) {
p2 = NULL;
n = __atomic_exchange_n(&el->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (n == MT_LIST_BUSY)
continue;
p = __atomic_exchange_n(&el->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (p == MT_LIST_BUSY) {
el->next = n;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
if (p != el) {
p2 = __atomic_exchange_n(&p->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (p2 == MT_LIST_BUSY) {
el->prev = p;
el->next = n;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
}
if (n != el) {
n2 = __atomic_exchange_n(&n->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (n2 == MT_LIST_BUSY) {
if (p2 != NULL)
p->next = p2;
el->prev = p;
el->next = n;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
}
n->prev = p;
p->next = n;
__atomic_thread_fence(__ATOMIC_RELEASE);
/*
* If the element was not in the list, then n and p
* pointed to it already, and it is unlocked.
* If this is the case, we don't want to do it again,
* because at this point it has been unlocked and
* somebody may be using it already.
*/
if (el != n) {
__atomic_store_n(&el->prev, el, __ATOMIC_RELAXED);
__atomic_store_n(&el->next, el, __ATOMIC_RELAXED);
__atomic_thread_fence(__ATOMIC_RELEASE);
}
if (p != el && n != el)
ret = 1;
break;
}
return ret;
}
/* Removes the first element from the list <lh>, and returns it in locked
* form. If the list is already empty, NULL is returned instead.
*/
static MT_INLINE struct mt_list *mt_list_pop_locked(struct mt_list *lh)
{
struct mt_list *n, *n2;
struct mt_list *p, *p2;
unsigned long loops = 0;
for (;; mt_list_cpu_relax(loops = loops * 8 + 7)) {
n = __atomic_exchange_n(&lh->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (n == MT_LIST_BUSY)
continue;
if (n == lh) {
/* list is empty */
lh->next = lh;
__atomic_thread_fence(__ATOMIC_RELEASE);
n = NULL;
break;
}
p = __atomic_exchange_n(&n->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (p == MT_LIST_BUSY) {
lh->next = n;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
n2 = __atomic_exchange_n(&n->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (n2 == MT_LIST_BUSY) {
n->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
lh->next = n;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
p2 = __atomic_exchange_n(&n2->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (p2 == MT_LIST_BUSY) {
n->next = n2;
n->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
lh->next = n;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
lh->next = n2;
n2->prev = lh;
__atomic_thread_fence(__ATOMIC_RELEASE);
/* return n */
break;
}
return n;
}
/* Removes the first element from the list <lh>, and returns it in detached
* form. If the list is already empty, NULL is returned instead.
*/
static MT_INLINE struct mt_list *mt_list_pop(struct mt_list *lh)
{
struct mt_list *ret = mt_list_pop_locked(lh);
if (ret) {
ret->prev = ret->next = ret;
__atomic_thread_fence(__ATOMIC_RELEASE);
}
return ret;
}
/* Opens the list just after <lh> which usually is the list's head, but not
* necessarily. The link between <lh> and its next element is cut and replaced
* with an MT_LIST_BUSY lock. The ends of the removed link are returned as an
* mt_list entry. The operation can be cancelled using mt_list_unlock_link()
* on the returned value, which will restore the link and unlock the list, or
* using mt_list_unlock_full() which will replace the link with another
* element and also unlock the list, effectively resulting in inserting that
* element after <lh>. Example:
*
* struct mt_list *list_insert(struct mt_list *list)
* {
* struct mt_list tmp = mt_list_lock_next(list);
* struct mt_list *el = alloc_element_to_insert();
* if (el)
* mt_list_unlock_full(el, tmp);
* else
* mt_list_unlock_link(tmp);
* return el;
* }
*/
static MT_INLINE struct mt_list mt_list_lock_next(struct mt_list *lh)
{
struct mt_list el;
unsigned long loops = 0;
for (;; mt_list_cpu_relax(loops = loops * 8 + 7)) {
el.next = __atomic_exchange_n(&lh->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (el.next == MT_LIST_BUSY)
continue;
el.prev = __atomic_exchange_n(&el.next->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (el.prev == MT_LIST_BUSY) {
lh->next = el.next;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
break;
}
return el;
}
/* Opens the list just before <lh> which usually is the list's head, but not
* necessarily. The link between <lh> and its prev element is cut and replaced
* with an MT_LIST_BUSY lock. The ends of the removed link are returned as an
* mt_list entry. The operation can be cancelled using mt_list_unlock_link()
* on the returned value, which will restore the link and unlock the list, or
* using mt_list_unlock_full() which will replace the link with another
* element and also unlock the list, effectively resulting in inserting that
* element before <lh>. Example:
*
* struct mt_list *list_append(struct mt_list *list)
* {
* struct mt_list tmp = mt_list_lock_prev(list);
* struct mt_list *el = alloc_element_to_insert();
* if (el)
* mt_list_unlock_full(el, tmp);
* else
* mt_list_unlock_link(tmp);
* return el;
* }
*/
static MT_INLINE struct mt_list mt_list_lock_prev(struct mt_list *lh)
{
struct mt_list el;
unsigned long loops = 0;
for (;; mt_list_cpu_relax(loops = loops * 8 + 7)) {
el.prev = __atomic_exchange_n(&lh->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (el.prev == MT_LIST_BUSY)
continue;
el.next = __atomic_exchange_n(&el.prev->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (el.next == MT_LIST_BUSY) {
lh->prev = el.prev;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
break;
}
return el;
}
/*
* Same as mt_list_lock_prev(), except it doesn't wait if the prev
* is locked already, and just returns { NULL, NULL }
*/
static MT_INLINE struct mt_list mt_list_try_lock_prev(struct mt_list *lh)
{
struct mt_list el;
struct mt_list missed = { NULL, NULL };
el.prev = __atomic_exchange_n(&lh->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (el.prev == MT_LIST_BUSY)
return missed;
el.next = __atomic_exchange_n(&el.prev->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (el.next == MT_LIST_BUSY) {
lh->prev = el.prev;
__atomic_thread_fence(__ATOMIC_RELEASE);
return missed;
}
return el;
}
/* Element <el> is locked on both sides, but the list around it isn't touched.
* A copy of the previous element is returned, and may be used to pass to
* mt_list_unlock_elem() to unlock and reconnect the element.
*/
static MT_INLINE struct mt_list mt_list_lock_elem(struct mt_list *el)
{
unsigned long loops = 0;
struct mt_list ret;
for (;; mt_list_cpu_relax(loops = loops * 8 + 7)) {
ret.next = __atomic_exchange_n(&el->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (ret.next == MT_LIST_BUSY)
continue;
ret.prev = __atomic_exchange_n(&el->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (ret.prev == MT_LIST_BUSY) {
el->next = ret.next;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
break;
}
return ret;
}
/* Restores element <el> to its previous copy <back>, effectively unlocking it.
* This is to be used with the returned element from mt_list_lock_elem().
*/
static inline void mt_list_unlock_elem(struct mt_list *el, struct mt_list back)
{
*el = back;
__atomic_thread_fence(__ATOMIC_RELEASE);
}
/* Atomically resets element <el> by connecting it onto itself ignoring
* previous contents. This is used to unlock a locked element inside iterators
* so that the inner block sees an unlocked iterator.
*/
static inline void mt_list_unlock_self(struct mt_list *el)
{
el->next = el;
el->prev = el;
__atomic_thread_fence(__ATOMIC_RELEASE);
}
/* Opens the list around element <el>. Both the links between <el> and its prev
* element and between <el> and its next element are cut and replaced with an
* MT_LIST_BUSY lock. The element itself also has its ends replaced with a
* lock, and the ends of the element are returned as an mt_list entry. This
* results in the element being detached from the list and both the element and
* the list being locked. The operation can be terminated by calling
* mt_list_unlock_link() on the returned value, which will unlock the list and
* effectively result in the removal of the element from the list, or by
* calling mt_list_unlock_full() to reinstall the element at its place in the
* list, effectively consisting in a temporary lock of this element. Example:
*
* struct mt_list *grow_shrink_remove(struct mt_list *el, size_t new_size)
* {
* struct mt_list tmp = mt_list_lock_full(&node->list);
* struct mt_list *new = new_size ? realloc(el, new_size) : NULL;
* if (new_size) {
* mt_list_unlock_full(new ? new : el, tmp);
* } else {
* free(el);
* mt_list_unlock_link(tmp);
* }
* return new;
* }
*/
static MT_INLINE struct mt_list mt_list_lock_full(struct mt_list *el)
{
struct mt_list *n2;
struct mt_list *p2;
struct mt_list ret;
unsigned long loops = 0;
for (;; mt_list_cpu_relax(loops = loops * 8 + 7)) {
p2 = NULL;
ret.next = __atomic_exchange_n(&el->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (ret.next == MT_LIST_BUSY)
continue;
ret.prev = __atomic_exchange_n(&el->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (ret.prev == MT_LIST_BUSY) {
el->next = ret.next;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
if (ret.prev != el) {
p2 = __atomic_exchange_n(&ret.prev->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (p2 == MT_LIST_BUSY) {
*el = ret;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
}
if (ret.next != el) {
n2 = __atomic_exchange_n(&ret.next->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (n2 == MT_LIST_BUSY) {
if (p2 != NULL)
ret.prev->next = p2;
*el = ret;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
}
break;
}
return ret;
}
/* Connects two ends in a list together, effectively unlocking the list if it
* was locked. It takes a list head which contains a pointer to the prev and
* next elements to connect together. It normally is a copy of a previous link
* returned by functions such as mt_list_lock_next(), mt_list_lock_prev(), or
* mt_list_lock_full(). If applied after mt_list_lock_full(), it will result
* in the list being reconnected without the element, which remains locked,
* effectively deleting it. Note that this is not meant to be used from within
* iterators, as the iterator will automatically and safely reconnect ends
* after each iteration. See examples above.
*/
static inline void mt_list_unlock_link(struct mt_list ends)
{
/* make sure any previous writes to <ends> are seen */
__atomic_thread_fence(__ATOMIC_RELEASE);
ends.next->prev = ends.prev;
ends.prev->next = ends.next;
}
/* Connects element <el> at both ends <ends> of a list which is still locked
* hence has the link between these endpoints cut. This automatically unlocks
* both the element and the list, and effectively results in inserting or
* appending the element to that list if the ends were just after or just
* before the list's head. It is mainly used to unlock an element previously
* locked with mt_list_lock_full() by passing this function's return value as
* <ends>. After the operation, no locked pointer remains. This must not be
* used inside iterators as it would result in also unlocking the list itself.
* The element doesn't need to be previously initialized as it gets blindly
* overwritten with <ends>. See examples above.
*/
static inline void mt_list_unlock_full(struct mt_list *el, struct mt_list ends)
{
*el = ends;
__atomic_thread_fence(__ATOMIC_RELEASE);
if (__builtin_expect(ends.next != el, 1))
ends.next->prev = el;
if (__builtin_expect(ends.prev != el, 1))
ends.prev->next = el;
}
/*****************************************************************************
* The macros and functions below are only used by the iterators. These must *
* not be used for other purposes unless the caller 100% complies with their *
* specific validity domain! *
*****************************************************************************/
/* Unlocks element <el> from the backup copy of previous next pointer <back>.
* It supports the special case where the list was empty and the element locked
* while looping over itself (we don't need/want to overwrite ->prev in this
* case).
*/
static inline void _mt_list_unlock_next(struct mt_list *el, struct mt_list *back)
{
el->next = back;
__atomic_thread_fence(__ATOMIC_RELEASE);
if (back != el)
back->prev = el;
}
/* Unlocks element <el> from the backup copy of previous prev pointer <back>.
* It's the caller's responsibility to make sure that <back> is not equal to
* <el> here (this is OK in iterators because if the list is empty, the list's
* head is not locked for prev and the caller has NULL in back.prev, thus does
* not call this function).
*/
static inline void _mt_list_unlock_prev(struct mt_list *el, struct mt_list *back)
{
el->prev = back;
__atomic_thread_fence(__ATOMIC_RELEASE);
back->next = el;
}
/* Locks the link designated by element <el>'s next pointer and returns its
* previous value. If the element does not loop over itself (empty list head),
* its reciprocal prev pointer is locked as well. This check is necessary
* because we don't want to lock the head twice.
*/
static MT_INLINE struct mt_list *_mt_list_lock_next(struct mt_list *el)
{
struct mt_list *n, *n2;
unsigned long loops = 0;
for (;; mt_list_cpu_relax(loops = loops * 8 + 7)) {
n = __atomic_exchange_n(&el->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (n == MT_LIST_BUSY)
continue;
if (n != el) {
n2 = __atomic_exchange_n(&n->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (n2 == MT_LIST_BUSY) {
el->next = n;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
}
break;
}
return n;
}
/* Locks the link designated by element <el>'s prev pointer and returns its
* previous value. The caller must ensure that the element does not loop over
* itself (which is OK in iterators because the caller will only lock the prev
* pointer on an non-empty list).
*/
static MT_INLINE struct mt_list *_mt_list_lock_prev(struct mt_list *el)
{
struct mt_list *p, *p2;
unsigned long loops = 0;
for (;; mt_list_cpu_relax(loops = loops * 8 + 7)) {
p = __atomic_exchange_n(&el->prev, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (p == MT_LIST_BUSY)
continue;
p2 = __atomic_exchange_n(&p->next, MT_LIST_BUSY, __ATOMIC_RELAXED);
if (p2 == MT_LIST_BUSY) {
el->prev = p;
__atomic_thread_fence(__ATOMIC_RELEASE);
continue;
}
break;
}
return p;
}
/* Outer loop of MT_LIST_FOR_EACH_ENTRY_LOCKED(). Do not use directly!
* This loop is only used to unlock the last item after the end of the inner
* loop is reached or if we break out of it.
*
* Trick: item starts with the impossible and unused value MT_LIST_BUSY that is
* detected as the looping condition to force to enter the loop. The inner loop
* will first replace it, making the compiler notice that this condition cannot
* happen after the first iteration, and making it implement exactly one round
* and no more.
*/
#define _MT_LIST_FOR_EACH_ENTRY_LOCKED_OUTER(item, lh, lm, back) \
for (/* init-expr: preset for one iteration */ \
(back).prev = NULL, \
(back).next = _mt_list_lock_next(lh), \
(item) = (void*)MT_LIST_BUSY; \
/* condition-expr: only one iteration */ \
(void*)(item) == (void*)MT_LIST_BUSY; \
/* loop-expr */ \
({ \
/* post loop cleanup: \
* gets executed only once to perform cleanup \
* after child loop has finished, or a break happened \
*/ \
if (item != NULL) { \
/* last visited item still exists or is the list's head \
* so we have to unlock it. back.prev may be null if \
* the list is empty and the inner loop did not run. \
*/ \
if (back.prev) \
_mt_list_unlock_prev(&item->lm, back.prev); \
_mt_list_unlock_next(&item->lm, back.next); \
} else { \
/* last item was deleted by user, relink is required: \
* prev->next = next \
* next->prev = prev \
* Note that gcc may believe that back.prev may be null \
* which is not possible by construction. \
*/ \
MT_ALREADY_CHECKED(back.prev); \
mt_list_unlock_link(back); \
} \
}) \
)
/* Inner loop of MT_LIST_FOR_EACH_ENTRY_LOCKED(). Do not use directly!
* This loop iterates over all list elements and unlocks the previously visited
* element. It stops when reaching the list's head, without unlocking the last
* element, which is left to the outer loop to deal with, just like when hitting
* a break. In order to preserve the locking, the loop takes care of always
* locking the next element before unlocking the previous one. During the first
* iteration, the prev element might be NULL since the head is singly-locked.
* Inside the execution block, the element is fully locked. The caller does not
* need to unlock it, unless other parts of the code expect it to be unlocked
* (concurrent watcher or element placed back into a pool for example).
*/
#define _MT_LIST_FOR_EACH_ENTRY_LOCKED_INNER(item, lh, lm, back) \
for (/* init-expr */ \
item = MT_LIST_ELEM(lh, typeof(item), lm); \
/* cond-expr (thus executed before the body of the loop) */ \
(back.next != lh) && ({ \
struct mt_list *__tmp_next = back.next; \
/* did not reach end of list yet */ \
back.next = _mt_list_lock_next(back.next); \
if (item != NULL) { \
/* previous item was not deleted, we must unlock it */ \
if (back.prev) { \
/* not executed on first run \
* (back.prev == NULL on first run) \
*/ \
_mt_list_unlock_prev(&item->lm, back.prev); \
/* unlock_prev will implicitly relink: \
* item->lm.prev = prev \
* prev->next = &item->lm \
*/ \
} \
back.prev = &item->lm; \
} \
(item) = MT_LIST_ELEM(__tmp_next, typeof(item), lm); \
1; /* end of list not reached, we must execute */ \
}); \
/* empty loop-expr */ \
)
/* Outer loop of MT_LIST_FOR_EACH_ENTRY_UNLOCKED(). Do not use directly!
* This loop is only used to unlock the last item after the end of the inner
* loop is reached or if we break out of it.
*
* Trick: item starts with the impossible and unused value MT_LIST_BUSY that is
* detected as the looping condition to force to enter the loop. The inner loop
* will first replace it, making the compiler notice that this condition cannot
* happen after the first iteration, and making it implement exactly one round
* and no more.
*/
#define _MT_LIST_FOR_EACH_ENTRY_UNLOCKED_OUTER(item, lh, lm, back) \
for (/* init-expr: preset for one iteration */ \
(back).prev = NULL, \
(back).next = _mt_list_lock_next(lh), \
(item) = (void*)MT_LIST_BUSY; \
/* condition-expr: only one iteration */ \
(void*)(item) == (void*)MT_LIST_BUSY; \
/* loop-expr */ \
({ \
/* post loop cleanup: \
* gets executed only once to perform cleanup \
* after child loop has finished, or a break happened \
*/ \
if (item != NULL) { \
/* last visited item still exists or is the list's head \
* so we have to unlock it. back.prev may be null if \
* the list is empty and the inner loop did not run. \
*/ \
if (back.prev) { \
item->lm.next = (void*)MT_LIST_BUSY; \
__atomic_thread_fence(__ATOMIC_RELEASE); \
_mt_list_unlock_prev(&item->lm, back.prev); \
} \
_mt_list_unlock_next(&item->lm, back.next); \
} else { \
/* last item was deleted by user, relink is required: \
* prev->next = next \
* next->prev = prev \
* Note that gcc may believe that back.prev may be null \
* which is not possible by construction. \
*/ \
MT_ALREADY_CHECKED(back.prev); \
mt_list_unlock_link(back); \
} \
}) \
)
/* Inner loop of MT_LIST_FOR_EACH_ENTRY_UNLOCKED(). Do not use directly!
* This loop iterates over all list elements and unlocks the previously visited
* element. It stops when reaching the list's head, without unlocking the last
* element, which is left to the outer loop to deal with, just like when hitting
* a break. In order to preserve the locking, the loop takes care of always
* locking the next element before unlocking the previous one. During the first
* iteration, the prev element might be NULL since the head is singly-locked.
* Inside the execution block, the element is unlocked (but its neighbors are
* still locked). The caller never needs to unlock it. However this must not be
* used in situations where direct access to the element is possible (without
* passing via the iterator).
*/
#define _MT_LIST_FOR_EACH_ENTRY_UNLOCKED_INNER(item, lh, lm, back) \
for (/* init-expr */ \
item = MT_LIST_ELEM(lh, typeof(item), lm); \
/* cond-expr (thus executed before the body of the loop) */ \
(back.next != lh) && ({ \
struct mt_list *__tmp_next = back.next; \
/* did not reach end of list yet */ \
back.next = _mt_list_lock_next(back.next); \
if (item != NULL) { \
/* previous item was not deleted, we must unlock it */ \
if (back.prev) { \
/* not executed on first run \
* (back.prev == NULL on first run) \
*/ \
item->lm.next = (void*)MT_LIST_BUSY; \
__atomic_thread_fence(__ATOMIC_RELEASE); \
_mt_list_unlock_prev(&item->lm, back.prev); \
/* unlock_prev will implicitly relink: \
* item->lm.prev = prev \
* prev->next = &item->lm \
*/ \
} \
back.prev = &item->lm; \
} \
mt_list_unlock_self(__tmp_next); \
(item) = MT_LIST_ELEM(__tmp_next, typeof(item), lm); \
1; /* end of list not reached, we must execute */ \
}); \
/* empty loop-expr */ \
)
#endif /* _MT_LIST_H */
|