Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 26 May 2021 19:28:43 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 876ffe28796c - stable/13 - amd64/linux*: add required header to get the constant value
Message-ID:  <202105261928.14QJShD9059552@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=876ffe28796c4a81fbedcdaa4d7e4527cd1c79c5

commit 876ffe28796c4a81fbedcdaa4d7e4527cd1c79c5
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2021-05-25 22:19:44 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2021-05-26 19:18:54 +0000

    amd64/linux*: add required header to get the constant value
    
    Otherwise asm silently interpret it as the external global symbol.
    
    Reported by:    bz
    Sponsored by:   The FreeBSD Foundation
    Fixes:  91aae953cb80
    
    (cherry picked from commit a59f0285377aa3d61cccda64e9ade126ecb3d2d9)
---
 sys/amd64/linux/linux_support.s     | 1 +
 sys/amd64/linux32/linux32_support.s | 1 +
 2 files changed, 2 insertions(+)

diff --git a/sys/amd64/linux/linux_support.s b/sys/amd64/linux/linux_support.s
index bb1c218bdf89..79e361867f1d 100644
--- a/sys/amd64/linux/linux_support.s
+++ b/sys/amd64/linux/linux_support.s
@@ -30,6 +30,7 @@
 
 #include "linux_assym.h"		/* system definitions */
 #include <machine/asmacros.h>		/* miscellaneous asm macros */
+#include <machine/specialreg.h>
 
 #include "assym.inc"
 
diff --git a/sys/amd64/linux32/linux32_support.s b/sys/amd64/linux32/linux32_support.s
index 86f3d11b552b..2e2dbca4e24b 100644
--- a/sys/amd64/linux32/linux32_support.s
+++ b/sys/amd64/linux32/linux32_support.s
@@ -30,6 +30,7 @@
 
 #include "linux32_assym.h"		/* system definitions */
 #include <machine/asmacros.h>		/* miscellaneous asm macros */
+#include <machine/specialreg.h>
 
 #include "assym.inc"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202105261928.14QJShD9059552>