From: "Zhang, Jerry(Junwei)" <Jerry.Zhang@amd.com>
To: "Michel Dänzer" <michel@daenzer.net>,
"Christian Koenig" <christian.koenig@amd.com>,
"Huang Rui" <ray.huang@amd.com>,
"Maarten Lankhorst" <maarten.lankhorst@linux.intel.com>,
"Maxime Ripard" <maxime.ripard@bootlin.com>,
"Sean Paul" <sean@poorly.run>, "David Airlie" <airlied@linux.ie>
Cc: <dri-devel@lists.freedesktop.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 2/2] drm/ttm: Use pr_debug for all output from ttm_bo_evict
Date: Thu, 6 Dec 2018 10:43:48 +0800 [thread overview]
Message-ID: <b0b57acb-7152-ab1a-855a-3de8c77fa425@amd.com> (raw)
In-Reply-To: <20181205165621.5805-2-michel@daenzer.net>
On 12/6/18 12:56 AM, Michel Dänzer wrote:
> From: Michel Dänzer <michel.daenzer@amd.com>
>
> All the output is related, so it should all be printed the same way.
> Some of it was using pr_debug, but some of it appeared in dmesg by
> default. The caller should handle failure, so there's no need to spam
> dmesg with potentially quite a lot of output by default.
>
> Signed-off-by: Michel Dänzer <michel.daenzer@amd.com>
Sounds reasonable, but personally prefer to show error when some
vital incident happens, e.g. no memory on eviction.
Regards,
Jerry
> ---
> drivers/gpu/drm/ttm/ttm_bo.c | 39 ++++++++++++++++++------------------
> 1 file changed, 20 insertions(+), 19 deletions(-)
>
> diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c
> index d87935bf8e30..5e9b9dd91629 100644
> --- a/drivers/gpu/drm/ttm/ttm_bo.c
> +++ b/drivers/gpu/drm/ttm/ttm_bo.c
> @@ -77,38 +77,39 @@ static inline int ttm_mem_type_from_place(const struct ttm_place *place,
> return 0;
> }
>
> -static void ttm_mem_type_debug(struct ttm_bo_device *bdev, int mem_type)
> +static void ttm_mem_type_debug(struct ttm_bo_device *bdev, struct drm_printer *p,
> + int mem_type)
> {
> struct ttm_mem_type_manager *man = &bdev->man[mem_type];
> - struct drm_printer p = drm_debug_printer(TTM_PFX);
>
> - pr_err(" has_type: %d\n", man->has_type);
> - pr_err(" use_type: %d\n", man->use_type);
> - pr_err(" flags: 0x%08X\n", man->flags);
> - pr_err(" gpu_offset: 0x%08llX\n", man->gpu_offset);
> - pr_err(" size: %llu\n", man->size);
> - pr_err(" available_caching: 0x%08X\n", man->available_caching);
> - pr_err(" default_caching: 0x%08X\n", man->default_caching);
> + drm_printf(p, " has_type: %d\n", man->has_type);
> + drm_printf(p, " use_type: %d\n", man->use_type);
> + drm_printf(p, " flags: 0x%08X\n", man->flags);
> + drm_printf(p, " gpu_offset: 0x%08llX\n", man->gpu_offset);
> + drm_printf(p, " size: %llu\n", man->size);
> + drm_printf(p, " available_caching: 0x%08X\n", man->available_caching);
> + drm_printf(p, " default_caching: 0x%08X\n", man->default_caching);
> if (mem_type != TTM_PL_SYSTEM)
> - (*man->func->debug)(man, &p);
> + (*man->func->debug)(man, p);
> }
>
> static void ttm_bo_mem_space_debug(struct ttm_buffer_object *bo,
> struct ttm_placement *placement)
> {
> + struct drm_printer p = drm_debug_printer(TTM_PFX);
> int i, ret, mem_type;
>
> - pr_err("No space for %p (%lu pages, %luK, %luM)\n",
> - bo, bo->mem.num_pages, bo->mem.size >> 10,
> - bo->mem.size >> 20);
> + drm_printf(&p, "No space for %p (%lu pages, %luK, %luM)\n",
> + bo, bo->mem.num_pages, bo->mem.size >> 10,
> + bo->mem.size >> 20);
> for (i = 0; i < placement->num_placement; i++) {
> ret = ttm_mem_type_from_place(&placement->placement[i],
> &mem_type);
> if (ret)
> return;
> - pr_err(" placement[%d]=0x%08X (%d)\n",
> - i, placement->placement[i].flags, mem_type);
> - ttm_mem_type_debug(bo->bdev, mem_type);
> + drm_printf(&p, " placement[%d]=0x%08X (%d)\n",
> + i, placement->placement[i].flags, mem_type);
> + ttm_mem_type_debug(bo->bdev, &p, mem_type);
> }
> }
>
> @@ -728,8 +729,8 @@ static int ttm_bo_evict(struct ttm_buffer_object *bo,
> ret = ttm_bo_mem_space(bo, &placement, &evict_mem, ctx);
> if (ret) {
> if (ret != -ERESTARTSYS) {
> - pr_err("Failed to find memory space for buffer 0x%p eviction\n",
> - bo);
> + pr_debug("Failed to find memory space for buffer 0x%p eviction\n",
> + bo);
> ttm_bo_mem_space_debug(bo, &placement);
> }
> goto out;
> @@ -738,7 +739,7 @@ static int ttm_bo_evict(struct ttm_buffer_object *bo,
> ret = ttm_bo_handle_move_mem(bo, &evict_mem, true, ctx);
> if (unlikely(ret)) {
> if (ret != -ERESTARTSYS)
> - pr_err("Buffer eviction failed\n");
> + pr_debug("Buffer eviction failed\n");
> ttm_bo_mem_put(bo, &evict_mem);
> goto out;
> }
next prev parent reply other threads:[~2018-12-06 2:44 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-05 16:56 [PATCH 1/2] drm: Only #define DEBUG if CONFIG_DYNAMIC_DEBUG is disabled Michel Dänzer
2018-12-05 16:56 ` [PATCH 2/2] drm/ttm: Use pr_debug for all output from ttm_bo_evict Michel Dänzer
2018-12-06 2:43 ` Zhang, Jerry(Junwei) [this message]
2018-12-06 9:09 ` Michel Dänzer
2018-12-06 9:33 ` Koenig, Christian
2018-12-06 9:38 ` Michel Dänzer
2018-12-06 9:50 ` Michel Dänzer
2018-12-06 9:39 ` Zhang, Jerry(Junwei)
2018-12-06 9:49 ` Christian König
2018-12-06 9:54 ` Michel Dänzer
2018-12-06 16:46 ` Joe Perches
2018-12-06 17:28 ` Michel Dänzer
2018-12-06 2:40 ` [PATCH 1/2] drm: Only #define DEBUG if CONFIG_DYNAMIC_DEBUG is disabled Zhang, Jerry(Junwei)
2018-12-06 2:51 ` Joe Perches
2018-12-06 9:23 ` Michel Dänzer
2018-12-06 11:41 ` Joe Perches
2018-12-06 11:52 ` Michel Dänzer
2018-12-06 12:23 ` Joe Perches
2018-12-06 14:41 ` Michel Dänzer
2018-12-06 16:10 ` Daniel Thompson
2018-12-06 16:14 ` Michel Dänzer
2018-12-06 16:22 ` Joe Perches
2018-12-06 9:12 ` Chris Wilson
2018-12-06 9:21 ` Michel Dänzer
2018-12-06 9:28 ` Chris Wilson
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=b0b57acb-7152-ab1a-855a-3de8c77fa425@amd.com \
--to=jerry.zhang@amd.com \
--cc=airlied@linux.ie \
--cc=christian.koenig@amd.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=maxime.ripard@bootlin.com \
--cc=michel@daenzer.net \
--cc=ray.huang@amd.com \
--cc=sean@poorly.run \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®