On 4/22/21 3:26 PM, Borislav Petkov wrote: > On Thu, Apr 22, 2021 at 01:38:01PM +0300, Vasily Averin wrote: > > You have forgotten to Cc LKML on your submission. I think it's OK, patch set is addressed to cgroups subsystem amiling list. Am I missed something and such patches should be sent to LKML anyway? >> @@ -168,9 +168,10 @@ static struct ldt_struct *alloc_ldt_struct(unsigned int num_entries) >> * than PAGE_SIZE. >> */ >> if (alloc_size > PAGE_SIZE) >> - new_ldt->entries = vzalloc(alloc_size); >> + new_ldt->entries = __vmalloc(alloc_size, >> + GFP_KERNEL_ACCOUNT | __GFP_ZERO); > > You don't have to break that line - just let it stick out. Hmm. I missed that allowed line limit was increased up to 100 bytes, Thank you, I will fix it in next patch version.