On Thu, 25. Jul 18:21, Barry Song wrote: > On Thu, Jul 25, 2024 at 3:53 PM <hailong.liu@xxxxxxxx> wrote: [snip] > > This is still incorrect because it undoes Michal's work. We also need to break > the loop if (!nofail), which you're currently omitting. IIUC, the origin issue is to fix kvcalloc with __GFP_NOFAIL return NULL. https://lore.kernel.org/all/ZAXynvdNqcI0f6Us@xxxxxxxxxxxxxx/T/#u if we disable huge flag in kmalloc_node, the issue will be fixed. > > To avoid reverting Michal's work, the simplest "fix" would be, > > diff --git a/mm/vmalloc.c b/mm/vmalloc.c > index caf032f0bd69..0011ca30df1c 100644 > --- a/mm/vmalloc.c > +++ b/mm/vmalloc.c > @@ -3775,7 +3775,7 @@ void *__vmalloc_node_range_noprof(unsigned long > size, unsigned long align, > return NULL; > } > > - if (vmap_allow_huge && (vm_flags & VM_ALLOW_HUGE_VMAP)) { > + if (vmap_allow_huge && (vm_flags & VM_ALLOW_HUGE_VMAP) & > !(gfp_mask & __GFP_NOFAIL)) { > unsigned long size_per_node; > > /* > > > > [1] https://lore.kernel.org/lkml/20240724182827.nlgdckimtg2gwns5@xxxxxxxx/ > > 2.34.1 > > Thanks > Barry -- help you, help me, Hailong.