[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.DEB.2.21.1910251212070.3307@hadrien>
Date: Fri, 25 Oct 2019 12:12:23 +0200 (CEST)
From: Julia Lawall <julia.lawall@...6.fr>
To: Wambui Karuga <wambui.karugax@...il.com>
cc: dri-devel@...ts.freedesktop.org, maarten.lankhorst@...ux.intel.com,
mripard@...nel.org, sean@...rly.run, airlied@...ux.ie,
daniel@...ll.ch, linux-kernel@...r.kernel.org,
outreachy-kernel@...glegroups.com
Subject: Re: [Outreachy kernel] [Outreachy][PATCH] drm: use DIV_ROUND_UP
helper macro for calculations
On Fri, 25 Oct 2019, Wambui Karuga wrote:
> Replace open coded divisor calculations with the DIV_ROUND_UP kernel
> macro for better readability.
> Issue found using coccinelle:
> @@
> expression n,d;
> @@
> (
> - ((n + d - 1) / d)
> + DIV_ROUND_UP(n,d)
> |
> - ((n + (d - 1)) / d)
> + DIV_ROUND_UP(n,d)
> )
>
> Signed-off-by: Wambui Karuga <wambui.karugax@...il.com>
Acked-by: Julia Lawall <julia.lawall@...6.fr>
> ---
> drivers/gpu/drm/drm_agpsupport.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/drm_agpsupport.c b/drivers/gpu/drm/drm_agpsupport.c
> index 6e09f27fd9d6..4c7ad46fdd21 100644
> --- a/drivers/gpu/drm/drm_agpsupport.c
> +++ b/drivers/gpu/drm/drm_agpsupport.c
> @@ -212,7 +212,7 @@ int drm_agp_alloc(struct drm_device *dev, struct drm_agp_buffer *request)
> if (!entry)
> return -ENOMEM;
>
> - pages = (request->size + PAGE_SIZE - 1) / PAGE_SIZE;
> + pages = DIV_ROUND_UP(request->size, PAGE_SIZE);
> type = (u32) request->type;
> memory = agp_allocate_memory(dev->agp->bridge, pages, type);
> if (!memory) {
> @@ -325,7 +325,7 @@ int drm_agp_bind(struct drm_device *dev, struct drm_agp_binding *request)
> entry = drm_agp_lookup_entry(dev, request->handle);
> if (!entry || entry->bound)
> return -EINVAL;
> - page = (request->offset + PAGE_SIZE - 1) / PAGE_SIZE;
> + page = DIV_ROUND_UP(request->offset, PAGE_SIZE);
> retcode = drm_bind_agp(entry->memory, page);
> if (retcode)
> return retcode;
> --
> 2.23.0
>
> --
> You received this message because you are subscribed to the Google Groups "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@...glegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/20191025094907.3582-1-wambui.karugax%40gmail.com.
>
Powered by blists - more mailing lists