From: kernel test robot <lkp@intel.com>
To: oe-kbuild@lists.linux.dev
Cc: lkp@intel.com
Subject: drivers/gpu/drm/drm_pagemap.c:480:12: error: call to '__compiletime_assert_458' declared with 'error' attribute: BUILD_BUG failed
Date: Mon, 20 Jul 2026 19:36:48 +0800 [thread overview]
Message-ID: <202607201914.LpAGsbXs-lkp@intel.com> (raw)
::::::
:::::: Manual check reason: "__compiletime_assert_NNN"
::::::
BCC: lkp@intel.com
CC: oe-kbuild-all@lists.linux.dev
CC: linux-kernel@vger.kernel.org
TO: Matthew Brost <matthew.brost@intel.com>
CC: Francois Dugast <francois.dugast@intel.com>
CC: Balbir Singh <balbirs@nvidia.com>
Hi Matthew,
FYI, the error/warning still remains.
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 1590cf0329716306e948a8fc29f1d3ee87d3989f
commit: 139ab31aea8a9436460568d556b432bb7e9311f7 drm/pagemap: Correct cpages calculation for migrate_vma_setup
date: 4 months ago
:::::: branch date: 15 hours ago
:::::: commit date: 4 months ago
config: s390-randconfig-r062-20260720 (https://download.01.org/0day-ci/archive/20260720/202607201914.LpAGsbXs-lkp@intel.com/config)
compiler: clang version 20.1.8 (https://github.com/llvm/llvm-project 87f0227cb60147a26a1eeb4fb06e3b505e9c7261)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260720/202607201914.LpAGsbXs-lkp@intel.com/reproduce)
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
| Fixes: 139ab31aea8a ("drm/pagemap: Correct cpages calculation for migrate_vma_setup")
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/r/202607201914.LpAGsbXs-lkp@intel.com/
All errors (new ones prefixed by >>):
>> drivers/gpu/drm/drm_pagemap.c:480:12: error: call to '__compiletime_assert_458' declared with 'error' attribute: BUILD_BUG failed
480 | order = HPAGE_PMD_ORDER;
| ^
include/linux/huge_mm.h:117:26: note: expanded from macro 'HPAGE_PMD_ORDER'
117 | #define HPAGE_PMD_ORDER (HPAGE_PMD_SHIFT-PAGE_SHIFT)
| ^
include/linux/huge_mm.h:113:28: note: expanded from macro 'HPAGE_PMD_SHIFT'
113 | #define HPAGE_PMD_SHIFT ({ BUILD_BUG(); 0; })
| ^
include/linux/build_bug.h:59:21: note: expanded from macro 'BUILD_BUG'
59 | #define BUILD_BUG() BUILD_BUG_ON_MSG(1, "BUILD_BUG failed")
| ^
note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)
include/linux/compiler_types.h:694:2: note: expanded from macro '_compiletime_assert'
694 | __compiletime_assert(condition, msg, prefix, suffix)
| ^
include/linux/compiler_types.h:687:4: note: expanded from macro '__compiletime_assert'
687 | prefix ## suffix(); \
| ^
<scratch space>:91:1: note: expanded from here
91 | __compiletime_assert_458
| ^
1 error generated.
vim +480 drivers/gpu/drm/drm_pagemap.c
ec265e1f1cfcce Thomas Hellström 2025-12-19 454
139ab31aea8a94 Matthew Brost 2026-03-12 455 /**
139ab31aea8a94 Matthew Brost 2026-03-12 456 * drm_pagemap_cpages() - Count collected pages
139ab31aea8a94 Matthew Brost 2026-03-12 457 * @migrate_pfn: Array of migrate_pfn entries to account
139ab31aea8a94 Matthew Brost 2026-03-12 458 * @npages: Number of entries in @migrate_pfn
139ab31aea8a94 Matthew Brost 2026-03-12 459 *
139ab31aea8a94 Matthew Brost 2026-03-12 460 * Compute the total number of minimum-sized pages represented by the
139ab31aea8a94 Matthew Brost 2026-03-12 461 * collected entries in @migrate_pfn. The total is derived from the
139ab31aea8a94 Matthew Brost 2026-03-12 462 * order encoded in each entry.
139ab31aea8a94 Matthew Brost 2026-03-12 463 *
139ab31aea8a94 Matthew Brost 2026-03-12 464 * Return: Total number of minimum-sized pages.
139ab31aea8a94 Matthew Brost 2026-03-12 465 */
139ab31aea8a94 Matthew Brost 2026-03-12 466 static int drm_pagemap_cpages(unsigned long *migrate_pfn, unsigned long npages)
139ab31aea8a94 Matthew Brost 2026-03-12 467 {
139ab31aea8a94 Matthew Brost 2026-03-12 468 unsigned long i, cpages = 0;
139ab31aea8a94 Matthew Brost 2026-03-12 469
139ab31aea8a94 Matthew Brost 2026-03-12 470 for (i = 0; i < npages;) {
139ab31aea8a94 Matthew Brost 2026-03-12 471 struct page *page = migrate_pfn_to_page(migrate_pfn[i]);
139ab31aea8a94 Matthew Brost 2026-03-12 472 struct folio *folio;
139ab31aea8a94 Matthew Brost 2026-03-12 473 unsigned int order = 0;
139ab31aea8a94 Matthew Brost 2026-03-12 474
139ab31aea8a94 Matthew Brost 2026-03-12 475 if (page) {
139ab31aea8a94 Matthew Brost 2026-03-12 476 folio = page_folio(page);
139ab31aea8a94 Matthew Brost 2026-03-12 477 order = folio_order(folio);
139ab31aea8a94 Matthew Brost 2026-03-12 478 cpages += NR_PAGES(order);
139ab31aea8a94 Matthew Brost 2026-03-12 479 } else if (migrate_pfn[i] & MIGRATE_PFN_COMPOUND) {
139ab31aea8a94 Matthew Brost 2026-03-12 @480 order = HPAGE_PMD_ORDER;
139ab31aea8a94 Matthew Brost 2026-03-12 481 cpages += NR_PAGES(order);
139ab31aea8a94 Matthew Brost 2026-03-12 482 }
139ab31aea8a94 Matthew Brost 2026-03-12 483
139ab31aea8a94 Matthew Brost 2026-03-12 484 i += NR_PAGES(order);
139ab31aea8a94 Matthew Brost 2026-03-12 485 }
139ab31aea8a94 Matthew Brost 2026-03-12 486
139ab31aea8a94 Matthew Brost 2026-03-12 487 return cpages;
139ab31aea8a94 Matthew Brost 2026-03-12 488 }
139ab31aea8a94 Matthew Brost 2026-03-12 489
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next reply other threads:[~2026-07-20 11:37 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-20 11:36 kernel test robot [this message]
2026-07-21 10:40 ` [PATCH] drm/pagemap: Guard HPAGE_PMD_ORDER use with CONFIG_ARCH_ENABLE_THP_MIGRATION Jan Stancek
2026-07-21 10:56 ` sashiko-bot
2026-07-21 19:12 ` Matthew Brost
2026-07-21 19:15 ` Matthew Brost
2026-07-21 19:35 ` Jan Stancek
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202607201914.LpAGsbXs-lkp@intel.com \
--to=lkp@intel.com \
--cc=oe-kbuild@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.