AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Felix Kuehling <felix.kuehling-5C7GfCeVMHo@public.gmane.org>
To: Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org>,
	Oded Gabbay <oded.gabbay-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	"amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org"
	<amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org>
Subject: Re: [PATCH 2/2] amdgpu: kfd: use modern ktime accessors
Date: Wed, 20 Jun 2018 17:04:51 -0400	[thread overview]
Message-ID: <1dade9cb-d9f9-a3a0-67bb-0530bd47e288@amd.com> (raw)
In-Reply-To: <20180618153649.2015346-2-arnd-r2nGTMty4D4@public.gmane.org>

On 2018-06-18 11:35 AM, Arnd Bergmann wrote:
> getrawmonotonic64() and get_monotonic_boottime64() are deprecated
> because of the nonstandard naming.
>
> The replacement functions ktime_get_raw_ns() and ktime_get_boot_ns()
> also simplify the callers.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

In case this hasn't been submitted yet, this patch is Reviewed-by: Felix
Kuehling <Felix.Kuehling@amd.com>.

> ---
>  drivers/gpu/drm/amd/amdkfd/kfd_chardev.c | 8 ++------
>  1 file changed, 2 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c b/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
> index f64c5551cdba..7e717716b90e 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
> @@ -754,7 +754,6 @@ static int kfd_ioctl_get_clock_counters(struct file *filep,
>  {
>  	struct kfd_ioctl_get_clock_counters_args *args = data;
>  	struct kfd_dev *dev;
> -	struct timespec64 time;
>  
>  	dev = kfd_device_by_id(args->gpu_id);
>  	if (dev)
> @@ -766,11 +765,8 @@ static int kfd_ioctl_get_clock_counters(struct file *filep,
>  		args->gpu_clock_counter = 0;
>  
>  	/* No access to rdtsc. Using raw monotonic time */
> -	getrawmonotonic64(&time);
> -	args->cpu_clock_counter = (uint64_t)timespec64_to_ns(&time);
> -
> -	get_monotonic_boottime64(&time);
> -	args->system_clock_counter = (uint64_t)timespec64_to_ns(&time);
> +	args->cpu_clock_counter = ktime_get_raw_ns();
> +	args->system_clock_counter = ktime_get_boot_ns();
>  
>  	/* Since the counter is in nano-seconds we use 1GHz frequency */
>  	args->system_clock_freq = 1000000000;

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

  parent reply	other threads:[~2018-06-20 21:04 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-18 15:35 [PATCH 1/2] amdgpu: display: use modern ktime accessors Arnd Bergmann
2018-06-18 15:35 ` [PATCH 2/2] amdgpu: kfd: " Arnd Bergmann
     [not found]   ` <20180618153649.2015346-2-arnd-r2nGTMty4D4@public.gmane.org>
2018-06-20 21:04     ` Felix Kuehling [this message]
2018-06-18 16:13 ` [PATCH 1/2] amdgpu: display: " Harry Wentland

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=1dade9cb-d9f9-a3a0-67bb-0530bd47e288@amd.com \
    --to=felix.kuehling-5c7gfcevmho@public.gmane.org \
    --cc=amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
    --cc=arnd-r2nGTMty4D4@public.gmane.org \
    --cc=oded.gabbay-Re5JQEeQqe8AvxtiuMwx3w@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox