dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drm/xe: avoid plain 64-bit division
@ 2025-03-24 21:06 Arnd Bergmann
  2025-03-28 18:27 ` Rodrigo Vivi
  0 siblings, 1 reply; 2+ messages in thread
From: Arnd Bergmann @ 2025-03-24 21:06 UTC (permalink / raw)
  To: Lucas De Marchi, Thomas Hellström, Rodrigo Vivi,
	David Airlie, Simona Vetter, Oak Zeng, Matthew Brost
  Cc: Arnd Bergmann, Matthew Auld, Nirmoy Das, Akshata Jahagirdar,
	José Roberto de Souza, intel-xe, dri-devel, linux-kernel

From: Arnd Bergmann <arnd@arndb.de>

Building the xe driver for i386 results in a link time warning:

x86_64-linux-ld: drivers/gpu/drm/xe/xe_migrate.o: in function `xe_migrate_vram':
xe_migrate.c:(.text+0x1e15): undefined reference to `__udivdi3'

Avoid this by using DIV_U64_ROUND_UP() instead of DIV_ROUND_UP().  The driver
is unlikely to be used on 32=bit hardware, so the extra cost here is not
too important.

Fixes: 9c44fd5f6e8a ("drm/xe: Add migrate layer functions for SVM support")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 drivers/gpu/drm/xe/xe_migrate.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
index df4282c71bf0..aafb6209f2d0 100644
--- a/drivers/gpu/drm/xe/xe_migrate.c
+++ b/drivers/gpu/drm/xe/xe_migrate.c
@@ -1547,7 +1547,7 @@ void xe_migrate_wait(struct xe_migrate *m)
 static u32 pte_update_cmd_size(u64 size)
 {
 	u32 num_dword;
-	u64 entries = DIV_ROUND_UP(size, XE_PAGE_SIZE);
+	u64 entries = DIV_U64_ROUND_UP(size, XE_PAGE_SIZE);
 
 	XE_WARN_ON(size > MAX_PREEMPTDISABLE_TRANSFER);
 	/*
@@ -1558,7 +1558,7 @@ static u32 pte_update_cmd_size(u64 size)
 	 * 2 dword for the page table's physical location
 	 * 2*n dword for value of pte to fill (each pte entry is 2 dwords)
 	 */
-	num_dword = (1 + 2) * DIV_ROUND_UP(entries, 0x1ff);
+	num_dword = (1 + 2) * DIV_U64_ROUND_UP(entries, 0x1ff);
 	num_dword += entries * 2;
 
 	return num_dword;
-- 
2.39.5


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] drm/xe: avoid plain 64-bit division
  2025-03-24 21:06 [PATCH] drm/xe: avoid plain 64-bit division Arnd Bergmann
@ 2025-03-28 18:27 ` Rodrigo Vivi
  0 siblings, 0 replies; 2+ messages in thread
From: Rodrigo Vivi @ 2025-03-28 18:27 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Lucas De Marchi, Thomas Hellström, David Airlie,
	Simona Vetter, Oak Zeng, Matthew Brost, Arnd Bergmann,
	Matthew Auld, Nirmoy Das, Akshata Jahagirdar,
	José Roberto de Souza, intel-xe, dri-devel, linux-kernel

On Mon, Mar 24, 2025 at 10:06:02PM +0100, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> Building the xe driver for i386 results in a link time warning:
> 
> x86_64-linux-ld: drivers/gpu/drm/xe/xe_migrate.o: in function `xe_migrate_vram':
> xe_migrate.c:(.text+0x1e15): undefined reference to `__udivdi3'
> 
> Avoid this by using DIV_U64_ROUND_UP() instead of DIV_ROUND_UP().  The driver
> is unlikely to be used on 32=bit hardware, so the extra cost here is not
> too important.
> 
> Fixes: 9c44fd5f6e8a ("drm/xe: Add migrate layer functions for SVM support")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>

and pushing it right now, thanks for the patch

> ---
>  drivers/gpu/drm/xe/xe_migrate.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
> index df4282c71bf0..aafb6209f2d0 100644
> --- a/drivers/gpu/drm/xe/xe_migrate.c
> +++ b/drivers/gpu/drm/xe/xe_migrate.c
> @@ -1547,7 +1547,7 @@ void xe_migrate_wait(struct xe_migrate *m)
>  static u32 pte_update_cmd_size(u64 size)
>  {
>  	u32 num_dword;
> -	u64 entries = DIV_ROUND_UP(size, XE_PAGE_SIZE);
> +	u64 entries = DIV_U64_ROUND_UP(size, XE_PAGE_SIZE);
>  
>  	XE_WARN_ON(size > MAX_PREEMPTDISABLE_TRANSFER);
>  	/*
> @@ -1558,7 +1558,7 @@ static u32 pte_update_cmd_size(u64 size)
>  	 * 2 dword for the page table's physical location
>  	 * 2*n dword for value of pte to fill (each pte entry is 2 dwords)
>  	 */
> -	num_dword = (1 + 2) * DIV_ROUND_UP(entries, 0x1ff);
> +	num_dword = (1 + 2) * DIV_U64_ROUND_UP(entries, 0x1ff);
>  	num_dword += entries * 2;
>  
>  	return num_dword;
> -- 
> 2.39.5
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-03-28 18:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-24 21:06 [PATCH] drm/xe: avoid plain 64-bit division Arnd Bergmann
2025-03-28 18:27 ` Rodrigo Vivi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).