From: "Christian König" <christian.koenig@amd.com>
To: Lepton Wu <ytht.net@gmail.com>, amd-gfx@lists.freedesktop.org
Cc: marek.olsak@amd.com, bas@basnieuwenhuizen.nl
Subject: Re: [PATCH] drm/amdgpu: Always align dumb buffer at PAGE_SIZE
Date: Fri, 23 Sep 2022 07:14:37 +0200 [thread overview]
Message-ID: <7526e4ba-1022-d921-9138-257c369cc172@amd.com> (raw)
In-Reply-To: <20220922230452.3903316-1-ytht.net@gmail.com>
Am 23.09.22 um 01:04 schrieb Lepton Wu:
> Since size has been aligned to PAGE_SIZE already, just align it
> to PAGE_SIZE so later the buffer can be used as a texture in mesa
> after https://cgit.freedesktop.org/mesa/mesa/commit/?id=f7a4051b8
> Otherwise, si_texture_create_object will fail at line
> "buf->alignment < tex->surface.alignment"
I don't think that those Mesa checks are a good idea in the first place.
The alignment value is often specified as zero when it doesn't matter
because the minimum alignment can never be less than the page size.
Christian.
>
> Signed-off-by: Lepton Wu <ytht.net@gmail.com>
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c
> index 8ef31d687ef3b..8dca0c920d3ce 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c
> @@ -928,7 +928,7 @@ int amdgpu_mode_dumb_create(struct drm_file *file_priv,
> args->size = ALIGN(args->size, PAGE_SIZE);
> domain = amdgpu_bo_get_preferred_domain(adev,
> amdgpu_display_supported_domains(adev, flags));
> - r = amdgpu_gem_object_create(adev, args->size, 0, domain, flags,
> + r = amdgpu_gem_object_create(adev, args->size, PAGE_SIZE, domain, flags,
> ttm_bo_type_device, NULL, &gobj);
> if (r)
> return -ENOMEM;
next prev parent reply other threads:[~2022-09-23 5:14 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-22 23:04 [PATCH] drm/amdgpu: Always align dumb buffer at PAGE_SIZE Lepton Wu
2022-09-23 5:14 ` Christian König [this message]
2022-09-23 5:28 ` lepton
2022-09-23 5:30 ` Christian König
2022-09-23 6:23 ` Marek Olšák
2022-09-26 9:21 ` Christian König
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=7526e4ba-1022-d921-9138-257c369cc172@amd.com \
--to=christian.koenig@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=bas@basnieuwenhuizen.nl \
--cc=marek.olsak@amd.com \
--cc=ytht.net@gmail.com \
/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.