The branch main has been updated by christos:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=47a5d58e3bba71094e5476295df96484bc633365

commit 47a5d58e3bba71094e5476295df96484bc633365
Author:     Christos Margiolis <chris...@freebsd.org>
AuthorDate: 2023-06-03 20:03:14 +0000
Commit:     Christos Margiolis <chris...@freebsd.org>
CommitDate: 2023-06-03 20:03:14 +0000

    kinst: fix kinst_probe_md field indentation
    
    Reviewed by:    markj
    Approved by:    markj (mentor)
    Sponsored by:   The FreeBSD Foundation
    Differential Revision:  https://reviews.freebsd.org/D40411
---
 sys/cddl/dev/kinst/amd64/kinst_isa.h | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/sys/cddl/dev/kinst/amd64/kinst_isa.h 
b/sys/cddl/dev/kinst/amd64/kinst_isa.h
index bd7d40f4bd06..6e8eb10fb71c 100644
--- a/sys/cddl/dev/kinst/amd64/kinst_isa.h
+++ b/sys/cddl/dev/kinst/amd64/kinst_isa.h
@@ -23,17 +23,17 @@
 typedef uint8_t kinst_patchval_t;
 
 struct kinst_probe_md {
-       int                     flags;
-       int                     instlen;        /* original instr len */
-       int                     tinstlen;       /* trampoline instr len */
-       uint8_t                 template[16];   /* copied into thread tramps */
-       int                     dispoff;        /* offset of rip displacement */
+       int     flags;
+       int     instlen;        /* original instr len */
+       int     tinstlen;       /* trampoline instr len */
+       uint8_t template[16];   /* copied into thread tramps */
+       int     dispoff;        /* offset of rip displacement */
 
        /* operands to "call" instruction branch target */
-       int                     reg1;
-       int                     reg2;
-       int                     scale;
-       int64_t                 disp;
+       int     reg1;
+       int     reg2;
+       int     scale;
+       int64_t disp;
 };
 
 #endif /* _KINST_ISA_H_ */

Reply via email to