You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Benchmark if its worth it to change the protections from PROT_READ | PROT_WRITE to only PROT_READ once all the data to a mmap(2) area have been written, in the Data file. If the page is marked PROT_READ the kernel might be able to optimise sending it into a socket for example. But I don't know if the kernel can/does take advantage of that, so benchmark first.
The text was updated successfully, but these errors were encountered:
Benchmark if its worth it to change the protections from
PROT_READ | PROT_WRITE
to onlyPROT_READ
once all the data to ammap(2)
area have been written, in theData
file. If the page is markedPROT_READ
the kernel might be able to optimise sending it into a socket for example. But I don't know if the kernel can/does take advantage of that, so benchmark first.The text was updated successfully, but these errors were encountered: