From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751417AbeAPDoj (ORCPT + 1 other); Mon, 15 Jan 2018 22:44:39 -0500 Received: from terminus.zytor.com ([65.50.211.136]:45719 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751110AbeAPDog (ORCPT ); Mon, 15 Jan 2018 22:44:36 -0500 Date: Mon, 15 Jan 2018 19:41:17 -0800 From: tip-bot for Anna-Maria Gleixner Message-ID: Cc: john.stultz@linaro.org, torvalds@linux-foundation.org, hch@lst.de, linux-kernel@vger.kernel.org, hpa@zytor.com, anna-maria@linutronix.de, peterz@infradead.org, tglx@linutronix.de, mingo@kernel.org Reply-To: hch@lst.de, torvalds@linux-foundation.org, john.stultz@linaro.org, linux-kernel@vger.kernel.org, hpa@zytor.com, peterz@infradead.org, tglx@linutronix.de, anna-maria@linutronix.de, mingo@kernel.org In-Reply-To: <20171221104205.7269-4-anna-maria@linutronix.de> References: <20171221104205.7269-4-anna-maria@linutronix.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:timers/core] hrtimer: Fix kerneldoc syntax for 'struct hrtimer_cpu_base' Git-Commit-ID: 1fbc78b3c980364d4fc15db83eca4a8e7ad289da X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: Commit-ID: 1fbc78b3c980364d4fc15db83eca4a8e7ad289da Gitweb: https://git.kernel.org/tip/1fbc78b3c980364d4fc15db83eca4a8e7ad289da Author: Anna-Maria Gleixner AuthorDate: Thu, 21 Dec 2017 11:41:32 +0100 Committer: Ingo Molnar CommitDate: Tue, 16 Jan 2018 02:35:44 +0100 hrtimer: Fix kerneldoc syntax for 'struct hrtimer_cpu_base' The '/**' sequence marks the start of a structure description. Add the missing second asterisk. While at it adapt the ordering of the struct members to the struct definition and document the purpose of expires_next more precisely. Signed-off-by: Anna-Maria Gleixner Cc: Christoph Hellwig Cc: John Stultz Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Cc: keescook@chromium.org Link: http://lkml.kernel.org/r/20171221104205.7269-4-anna-maria@linutronix.de Signed-off-by: Ingo Molnar --- include/linux/hrtimer.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h index 79b2a8d..b3a382b 100644 --- a/include/linux/hrtimer.h +++ b/include/linux/hrtimer.h @@ -144,7 +144,7 @@ enum hrtimer_base_type { HRTIMER_MAX_CLOCK_BASES, }; -/* +/** * struct hrtimer_cpu_base - the per cpu clock bases * @lock: lock protecting the base and associated clock bases * and timers @@ -153,12 +153,12 @@ enum hrtimer_base_type { * @cpu: cpu number * @active_bases: Bitfield to mark bases with active timers * @clock_was_set_seq: Sequence counter of clock was set events - * @expires_next: absolute time of the next event which was scheduled - * via clock_set_next_event() - * @next_timer: Pointer to the first expiring timer * @in_hrtirq: hrtimer_interrupt() is currently executing * @hres_active: State of high resolution mode * @hang_detected: The last hrtimer interrupt detected a hang + * @expires_next: absolute time of the next event, is required for remote + * hrtimer enqueue + * @next_timer: Pointer to the first expiring timer * @nr_events: Total number of hrtimer interrupt events * @nr_retries: Total number of hrtimer interrupt retries * @nr_hangs: Total number of hrtimer interrupt hangs