On Tue, May 19, 2026 at 05:14:45AM +0800, Barry Song wrote: > On Tue, May 19, 2026 at 3:57 AM Suren Baghdasaryan <[email protected]> wrote: > > > > On Mon, May 18, 2026 at 4:26 AM Barry Song <[email protected]> wrote: > > > > > > On Mon, May 18, 2026 at 5:47 PM Lorenzo Stoakes <[email protected]> wrote: > > > > > > > > On Sun, May 17, 2026 at 04:45:15PM +0800, Barry Song wrote: > [...] > > > > > > I think we either need to fix `fork()`, or keep the current > > > behavior of dropping the VMA lock before performing I/O. > > > > I see. So, this problem arises from the fact that we are changing the > > pagefaults requiring I/O operation to hold VMA lock... > > And you want to lock VMA on fork only if vma_is_anonymous(vma) || > > is_cow_mapping(vma->vm_flags). So, we will be blocking page faults for > > anonymous and COW VMAs only while holding mmap_write_lock, preventing > > any VMA modification. On the surface, that looks ok to me but I might > > be missing some corner cases. If nobody sees any obvious issues, I > > think it's worth a try. > > > > Thanks. Besides the creation of processes via fork(), I > am also beginning to worry about the death of processes. > > One thing that came to my mind this morning > is that when lowmemorykiller decides to kill an app, we
What's the lowmemorykiller? :P you mean the OOM killer? > want the memory to be released as quickly as possible so > the new app or user scenario can get memory sooner. > > In that case, if the app being killed is performing I/O > while holding the VMA lock, the unmapping procedure > could end up being blocked as well. > > If we release the VMA lock as we currently do, we allow > process exit to proceed. > > I haven't thought it through very clearly yet, and I > may be wrong. I'd like to do more investigation. I hope > the apps being killed stay very still, but who knows—we > have so many applications in the market. Yeah let's tread very carefully please, you're picking two of the most fraught areas of mm, I'm not going to want to see changes there unless they're substantially more convincingly argued. > > Meanwhile, if you have any comments regarding the death > of processes, they would be very welcome. As above, leave it alone please :) > > Best Regards > Barry Thanks, Lorenzo
