Skip to content

Commit a025f27

Browse files
colesburytom-pytel
andauthored
gh-130920: Fix data race in STORE_SUBSCR_LIST_INT (#130923)
The write of the item to the list needs to use an atomic operation in the free threading build. Co-authored-by: Tomasz Pytel <[email protected]>
1 parent 6c6600f commit a025f27

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

Lib/test/test_free_threading/test_list.py

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import unittest
22

3-
from threading import Thread
3+
from threading import Thread, Barrier
44
from unittest import TestCase
55

66
from test.support import threading_helper
@@ -71,6 +71,20 @@ def reader_func():
7171
for reader in readers:
7272
reader.join()
7373

74+
def test_store_list_int(self):
75+
def copy_back_and_forth(b, l):
76+
b.wait()
77+
for _ in range(100):
78+
l[0] = l[1]
79+
l[1] = l[0]
80+
81+
l = [0, 1]
82+
barrier = Barrier(NTHREAD)
83+
threads = [Thread(target=copy_back_and_forth, args=(barrier, l))
84+
for _ in range(NTHREAD)]
85+
with threading_helper.start_threads(threads):
86+
pass
87+
7488

7589
if __name__ == "__main__":
7690
unittest.main()

Python/bytecodes.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -1015,7 +1015,8 @@ dummy_func(
10151015
STAT_INC(STORE_SUBSCR, hit);
10161016

10171017
PyObject *old_value = PyList_GET_ITEM(list, index);
1018-
PyList_SET_ITEM(list, index, PyStackRef_AsPyObjectSteal(value));
1018+
FT_ATOMIC_STORE_PTR_RELEASE(_PyList_ITEMS(list)[index],
1019+
PyStackRef_AsPyObjectSteal(value));
10191020
assert(old_value != NULL);
10201021
UNLOCK_OBJECT(list); // unlock before decrefs!
10211022
PyStackRef_CLOSE_SPECIALIZED(sub_st, _PyLong_ExactDealloc);

Python/executor_cases.c.h

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/generated_cases.c.h

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)