Module Name: src
Committed By: simonb
Date: Tue Feb 16 05:11:27 UTC 2021
Modified Files:
src/sys/arch/mips/include: intr.h
Log Message:
Add no-profiled attribute for splhigh_noprof() and splx_noprof().
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/arch/mips/include/intr.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/mips/include/intr.h
diff -u src/sys/arch/mips/include/intr.h:1.12 src/sys/arch/mips/include/intr.h:1.13
--- src/sys/arch/mips/include/intr.h:1.12 Mon Aug 17 14:17:49 2020
+++ src/sys/arch/mips/include/intr.h Tue Feb 16 05:11:26 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.h,v 1.12 2020/08/17 14:17:49 skrll Exp $ */
+/* $NetBSD: intr.h,v 1.13 2021/02/16 05:11:26 simonb Exp $ */
/*-
* Copyright (c) 2009, 2010 The NetBSD Foundation, Inc.
@@ -125,7 +125,7 @@ extern struct ipl_sr_map ipl_sr_map;
#endif /* __INTR_PRIVATE */
int splhigh(void);
-int splhigh_noprof(void);
+int __noprofile splhigh_noprof(void);
int splsched(void);
int splvm(void);
int splsoftserial(void);
@@ -134,7 +134,7 @@ int splsoftbio(void);
int splsoftclock(void);
int splraise(int);
void splx(int);
-void splx_noprof(int);
+void __noprofile splx_noprof(int);
void spl0(void);
int splintr(uint32_t *);
void _setsoftintr(uint32_t);