diff options
author | Jimmy Vetayases <Jimmy.Vetayases@oracle.com> | 2010-06-24 09:34:22 -0700 |
---|---|---|
committer | Jimmy Vetayases <Jimmy.Vetayases@oracle.com> | 2010-06-24 09:34:22 -0700 |
commit | 7ff178cd8db129d385d3177eb20744d3b6efc59b (patch) | |
tree | 2104196adc12fdbdd7a78a325176de2cfad29a0c /usr/src/uts/intel/ia32/sys | |
parent | 4b31676f89e318c11400fc0c4defc802da29222f (diff) | |
download | illumos-joyent-7ff178cd8db129d385d3177eb20744d3b6efc59b.tar.gz |
PSARC/2009/505 IRM Framework Extension(s)
PSARC/2009/665 Pcitool Extensions
6669984 Solaris x86 need to provide large number of interrupt vectors for MSI/MSI-x
6866130 Interrupt Resource Management (IRM) support on x86 platforms
6876744 Need a new mdb debugger module for the new apix PSM
6881939 decouple current i86xpv interrupt implementation from i86pc
6916041 Pcitool Enhancement(1M) for the new apix PSM on X86
6957091 update pcitool(1m) manpage for 6916041
--HG--
rename : usr/src/cmd/mdb/i86pc/modules/pcplusmp/apic.c => usr/src/cmd/mdb/i86pc/modules/pcplusmp/pcplusmp.c
Diffstat (limited to 'usr/src/uts/intel/ia32/sys')
-rw-r--r-- | usr/src/uts/intel/ia32/sys/traptrace.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr/src/uts/intel/ia32/sys/traptrace.h b/usr/src/uts/intel/ia32/sys/traptrace.h index dc83c20187..3183f2f580 100644 --- a/usr/src/uts/intel/ia32/sys/traptrace.h +++ b/usr/src/uts/intel/ia32/sys/traptrace.h @@ -19,8 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2009 Sun Microsystems, Inc. All rights reserved. - * Use is subject to license terms. + * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. */ #ifndef _IA32_SYS_TRAPTRACE_H @@ -64,6 +63,7 @@ typedef struct { greg_t ttr_cr2; union _ttr_info { struct _idt_entry { + int cpuid; short vector; uchar_t ipl; uchar_t spl; @@ -81,6 +81,7 @@ typedef struct { pc_t ttr_stack[TTR_STACK_DEPTH]; } trap_trace_rec_t; +#define ttr_cpuid ttr_info.idt_entry.cpuid #define ttr_vector ttr_info.idt_entry.vector #define ttr_ipl ttr_info.idt_entry.ipl #define ttr_spl ttr_info.idt_entry.spl |