 
            tree: https://gitee.com/openeuler/kernel.git OLK-6.6 head: 7f38ece6b510adaa28c8e625ff574fe6357a3960 commit: 10f78461ef205a15e190d1474673dfa9add58723 [3064/3064] mm: page_alloc: consolidate free page accounting config: arm64-randconfig-r073-20251029 (https://download.01.org/0day-ci/archive/20251031/202510310815.0k5TUFKn-lkp@i...) compiler: aarch64-linux-gcc (GCC) 14.3.0 If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp@intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202510310815.0k5TUFKn-lkp@intel.com/ smatch warnings: mm/page_alloc.c:699 __del_page_from_free_list() warn: inconsistent indenting vim +699 mm/page_alloc.c 6ab0136310961e Alexander Duyck 2020-04-06 690 10f78461ef205a Johannes Weiner 2024-03-20 691 static inline void __del_page_from_free_list(struct page *page, struct zone *zone, 10f78461ef205a Johannes Weiner 2024-03-20 692 unsigned int order, int migratetype) 6ab0136310961e Alexander Duyck 2020-04-06 693 { 10f78461ef205a Johannes Weiner 2024-03-20 694 VM_WARN_ONCE(get_pageblock_migratetype(page) != migratetype, 10f78461ef205a Johannes Weiner 2024-03-20 695 "page type is %lu, passed migratetype is %d (nr=%d)\n", 10f78461ef205a Johannes Weiner 2024-03-20 696 get_pageblock_migratetype(page), migratetype, 1 << order); 10f78461ef205a Johannes Weiner 2024-03-20 697 36e66c554b5c6a Alexander Duyck 2020-04-06 698 /* clear reported state and update reported page count */ 36e66c554b5c6a Alexander Duyck 2020-04-06 @699 if (page_reported(page)) 36e66c554b5c6a Alexander Duyck 2020-04-06 700 __ClearPageReported(page); 36e66c554b5c6a Alexander Duyck 2020-04-06 701 bf75f200569dd0 Mel Gorman 2022-06-24 702 list_del(&page->buddy_list); 6ab0136310961e Alexander Duyck 2020-04-06 703 __ClearPageBuddy(page); 6ab0136310961e Alexander Duyck 2020-04-06 704 set_page_private(page, 0); 6ab0136310961e Alexander Duyck 2020-04-06 705 zone->free_area[order].nr_free--; 6ab0136310961e Alexander Duyck 2020-04-06 706 } 6ab0136310961e Alexander Duyck 2020-04-06 707 :::::: The code at line 699 was first introduced by commit :::::: 36e66c554b5c6a9d17a229faca7a61693527b0bd mm: introduce Reported pages :::::: TO: Alexander Duyck <alexander.h.duyck@linux.intel.com> :::::: CC: Linus Torvalds <torvalds@linux-foundation.org> -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki