Hi Fabio, I'm back from vacation! Overall this documentation looks good and in line with the reset in this section. On Fri, Jul 28, 2023 at 2:01 PM Fabio M. De Francesco <fmdefrancesco@xxxxxxxxx> wrote: > +One cause of page faults is due to bugs (or maliciously crafted addresses) and > +happens when a process tries to access a range of memory that it doesn't have > +permission to. This could be because the memory is reserved for the kernel or > +for another process, or because the process is trying to write to a read-only > +section of memory. When this happens, the kernel sends a Segmentation Fault > +(SIGSEGV) signal to the process, which usually causes the process to terminate. This "segmentation fault" (SIGSEGV reads "signal segmentation violation) is actually a bit hard to understand for people not familiar with the 1970ies hardware. The Wikipedia tries to explain it but gets a bit long and confusing. https://en.wikipedia.org/wiki/Segmentation_fault The computers where the first Unix was developed (PDP machines) simply named its MMU the "memory segmentation unit" so "segmentation fault" is just a 1970ies way of saying "MMU access violation", which stuck inside Unix and thus inside Linux. Here is the explanation: https://wfjm.github.io/blogs/w11/2022-08-18-on-segments-and-pages.html The binary loader would generously use the plentyful virtual memory "segments" to split each executable into three segments when loading the binary, still reflected in ELF binaries to this day: https://en.wikipedia.org/wiki/Code_segment https://en.wikipedia.org/wiki/Data_segment https://en.wikipedia.org/wiki/.bss Then the page table got special permissions set to each segment for read/write etc. Other programs and the kernel memory are also in inaccessible segments, so accessing any of the own segments in the wrong way, or another programs segment, or an unmapped segment (virtual memory) would all result in the SIGSEGV opaque message "segmentation fault" I don't know how to reflect this in a good way in the documentation though, maybe copy/paste/edit some of my text or I can try to write something as an additional patch if you prefer. Yours, Linus Walleij