1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-18 15:30:21 +00:00

The interrupt nesting level is per-thread not per-CPU on FreeBSD.

This commit is contained in:
John Baldwin 2001-11-14 01:00:40 +00:00
parent 4082a49c1e
commit b9c1b06bd7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=86336
2 changed files with 0 additions and 2 deletions

View File

@ -55,7 +55,6 @@ struct globaldata {
int gd_inside_intr;
u_int32_t gd_next_asn; /* next ASN to allocate */
u_int32_t gd_current_asngen; /* ASN rollover check */
u_int32_t gd_intr_nesting_level; /* interrupt recursion */
SLIST_ENTRY(globaldata) gd_allcpu;
struct lock_list_entry *gd_spinlocks;

View File

@ -55,7 +55,6 @@ struct globaldata {
int gd_inside_intr;
u_int32_t gd_next_asn; /* next ASN to allocate */
u_int32_t gd_current_asngen; /* ASN rollover check */
u_int32_t gd_intr_nesting_level; /* interrupt recursion */
SLIST_ENTRY(globaldata) gd_allcpu;
struct lock_list_entry *gd_spinlocks;