Commit 58c5fc2b authored by Thomas Gleixner's avatar Thomas Gleixner

time: Remove useless filenames in top level comments

Remove the pointless filenames in the top level comments. They have no
value at all and just occupy space. While at it tidy up some of the
comments and remove a stale one.
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Acked-by: default avatarNicolas Pitre <nico@linaro.org>
Acked-by: default avatarKees Cook <keescook@chromium.org>
Acked-by: default avatarIngo Molnar <mingo@kernel.org>
Acked-by: default avatarJohn Stultz <john.stultz@linaro.org>
Acked-by: default avatarCorey Minyard <cminyard@mvista.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Kate Stewart <kstewart@linuxfoundation.org>
Cc: Philippe Ombredanne <pombredanne@nexb.com>
Cc: Peter Anvin <hpa@zytor.com>
Cc: Russell King <rmk+kernel@armlinux.org.uk>
Cc: Richard Cochran <richardcochran@gmail.com>
Cc: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Cc: David Riley <davidriley@chromium.org>
Cc: Colin Cross <ccross@android.com>
Cc: Mark Brown <broonie@kernel.org>
Link: https://lkml.kernel.org/r/20181031182252.794898238@linutronix.de
parent 7d9df98b
/* /*
* include/linux/hrtimer.h
*
* hrtimers - High-resolution kernel timers * hrtimers - High-resolution kernel timers
* *
* Copyright(C) 2005, Thomas Gleixner <tglx@linutronix.de> * Copyright(C) 2005, Thomas Gleixner <tglx@linutronix.de>
......
/* /*
* linux/kernel/time/clockevents.c
*
* This file contains functions which manage clock event devices. * This file contains functions which manage clock event devices.
* *
* Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de> * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de>
......
/* /*
* linux/kernel/time/clocksource.c
*
* This file contains the functions which manage clocksource drivers. * This file contains the functions which manage clocksource drivers.
* *
* Copyright (C) 2004, 2005 IBM, John Stultz (johnstul@us.ibm.com) * Copyright (C) 2004, 2005 IBM, John Stultz (johnstul@us.ibm.com)
...@@ -18,9 +16,6 @@ ...@@ -18,9 +16,6 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* TODO WishList:
* o Allow clocksource drivers to be unregistered
*/ */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
......
/* /*
* linux/kernel/hrtimer.c
*
* Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de> * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de>
* Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar
* Copyright(C) 2006-2007 Timesys Corp., Thomas Gleixner * Copyright(C) 2006-2007 Timesys Corp., Thomas Gleixner
* *
* High-resolution kernel timers * High-resolution kernel timers
* *
* In contrast to the low-resolution timeout API implemented in * In contrast to the low-resolution timeout API, aka timer wheel,
* kernel/timer.c, hrtimers provide finer resolution and accuracy * hrtimers provide finer resolution and accuracy depending on system
* depending on system configuration and capabilities. * configuration and capabilities.
*
* These timers are currently used for:
* - itimers
* - POSIX timers
* - nanosleep
* - precise in-kernel timing
* *
* Started by: Thomas Gleixner and Ingo Molnar * Started by: Thomas Gleixner and Ingo Molnar
* *
* Credits: * Credits:
* based on kernel/timer.c * Based on the original timer wheel code
* *
* Help, testing, suggestions, bugfixes, improvements were * Help, testing, suggestions, bugfixes, improvements were
* provided by: * provided by:
......
// SPDX-License-Identifier: GPL-2.0 // SPDX-License-Identifier: GPL-2.0
/* /*
* linux/kernel/itimer.c
*
* Copyright (C) 1992 Darren Senn * Copyright (C) 1992 Darren Senn
*/ */
......
/*********************************************************************** /***********************************************************************
* linux/kernel/time/jiffies.c
*
* This file contains the jiffies based clocksource. * This file contains the jiffies based clocksource.
* *
* Copyright (C) 2004, 2005 IBM, John Stultz (johnstul@us.ibm.com) * Copyright (C) 2004, 2005 IBM, John Stultz (johnstul@us.ibm.com)
......
/* /*
* posix-clock.c - support for dynamic clock devices * Support for dynamic clock devices
* *
* Copyright (C) 2010 OMICRON electronics GmbH * Copyright (C) 2010 OMICRON electronics GmbH
* *
......
/* /*
* linux/kernel/posix-timers.c
*
*
* 2002-10-15 Posix Clocks & timers * 2002-10-15 Posix Clocks & timers
* by George Anzinger george@mvista.com * by George Anzinger george@mvista.com
*
* Copyright (C) 2002 2003 by MontaVista Software. * Copyright (C) 2002 2003 by MontaVista Software.
* *
* 2004-06-01 Fix CLOCK_REALTIME clock/timer TIMER_ABSTIME bug. * 2004-06-01 Fix CLOCK_REALTIME clock/timer TIMER_ABSTIME bug.
......
/* /*
* sched_clock.c: Generic sched_clock() support, to extend low level * Generic sched_clock() support, to extend low level hardware time
* hardware time counters to full 64-bit ns values. * counters to full 64-bit ns values.
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as * it under the terms of the GNU General Public License version 2 as
......
// SPDX-License-Identifier: GPL-2.0 // SPDX-License-Identifier: GPL-2.0
/* /*
* linux/kernel/time/tick-broadcast-hrtimer.c * Emulate a local clock event device via a pseudo clock device.
* This file emulates a local clock event device
* via a pseudo clock device.
*/ */
#include <linux/cpu.h> #include <linux/cpu.h>
#include <linux/err.h> #include <linux/err.h>
......
/* /*
* linux/kernel/time/tick-broadcast.c
*
* This file contains functions which emulate a local clock-event * This file contains functions which emulate a local clock-event
* device via a broadcast event source. * device via a broadcast event source.
* *
......
/* /*
* linux/kernel/time/tick-common.c
*
* This file contains the base functions to manage periodic tick * This file contains the base functions to manage periodic tick
* related events. * related events.
* *
......
/* /*
* linux/kernel/time/tick-oneshot.c
*
* This file contains functions which manage high resolution tick * This file contains functions which manage high resolution tick
* related events. * related events.
* *
......
/* /*
* linux/kernel/time/tick-sched.c
*
* Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de> * Copyright(C) 2005-2006, Thomas Gleixner <tglx@linutronix.de>
* Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar * Copyright(C) 2005-2007, Red Hat, Inc., Ingo Molnar
* Copyright(C) 2006-2007 Timesys Corp., Thomas Gleixner * Copyright(C) 2006-2007 Timesys Corp., Thomas Gleixner
......
/* /*
* linux/kernel/time.c
*
* Copyright (C) 1991, 1992 Linus Torvalds * Copyright (C) 1991, 1992 Linus Torvalds
* *
* This file contains the interface functions for the various * This file contains the interface functions for the various time related
* time related system calls: time, stime, gettimeofday, settimeofday, * system calls: time, stime, gettimeofday, settimeofday, adjtime
* adjtime *
*/ * Modification history:
/*
* Modification history kernel/time.c
* *
* 1993-09-02 Philip Gladstone * 1993-09-02 Philip Gladstone
* Created file with time related functions from sched/core.c and adjtimex() * Created file with time related functions from sched/core.c and adjtimex()
......
/* /*
* linux/kernel/time/timecounter.c * Based on clocksource code. See commit 74d23cc704d1
*
* based on code that migrated away from
* linux/kernel/time/clocksource.c
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
...@@ -14,7 +11,6 @@ ...@@ -14,7 +11,6 @@
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
*/ */
#include <linux/export.h> #include <linux/export.h>
#include <linux/timecounter.h> #include <linux/timecounter.h>
......
/* /*
* linux/kernel/time/timekeeping.c * Kernel timekeeping code and accessor functions. Based on code from
* * timer.c, moved in commit 8524070b7982.
* Kernel timekeeping code and accessor functions
*
* This code was moved from linux/kernel/timer.c.
* Please see that file for copyright and history logs.
*
*/ */
#include <linux/timekeeper_internal.h> #include <linux/timekeeper_internal.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
......
/* /*
* linux/kernel/timer.c
*
* Kernel internal timers * Kernel internal timers
* *
* Copyright (C) 1991, 1992 Linus Torvalds * Copyright (C) 1991, 1992 Linus Torvalds
......
/* /*
* kernel/time/timer_list.c
*
* List pending timers * List pending timers
* *
* Copyright(C) 2006, Red Hat, Inc., Ingo Molnar * Copyright(C) 2006, Red Hat, Inc., Ingo Molnar
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment