Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/xe/pf: Use div_u64 when calculating GGTT profile

This will fix the following error seen on some 32-bit config:

"ERROR: modpost: "__udivdi3" [drivers/gpu/drm/xe/xe.ko] undefined!"

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202511150929.3vUi6PEJ-lkp@intel.com/
Fixes: e448372e8a8e ("drm/xe/pf: Use migration-friendly GGTT auto-provisioning")
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Piotr Piórkowski <piotr.piorkowski@intel.com>
Link: https://patch.msgid.link/20251115151323.10828-1-michal.wajdeczko@intel.com
(cherry picked from commit 0f4435a1f46efc3177eb082cd3f73e29da5ab86a)
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>

authored by

Michal Wajdeczko and committed by
Thomas Hellström
14a8d83c bf213ac6

+1 -1
+1 -1
drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
··· 711 711 if (num_vfs > 56) 712 712 return SZ_64M - SZ_8M; 713 713 714 - return rounddown_pow_of_two(shareable / num_vfs); 714 + return rounddown_pow_of_two(div_u64(shareable, num_vfs)); 715 715 } 716 716 717 717 /**