On Wed, Aug 1, 2018 at 10:15 AM Linus Torvalds wrote: > > I'm still unhappy about the vma_init() ones, and I have not decided > how to go with those. Either the memset() in vma_init(), or just > reverting the (imho unnecessary) commit 2c4541e24c55. Kirill, Andrew, > comments? Ugh. Adding a memset looks simple, but screws up some places that have other initialization. It also requires adding a new include of , or we'd need to uninline vma_init() and put it somewhere else. But just reverting commit 2c4541e24c55 ("mm: use vma_init() to initialize VMAs on stack and data segments") entirely isn't good either, because some of the cases aren't about the TLB flush interface, and call down to "real" VM functions. The 'pseudo_vma' use of remove_inode_hugepages() and hugetlbfs_fallocate() in particular is odd, but using vma_init() looks good there. And those places had the memset() already. So I'm inclined to simply mark the TLB-related vma_init() cases special, and use something like this: #define TLB_FLUSH_VMA(mm,flags) { .vm_mm = (mm), .vm_flags = (flags) } to make it very obvious when we're doing that vma initialization for flush_tlb_range(). It's done as an initializer, exactly so that the only valid syntax is to do somethin glike this: struct vm_area_struct vma = TLB_FLUSH_VMA(mm, VM_EXEC); That leaves vma_init() users to be just the actual real allocation path, and a few very specific specual vmas (the hugetlbfs and mempolicy pseudo-vma, and a couple of "gate" vmas). Suggested patch attached. Comments? Linus