timekeeping: Fix references to nonexistent ktime_get_fast_ns()

Message ID 06df7b3cbd94f016403bbf6cd2b38e4368e7468f.1682516546.git.geert+renesas@glider.be
State New
Headers
Series timekeeping: Fix references to nonexistent ktime_get_fast_ns() |

Commit Message

Geert Uytterhoeven April 26, 2023, 1:43 p.m. UTC
  There was never a function named ktime_get_fast_ns().
Presumably these should refer to ktime_get_mono_fast_ns() instead.

Fixes: c1ce406e80fb15fa ("timekeeping: Fix up function documentation for the NMI safe accessors")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 kernel/time/timekeeping.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Comments

John Stultz April 26, 2023, 6:12 p.m. UTC | #1
On Wed, Apr 26, 2023 at 2:43 PM Geert Uytterhoeven
<geert+renesas@glider.be> wrote:
>
> There was never a function named ktime_get_fast_ns().
> Presumably these should refer to ktime_get_mono_fast_ns() instead.
>
> Fixes: c1ce406e80fb15fa ("timekeeping: Fix up function documentation for the NMI safe accessors")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>

Looks sane to me.

Acked-by: John Stultz <jstultz@google.com>

thanks
-john
  

Patch

diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
index 5579ead449f25b63..09d594900ee0b126 100644
--- a/kernel/time/timekeeping.c
+++ b/kernel/time/timekeeping.c
@@ -526,7 +526,7 @@  EXPORT_SYMBOL_GPL(ktime_get_raw_fast_ns);
  * partially updated.  Since the tk->offs_boot update is a rare event, this
  * should be a rare occurrence which postprocessing should be able to handle.
  *
- * The caveats vs. timestamp ordering as documented for ktime_get_fast_ns()
+ * The caveats vs. timestamp ordering as documented for ktime_get_mono_fast_ns()
  * apply as well.
  */
 u64 notrace ktime_get_boot_fast_ns(void)
@@ -576,7 +576,7 @@  static __always_inline u64 __ktime_get_real_fast(struct tk_fast *tkf, u64 *mono)
 /**
  * ktime_get_real_fast_ns: - NMI safe and fast access to clock realtime.
  *
- * See ktime_get_fast_ns() for documentation of the time stamp ordering.
+ * See ktime_get_mono_fast_ns() for documentation of the time stamp ordering.
  */
 u64 ktime_get_real_fast_ns(void)
 {