git: b10b9523f616 - main - kern: fix naming for some AST-handler bits

From: Kyle Evans <kevans_at_FreeBSD.org>
Date: Wed, 11 Dec 2024 00:37:25 UTC
The branch main has been updated by kevans:

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

commit b10b9523f616bbb3eb993af98ac2742e10025e84
Author:     Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2024-12-11 00:33:54 +0000
Commit:     Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2024-12-11 00:37:17 +0000

    kern: fix naming for some AST-handler bits
    
    These were typo'd at creation, and they should've used the common
    TDA_ prefix.  Switch them now.  No compat shims because these are niche
    enough that it seems unlikely that they've seen large adoption under the
    wrong name.
    
    OK'd by:        kib
    Fixes:  c6d31b83 ("AST: rework")
---
 sys/sys/proc.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/sys/proc.h b/sys/sys/proc.h
index 3422f75172f0..df7ce6de91d9 100644
--- a/sys/sys/proc.h
+++ b/sys/sys/proc.h
@@ -493,14 +493,14 @@ enum {
 	TDA_KQUEUE,
 	TDA_RACCT,
 	TDA_MOD1,		/* For third party use, before signals are */
-	TAD_MOD2,		/* processed .. */
+	TDA_MOD2,		/* processed .. */
 	TDA_PSELECT,		/* For discarding temporary signal mask */
 	TDA_SIG,
 	TDA_KTRACE,
 	TDA_SUSPEND,
 	TDA_SIGSUSPEND,
 	TDA_MOD3,		/* .. and after */
-	TAD_MOD4,
+	TDA_MOD4,
 	TDA_MAX,
 };
 #define	TDAI(tda)		(1U << (tda))