+void arch_check_zapped_pud(struct vm_area_struct *vma, pud_t pud)
+{
+ /* See note in arch_check_zapped_pte() */
+ VM_WARN_ON_ONCE(!(vma->vm_flags & VM_SHADOW_STACK) &&
+ pud_shstk(pud));
Please get rid of the line break. You have 100 characters.
Coding-style.rst still tells me 80 here:
The preferred limit on the length of a single line is 80 columns.
Statements longer than 80 columns should be broken into sensible chunks,
unless exceeding 80 columns significantly increases readability and does
not hide information.
Maybe this just changed very recently so even not in mm-unstable?
I'll fix the two line-wrap in this patch anyway, as I figured these two
cases even didn't hit 80.. probably because I used fill-column=75 locally..
But still I'll probably need to figure it out for other spots. Please help
me to justify.