All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Christian König" <christian.koenig-5C7GfCeVMHo@public.gmane.org>
To: "Xiangliang.Yu" <Xiangliang.Yu-5C7GfCeVMHo@public.gmane.org>,
	amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
Subject: Re: [PATCH] drm/amdgpu: fix kernel hang when starting VNC server
Date: Fri, 20 Oct 2017 13:01:53 +0200	[thread overview]
Message-ID: <cfbe2bb3-1a5a-de87-58e5-8b1ddf3441d9@amd.com> (raw)
In-Reply-To: <1508492712-28961-1-git-send-email-Xiangliang.Yu-5C7GfCeVMHo@public.gmane.org>

Am 20.10.2017 um 11:45 schrieb Xiangliang.Yu:
> After starting VNC server or running CTS test, kernel will hang and
> can see below call trace:
>
> [961816] INFO: task khugepaged:42 blocked for more than 120 seconds.
> [968581]       Tainted: G           OE   4.13.0 #1
> [973495] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables
>            this message.
> [980962] khugepaged      D    0    42      2 0x00000000
> [980967] Call Trace:
> [980977]  __schedule+0x28d/0x890
> [980982]  schedule+0x36/0x80
> [980986]  rwsem_down_read_failed+0x139/0x1c0
> [980991]  ? update_curr+0x100/0x1c0
> [981004]  call_rwsem_down_read_failed+0x18/0x30
> [981007]  down_read+0x20/0x40
> [981012]  khugepaged_scan_mm_slot+0x78/0x1ac0
> [981018]  ? __switch_to+0x23e/0x4a0
> [981022]  ? finish_task_switch+0x79/0x240
> [981026]  khugepaged+0x146/0x480
> [981031]  ? remove_wait_queue+0x60/0x60
> [981035]  kthread+0x109/0x140
> [981037]  ? khugepaged_scan_mm_slot+0x1ac0/0x1ac0
> [981039]  ? kthread_park+0x60/0x60
> [981044]  ret_from_fork+0x25/0x30
>
> After checking code and found 'commit b72cf4fca2bb7 ("drm/amdgpu: move
> taking mmap_sem into get_user_pages v2")' forget to drop one of up_read
> usage.
>
> Signed-off-by: Xiangliang.Yu <Xiangliang.Yu@amd.com>

Reviewed-by: Christian König <christian.koenig@amd.com>

> ---
>   drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c | 5 +----
>   1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c
> index fb72edc..08b37c2 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c
> @@ -323,7 +323,7 @@ int amdgpu_gem_userptr_ioctl(struct drm_device *dev, void *data,
>   		r = amdgpu_ttm_tt_get_user_pages(bo->tbo.ttm,
>   						 bo->tbo.ttm->pages);
>   		if (r)
> -			goto unlock_mmap_sem;
> +			goto release_object;
>   
>   		r = amdgpu_bo_reserve(bo, true);
>   		if (r)
> @@ -348,9 +348,6 @@ int amdgpu_gem_userptr_ioctl(struct drm_device *dev, void *data,
>   free_pages:
>   	release_pages(bo->tbo.ttm->pages, bo->tbo.ttm->num_pages, false);
>   
> -unlock_mmap_sem:
> -	up_read(&current->mm->mmap_sem);
> -
>   release_object:
>   	drm_gem_object_put_unlocked(gobj);
>   


_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

      parent reply	other threads:[~2017-10-20 11:01 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-20  9:45 [PATCH] drm/amdgpu: fix kernel hang when starting VNC server Xiangliang.Yu
     [not found] ` <1508492712-28961-1-git-send-email-Xiangliang.Yu-5C7GfCeVMHo@public.gmane.org>
2017-10-20 11:01   ` Christian König [this message]

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=cfbe2bb3-1a5a-de87-58e5-8b1ddf3441d9@amd.com \
    --to=christian.koenig-5c7gfcevmho@public.gmane.org \
    --cc=Xiangliang.Yu-5C7GfCeVMHo@public.gmane.org \
    --cc=amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
    /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.