All of lore.kernel.org
 help / color / mirror / Atom feed
From: Cao jin <caoj.fnst@cn.fujitsu.com>
To: <qemu-devel@nongnu.org>
Cc: Paolo Bonzini <pbonzini@redhat.com>, <qemu-trivial@nongnu.org>,
	<rth@twiddle.net>, <crosthwaite.peter@gmail.com>
Subject: Re: [Qemu-trivial] [Qemu-devel] [PATCH] timer/cpus: fix some typos and update some comments
Date: Fri, 8 Jul 2016 19:44:41 +0800	[thread overview]
Message-ID: <577F9229.2010806@cn.fujitsu.com> (raw)
In-Reply-To: <1467973897-13734-1-git-send-email-caoj.fnst@cn.fujitsu.com>

cc to Paolo

On 07/08/2016 06:31 PM, Cao jin wrote:
> Signed-off-by: Cao jin <caoj.fnst@cn.fujitsu.com>
> ---
>   cpus.c               | 6 +++---
>   include/qemu/timer.h | 2 +-
>   2 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/cpus.c b/cpus.c
> index 84c3520..d4afd93 100644
> --- a/cpus.c
> +++ b/cpus.c
> @@ -229,7 +229,7 @@ static int64_t cpu_get_clock_locked(void)
>       return ticks;
>   }
>
> -/* return the host CPU monotonic timer and handle stop/restart */
> +/* return the host CPU monotonic time */
>   int64_t cpu_get_clock(void)
>   {
>       int64_t ti;
> @@ -244,7 +244,7 @@ int64_t cpu_get_clock(void)
>   }
>
>   /* enable cpu_get_ticks()
> - * Caller must hold BQL which server as mutex for vm_clock_seqlock.
> + * Caller must hold BQL which serve as mutex for vm_clock_seqlock.
>    */
>   void cpu_enable_ticks(void)
>   {
> @@ -260,7 +260,7 @@ void cpu_enable_ticks(void)
>
>   /* disable cpu_get_ticks() : the clock is stopped. You must not call
>    * cpu_get_ticks() after that.
> - * Caller must hold BQL which server as mutex for vm_clock_seqlock.
> + * Caller must hold BQL which serve as mutex for vm_clock_seqlock.
>    */
>   void cpu_disable_ticks(void)
>   {
> diff --git a/include/qemu/timer.h b/include/qemu/timer.h
> index 7fea97f..930b5d3 100644
> --- a/include/qemu/timer.h
> +++ b/include/qemu/timer.h
> @@ -802,7 +802,7 @@ static inline int64_t get_max_clock_jump(void)
>    * Low level clock functions
>    */
>
> -/* real time host monotonic timer */
> +/* get host real time in nanosecond */
>   static inline int64_t get_clock_realtime(void)
>   {
>       struct timeval tv;
>

-- 
Yours Sincerely,

Cao jin




WARNING: multiple messages have this Message-ID (diff)
From: Cao jin <caoj.fnst@cn.fujitsu.com>
To: qemu-devel@nongnu.org
Cc: Paolo Bonzini <pbonzini@redhat.com>,
	qemu-trivial@nongnu.org, rth@twiddle.net,
	crosthwaite.peter@gmail.com
Subject: Re: [Qemu-devel] [PATCH] timer/cpus: fix some typos and update some comments
Date: Fri, 8 Jul 2016 19:44:41 +0800	[thread overview]
Message-ID: <577F9229.2010806@cn.fujitsu.com> (raw)
In-Reply-To: <1467973897-13734-1-git-send-email-caoj.fnst@cn.fujitsu.com>

cc to Paolo

On 07/08/2016 06:31 PM, Cao jin wrote:
> Signed-off-by: Cao jin <caoj.fnst@cn.fujitsu.com>
> ---
>   cpus.c               | 6 +++---
>   include/qemu/timer.h | 2 +-
>   2 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/cpus.c b/cpus.c
> index 84c3520..d4afd93 100644
> --- a/cpus.c
> +++ b/cpus.c
> @@ -229,7 +229,7 @@ static int64_t cpu_get_clock_locked(void)
>       return ticks;
>   }
>
> -/* return the host CPU monotonic timer and handle stop/restart */
> +/* return the host CPU monotonic time */
>   int64_t cpu_get_clock(void)
>   {
>       int64_t ti;
> @@ -244,7 +244,7 @@ int64_t cpu_get_clock(void)
>   }
>
>   /* enable cpu_get_ticks()
> - * Caller must hold BQL which server as mutex for vm_clock_seqlock.
> + * Caller must hold BQL which serve as mutex for vm_clock_seqlock.
>    */
>   void cpu_enable_ticks(void)
>   {
> @@ -260,7 +260,7 @@ void cpu_enable_ticks(void)
>
>   /* disable cpu_get_ticks() : the clock is stopped. You must not call
>    * cpu_get_ticks() after that.
> - * Caller must hold BQL which server as mutex for vm_clock_seqlock.
> + * Caller must hold BQL which serve as mutex for vm_clock_seqlock.
>    */
>   void cpu_disable_ticks(void)
>   {
> diff --git a/include/qemu/timer.h b/include/qemu/timer.h
> index 7fea97f..930b5d3 100644
> --- a/include/qemu/timer.h
> +++ b/include/qemu/timer.h
> @@ -802,7 +802,7 @@ static inline int64_t get_max_clock_jump(void)
>    * Low level clock functions
>    */
>
> -/* real time host monotonic timer */
> +/* get host real time in nanosecond */
>   static inline int64_t get_clock_realtime(void)
>   {
>       struct timeval tv;
>

-- 
Yours Sincerely,

Cao jin

  reply	other threads:[~2016-07-08 11:38 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-08 10:31 [Qemu-trivial] [PATCH] timer/cpus: fix some typos and update some comments Cao jin
2016-07-08 10:31 ` [Qemu-devel] " Cao jin
2016-07-08 11:44 ` Cao jin [this message]
2016-07-08 11:44   ` Cao jin
2016-07-28 15:30 ` [Qemu-trivial] " Michael Tokarev
2016-07-28 15:30   ` [Qemu-devel] " Michael Tokarev

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=577F9229.2010806@cn.fujitsu.com \
    --to=caoj.fnst@cn.fujitsu.com \
    --cc=crosthwaite.peter@gmail.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-trivial@nongnu.org \
    --cc=rth@twiddle.net \
    /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.