aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristos Margiolis <christos@FreeBSD.org>2023-06-03 20:03:14 +0000
committerChristos Margiolis <christos@FreeBSD.org>2023-06-03 20:03:14 +0000
commit47a5d58e3bba71094e5476295df96484bc633365 (patch)
tree02ecb6475f7b1f1a50face6c849b95dc09249605
parentd434607b3d5182d38b82f23fe0586b3744dd0273 (diff)
downloadsrc-47a5d58e3bba71094e5476295df96484bc633365.tar.gz
src-47a5d58e3bba71094e5476295df96484bc633365.zip
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
-rw-r--r--sys/cddl/dev/kinst/amd64/kinst_isa.h18
1 files 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_ */