[<prev] [next>] [day] [month] [year] [list]
Message-ID: <169528907726.27769.17347276414076634078.tip-bot2@tip-bot2>
Date: Thu, 21 Sep 2023 09:37:57 -0000
From: "tip-bot2 for Ingo Molnar" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Ingo Molnar <mingo@...nel.org>, x86@...nel.org,
linux-kernel@...r.kernel.org
Subject: [tip: sched/core] sched/headers: Standardize the
<linux/sched/vhost_task.h> header guard name
The following commit has been merged into the sched/core branch of tip:
Commit-ID: 6eddb116dd830436afbd922568292867de6c8b9e
Gitweb: https://git.kernel.org/tip/6eddb116dd830436afbd922568292867de6c8b9e
Author: Ingo Molnar <mingo@...nel.org>
AuthorDate: Thu, 21 Sep 2023 11:24:17 +02:00
Committer: Ingo Molnar <mingo@...nel.org>
CommitterDate: Thu, 21 Sep 2023 11:25:51 +02:00
sched/headers: Standardize the <linux/sched/vhost_task.h> header guard name
Use the same _LINUX_SCHED_ prefix nomenclature as the other 29 header guards
in include/linux/sched/ do.
Signed-off-by: Ingo Molnar <mingo@...nel.org>
---
include/linux/sched/vhost_task.h | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/include/linux/sched/vhost_task.h b/include/linux/sched/vhost_task.h
index 837a236..bc60243 100644
--- a/include/linux/sched/vhost_task.h
+++ b/include/linux/sched/vhost_task.h
@@ -1,7 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0 */
-#ifndef _LINUX_VHOST_TASK_H
-#define _LINUX_VHOST_TASK_H
-
+#ifndef _LINUX_SCHED_VHOST_TASK_H
+#define _LINUX_SCHED_VHOST_TASK_H
struct vhost_task;
@@ -11,4 +10,4 @@ void vhost_task_start(struct vhost_task *vtsk);
void vhost_task_stop(struct vhost_task *vtsk);
void vhost_task_wake(struct vhost_task *vtsk);
-#endif
+#endif /* _LINUX_SCHED_VHOST_TASK_H */
Powered by blists - more mailing lists