[tip: x86/urgent] x86/entry/vdso: Fix path of included gettimeofday.c

tip-bot2 for Vladimir Oltean posted 1 patch 2 weeks ago
arch/x86/entry/vdso/common/vclock_gettime.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[tip: x86/urgent] x86/entry/vdso: Fix path of included gettimeofday.c
Posted by tip-bot2 for Vladimir Oltean 2 weeks ago
The following commit has been merged into the x86/urgent branch of tip:

Commit-ID:     63f8b60151dc00895137bfadc987f258060ab264
Gitweb:        https://git.kernel.org/tip/63f8b60151dc00895137bfadc987f258060ab264
Author:        Vladimir Oltean <vladimir.oltean@nxp.com>
AuthorDate:    Fri, 20 Mar 2026 17:06:53 +01:00
Committer:     Borislav Petkov (AMD) <bp@alien8.de>
CommitterDate: Fri, 20 Mar 2026 17:56:52 +01:00

x86/entry/vdso: Fix path of included gettimeofday.c

Commit in Fixes forgot to convert one include path to be relative to the
kernel source directory after adding latter to flags-y.

Fix it.

  [ bp: Rewrite commit message. ]

Fixes: 693c819fedcd ("x86/entry/vdso: Refactor the vdso build")
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Link: https://lore.kernel.org/r/20260307174406.1808981-1-vladimir.oltean@nxp.com
---
 arch/x86/entry/vdso/common/vclock_gettime.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/entry/vdso/common/vclock_gettime.c b/arch/x86/entry/vdso/common/vclock_gettime.c
index 027b7e8..57066f3 100644
--- a/arch/x86/entry/vdso/common/vclock_gettime.c
+++ b/arch/x86/entry/vdso/common/vclock_gettime.c
@@ -13,7 +13,7 @@
 #include <linux/types.h>
 #include <vdso/gettime.h>
 
-#include "../../../../lib/vdso/gettimeofday.c"
+#include "lib/vdso/gettimeofday.c"
 
 int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz)
 {