Open kadler opened 4 years ago
This looks to have been caused by SLIC not adding the O_LARGEFILE
flag in the 64-bit syscalls
>>> import os
>>> TESTFN = "{}_{}_tmp".format("@test", os.getpid())
>>> LARGE = 2**31
>>> with open(TESTFN, "w+b", 0) as f:
... assert f.readable()
... assert f.writable()
... ret = f.seek(LARGE)
... print(f"ret is: {ret} , type is: {type(ret)}")
... print(f"LARGE is: {LARGE}, type is: {type(LARGE)}")
...
Traceback (most recent call last):
File "<stdin>", line 4, in <module>
OSError: [Errno 127] Value too large to be stored in data type
Need to apply the following PTFS for fix:
R720 MF65149 PTF
R730 MF65148 PTF