The patch titled Subject: mm-mmu_notifier-use-structure-for-invalidate_range_start-end-calls-v2-checkpatch-fixes has been removed from the -mm tree. Its filename was mm-mmu_notifier-use-structure-for-invalidate_range_start-end-calls-v2-checkpatch-fixes.patch This patch was dropped because it was folded into mm-mmu_notifier-use-structure-for-invalidate_range_start-end-calls-v2.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: mm-mmu_notifier-use-structure-for-invalidate_range_start-end-calls-v2-checkpatch-fixes Cc: Christian König <christian.koenig@xxxxxxx> ERROR: code indent should use tabs where possible #116: FILE: include/linux/mm.h:1506: +^I^I ^I struct mmu_notifier_range *range,$ WARNING: please, no space before tabs #116: FILE: include/linux/mm.h:1506: +^I^I ^I struct mmu_notifier_range *range,$ WARNING: function definition argument 'struct mmu_notifier_range *' should also have an identifier name #131: FILE: include/linux/mmu_notifier.h:223: +extern int __mmu_notifier_invalidate_range_start(struct mmu_notifier_range *); ERROR: code indent should use tabs where possible #951: FILE: mm/memory.c:4111: +^I^I ^I struct mmu_notifier_range *range,$ WARNING: please, no space before tabs #951: FILE: mm/memory.c:4111: +^I^I ^I struct mmu_notifier_range *range,$ WARNING: line over 80 characters #1057: FILE: mm/mmu_notifier.c:183: + !range->blockable ? "non-" : ""); WARNING: line over 80 characters #1191: FILE: mm/oom_kill.c:537: + if (mmu_notifier_invalidate_range_start_nonblock(&range)) { WARNING: line over 80 characters #1199: FILE: mm/oom_kill.c:542: + unmap_page_range(&tlb, vma, range.start, range.end, NULL); total: 2 errors, 6 warnings, 1132 lines checked NOTE: For some of the reported defects, checkpatch may be able to mechanically convert to the typical style using --fix or --fix-inplace. NOTE: Whitespace errors detected. You may wish to use scripts/cleanpatch or scripts/cleanfile ./patches/mm-mmu_notifier-use-structure-for-invalidate_range_start-end-calls-v2.patch has style problems, please review. NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Christian König <christian.koenig@xxxxxxx> Cc: Dan Williams <dan.j.williams@xxxxxxxxx> Cc: Felix Kuehling <felix.kuehling@xxxxxxx> Cc: Jan Kara <jack@xxxxxxx> Cc: Jérôme Glisse <jglisse@xxxxxxxxxx> Cc: John Hubbard <jhubbard@xxxxxxxxxx> Cc: Matthew Wilcox <mawilcox@xxxxxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxxxx> Cc: Paolo Bonzini <pbonzini@xxxxxxxxxx> Cc: Radim Krcmar <rkrcmar@xxxxxxxxxx> Cc: Ralph Campbell <rcampbell@xxxxxxxxxx> Cc: Ross Zwisler <zwisler@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/mm.h | 4 ++-- include/linux/mmu_notifier.h | 2 +- mm/memory.c | 4 ++-- mm/mmu_notifier.c | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) --- a/include/linux/mm.h~mm-mmu_notifier-use-structure-for-invalidate_range_start-end-calls-v2-checkpatch-fixes +++ a/include/linux/mm.h @@ -1503,8 +1503,8 @@ void free_pgd_range(struct mmu_gather *t int copy_page_range(struct mm_struct *dst, struct mm_struct *src, struct vm_area_struct *vma); int follow_pte_pmd(struct mm_struct *mm, unsigned long address, - struct mmu_notifier_range *range, - pte_t **ptepp, pmd_t **pmdpp, spinlock_t **ptlp); + struct mmu_notifier_range *range, + pte_t **ptepp, pmd_t **pmdpp, spinlock_t **ptlp); int follow_pfn(struct vm_area_struct *vma, unsigned long address, unsigned long *pfn); int follow_phys(struct vm_area_struct *vma, unsigned long address, --- a/include/linux/mmu_notifier.h~mm-mmu_notifier-use-structure-for-invalidate_range_start-end-calls-v2-checkpatch-fixes +++ a/include/linux/mmu_notifier.h @@ -220,7 +220,7 @@ extern int __mmu_notifier_test_young(str unsigned long address); extern void __mmu_notifier_change_pte(struct mm_struct *mm, unsigned long address, pte_t pte); -extern int __mmu_notifier_invalidate_range_start(struct mmu_notifier_range *); +extern int __mmu_notifier_invalidate_range_start(struct mmu_notifier_range *r); extern void __mmu_notifier_invalidate_range_end(struct mmu_notifier_range *r, bool only_end); extern void __mmu_notifier_invalidate_range(struct mm_struct *mm, --- a/mm/memory.c~mm-mmu_notifier-use-structure-for-invalidate_range_start-end-calls-v2-checkpatch-fixes +++ a/mm/memory.c @@ -4119,8 +4119,8 @@ static inline int follow_pte(struct mm_s } int follow_pte_pmd(struct mm_struct *mm, unsigned long address, - struct mmu_notifier_range *range, - pte_t **ptepp, pmd_t **pmdpp, spinlock_t **ptlp) + struct mmu_notifier_range *range, + pte_t **ptepp, pmd_t **pmdpp, spinlock_t **ptlp) { int res; --- a/mm/mmu_notifier.c~mm-mmu_notifier-use-structure-for-invalidate_range_start-end-calls-v2-checkpatch-fixes +++ a/mm/mmu_notifier.c @@ -179,8 +179,8 @@ int __mmu_notifier_invalidate_range_star int _ret = mn->ops->invalidate_range_start(mn, range); if (_ret) { pr_info("%pS callback failed with %d in %sblockable context.\n", - mn->ops->invalidate_range_start, _ret, - !range->blockable ? "non-" : ""); + mn->ops->invalidate_range_start, _ret, + !range->blockable ? "non-" : ""); ret = _ret; } } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm-mmu_notifier-use-structure-for-invalidate_range_start-end-calls-v2.patch mm-memory_hotplug-deobfuscate-migration-part-of-offlining-fix.patch mm-page_alloc-enable-pcpu_drain-with-zone-capability-fix.patch mm-migrate-provide-buffer_migrate_page_norefs-fix.patch