diff options
| author | Jimmy Vetayases <Jimmy.Vetayases@oracle.com> | 2010-07-14 15:35:18 -0700 |
|---|---|---|
| committer | Jimmy Vetayases <Jimmy.Vetayases@oracle.com> | 2010-07-14 15:35:18 -0700 |
| commit | 5cd376e8b7030707d78315f63adb4bb2b4d9963e (patch) | |
| tree | f37de932997297998d7cb923f3d1a025b7af52e4 /usr/src | |
| parent | 327151705b7439cb7ab35c370f682cac7ef9523a (diff) | |
| download | illumos-joyent-5cd376e8b7030707d78315f63adb4bb2b4d9963e.tar.gz | |
6968165 ::ioapic and ::apic should be limited to kmdb
6968169 missing start dates in some interrupt related files
Diffstat (limited to 'usr/src')
38 files changed, 43 insertions, 36 deletions
diff --git a/usr/src/cmd/intrd/intrd.pl b/usr/src/cmd/intrd/intrd.pl index 78276e34b3..cf68d5a9c9 100644 --- a/usr/src/cmd/intrd/intrd.pl +++ b/usr/src/cmd/intrd/intrd.pl @@ -21,7 +21,7 @@ # # -# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. # require 5.8.4; diff --git a/usr/src/cmd/mdb/i86pc/modules/Makefile b/usr/src/cmd/mdb/i86pc/modules/Makefile index 675a70b2a4..ff08f9c665 100644 --- a/usr/src/cmd/mdb/i86pc/modules/Makefile +++ b/usr/src/cmd/mdb/i86pc/modules/Makefile @@ -19,7 +19,7 @@ # CDDL HEADER END # # -# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. # SUBDIRS = \ apix \ diff --git a/usr/src/cmd/mdb/i86pc/modules/apix/apix.c b/usr/src/cmd/mdb/i86pc/modules/apix/apix.c index f17f6dacb3..62ede1fd26 100644 --- a/usr/src/cmd/mdb/i86pc/modules/apix/apix.c +++ b/usr/src/cmd/mdb/i86pc/modules/apix/apix.c @@ -152,8 +152,10 @@ static const mdb_dcmd_t dcmds[] = { interrupt_help}, { "softint", "?[-d]", "print soft interrupts", soft_interrupt_dump, soft_interrupt_help}, +#ifdef _KMDB { "apic", NULL, "print apic register contents", apic }, { "ioapic", NULL, "print ioapic register contents", ioapic }, +#endif /* _KMDB */ { NULL } }; diff --git a/usr/src/cmd/mdb/i86pc/modules/common/apic_common.c b/usr/src/cmd/mdb/i86pc/modules/common/apic_common.c index e4db9b61a5..3ca58c7592 100644 --- a/usr/src/cmd/mdb/i86pc/modules/common/apic_common.c +++ b/usr/src/cmd/mdb/i86pc/modules/common/apic_common.c @@ -24,6 +24,7 @@ #include "intr_common.h" +#ifdef _KMDB /* Macros for reading/writing the IOAPIC RDT entries */ #define APIC_READ_IOAPIC_RDT_ENTRY_LOW_DWORD(ioapic_ix, ipin) \ @@ -139,3 +140,5 @@ apic(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) return (DCMD_OK); } + +#endif /* _KMDB */ diff --git a/usr/src/cmd/mdb/i86pc/modules/common/intr_common.c b/usr/src/cmd/mdb/i86pc/modules/common/intr_common.c index 691f0c4064..00f6afcbf8 100644 --- a/usr/src/cmd/mdb/i86pc/modules/common/intr_common.c +++ b/usr/src/cmd/mdb/i86pc/modules/common/intr_common.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved. */ #include "intr_common.h" diff --git a/usr/src/cmd/mdb/i86pc/modules/common/intr_common.h b/usr/src/cmd/mdb/i86pc/modules/common/intr_common.h index c3f187f777..d2d92594ba 100644 --- a/usr/src/cmd/mdb/i86pc/modules/common/intr_common.h +++ b/usr/src/cmd/mdb/i86pc/modules/common/intr_common.h @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved. */ #ifndef _MDB_INTR_COMMON_H diff --git a/usr/src/cmd/mdb/i86pc/modules/pcplusmp/amd64/Makefile b/usr/src/cmd/mdb/i86pc/modules/pcplusmp/amd64/Makefile index 04542d0fe1..ba3f361c2f 100644 --- a/usr/src/cmd/mdb/i86pc/modules/pcplusmp/amd64/Makefile +++ b/usr/src/cmd/mdb/i86pc/modules/pcplusmp/amd64/Makefile @@ -19,7 +19,7 @@ # CDDL HEADER END # # -# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. # MODULE = pcplusmp.so diff --git a/usr/src/cmd/mdb/i86pc/modules/pcplusmp/ia32/Makefile b/usr/src/cmd/mdb/i86pc/modules/pcplusmp/ia32/Makefile index 46899c52a1..c2bd1f6d91 100644 --- a/usr/src/cmd/mdb/i86pc/modules/pcplusmp/ia32/Makefile +++ b/usr/src/cmd/mdb/i86pc/modules/pcplusmp/ia32/Makefile @@ -19,7 +19,7 @@ # CDDL HEADER END # # -# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. # MODULE = pcplusmp.so diff --git a/usr/src/cmd/mdb/i86pc/modules/pcplusmp/pcplusmp.c b/usr/src/cmd/mdb/i86pc/modules/pcplusmp/pcplusmp.c index f5b3af0027..9dbf703afd 100644 --- a/usr/src/cmd/mdb/i86pc/modules/pcplusmp/pcplusmp.c +++ b/usr/src/cmd/mdb/i86pc/modules/pcplusmp/pcplusmp.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. */ #include "intr_common.h" @@ -97,8 +97,10 @@ static const mdb_dcmd_t dcmds[] = { interrupt_help}, { "softint", "?[-d]", "print soft interrupts", soft_interrupt_dump, soft_interrupt_help}, +#ifdef _KMDB { "apic", NULL, "print apic register contents", apic }, { "ioapic", NULL, "print ioapic register contents", ioapic }, +#endif /* _KMDB */ { NULL } }; diff --git a/usr/src/cmd/mdb/i86pc/modules/unix/unix.c b/usr/src/cmd/mdb/i86pc/modules/unix/unix.c index f73594ef22..d774cde91f 100644 --- a/usr/src/cmd/mdb/i86pc/modules/unix/unix.c +++ b/usr/src/cmd/mdb/i86pc/modules/unix/unix.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. */ #include <mdb/mdb_modapi.h> diff --git a/usr/src/cmd/mdb/i86pc/modules/uppc/uppc.c b/usr/src/cmd/mdb/i86pc/modules/uppc/uppc.c index c198d257d3..d3ebde66b3 100644 --- a/usr/src/cmd/mdb/i86pc/modules/uppc/uppc.c +++ b/usr/src/cmd/mdb/i86pc/modules/uppc/uppc.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. */ #include "intr_common.h" diff --git a/usr/src/cmd/pcitool/pcitool_ui.c b/usr/src/cmd/pcitool/pcitool_ui.c index 4a44c528a9..d47fe7fefa 100644 --- a/usr/src/cmd/pcitool/pcitool_ui.c +++ b/usr/src/cmd/pcitool/pcitool_ui.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. */ /* diff --git a/usr/src/cmd/pcitool/pcitool_ui.h b/usr/src/cmd/pcitool/pcitool_ui.h index b916d47b09..65ef6ffc96 100644 --- a/usr/src/cmd/pcitool/pcitool_ui.h +++ b/usr/src/cmd/pcitool/pcitool_ui.h @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. */ #ifndef _PCITOOL_UI_H diff --git a/usr/src/cmd/pcitool/pcitool_usage.c b/usr/src/cmd/pcitool/pcitool_usage.c index 1781d973ce..6e7c73b7b2 100644 --- a/usr/src/cmd/pcitool/pcitool_usage.c +++ b/usr/src/cmd/pcitool/pcitool_usage.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. */ #ifndef _PCITOOL_USAGE_TEXT_H diff --git a/usr/src/cmd/perl/contrib/Sun/Solaris/Intrs/Intrs.pm b/usr/src/cmd/perl/contrib/Sun/Solaris/Intrs/Intrs.pm index b406bd386a..e2b707dc78 100644 --- a/usr/src/cmd/perl/contrib/Sun/Solaris/Intrs/Intrs.pm +++ b/usr/src/cmd/perl/contrib/Sun/Solaris/Intrs/Intrs.pm @@ -18,7 +18,7 @@ # CDDL HEADER END # -# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. # # Intrs.pm provides the bootstrap for the private Sun::Solaris::Intrs module. # diff --git a/usr/src/uts/common/io/avintr.c b/usr/src/uts/common/io/avintr.c index 59d35310a3..71c2ce6dfb 100644 --- a/usr/src/uts/common/io/avintr.c +++ b/usr/src/uts/common/io/avintr.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved. */ /* diff --git a/usr/src/uts/common/io/mac/mac_util.c b/usr/src/uts/common/io/mac/mac_util.c index 3d1c34b5a0..e83af37f16 100644 --- a/usr/src/uts/common/io/mac/mac_util.c +++ b/usr/src/uts/common/io/mac/mac_util.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved. */ /* diff --git a/usr/src/uts/common/io/pci-ide/pci-ide.c b/usr/src/uts/common/io/pci-ide/pci-ide.c index e25a5ffc1b..c885fed6a0 100644 --- a/usr/src/uts/common/io/pci-ide/pci-ide.c +++ b/usr/src/uts/common/io/pci-ide/pci-ide.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. */ diff --git a/usr/src/uts/common/sys/avintr.h b/usr/src/uts/common/sys/avintr.h index 1dc3825f6b..b0b42f6c28 100644 --- a/usr/src/uts/common/sys/avintr.h +++ b/usr/src/uts/common/sys/avintr.h @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved. */ #ifndef _SYS_AVINTR_H diff --git a/usr/src/uts/common/sys/pci_tools.h b/usr/src/uts/common/sys/pci_tools.h index 919b1e75ae..1e58bf449c 100644 --- a/usr/src/uts/common/sys/pci_tools.h +++ b/usr/src/uts/common/sys/pci_tools.h @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. */ #ifndef _SYS_PCI_TOOLS_H diff --git a/usr/src/uts/common/sys/sunndi.h b/usr/src/uts/common/sys/sunndi.h index 6b28ba698f..e6a998322d 100644 --- a/usr/src/uts/common/sys/sunndi.h +++ b/usr/src/uts/common/sys/sunndi.h @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved. */ #ifndef _SYS_SUNNDI_H diff --git a/usr/src/uts/i86pc/Makefile.i86pc.shared b/usr/src/uts/i86pc/Makefile.i86pc.shared index f41e91a4fc..9b910c35ef 100644 --- a/usr/src/uts/i86pc/Makefile.i86pc.shared +++ b/usr/src/uts/i86pc/Makefile.i86pc.shared @@ -22,7 +22,7 @@ # # uts/i86pc/Makefile.i86pc # -# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. # # # This makefile contains the common definitions for the i86pc unix diff --git a/usr/src/uts/i86pc/Makefile.rules b/usr/src/uts/i86pc/Makefile.rules index dfff27de9f..604a2fb2c5 100644 --- a/usr/src/uts/i86pc/Makefile.rules +++ b/usr/src/uts/i86pc/Makefile.rules @@ -20,7 +20,7 @@ # # -# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved. # # This Makefile defines the build rules for the directory uts/i86pc diff --git a/usr/src/uts/i86pc/io/hpet_acpi.c b/usr/src/uts/i86pc/io/hpet_acpi.c index 8b33cafc8a..b618e491e7 100644 --- a/usr/src/uts/i86pc/io/hpet_acpi.c +++ b/usr/src/uts/i86pc/io/hpet_acpi.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. */ #include <sys/hpet_acpi.h> diff --git a/usr/src/uts/i86pc/io/isa.c b/usr/src/uts/i86pc/io/isa.c index aa5cea74f1..d2bb59ca99 100644 --- a/usr/src/uts/i86pc/io/isa.c +++ b/usr/src/uts/i86pc/io/isa.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved. */ /* diff --git a/usr/src/uts/i86pc/io/pci/pci_common.c b/usr/src/uts/i86pc/io/pci/pci_common.c index ad689868bc..1cea07237f 100644 --- a/usr/src/uts/i86pc/io/pci/pci_common.c +++ b/usr/src/uts/i86pc/io/pci/pci_common.c @@ -20,7 +20,7 @@ */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. */ /* diff --git a/usr/src/uts/i86pc/io/pci/pci_kstats.c b/usr/src/uts/i86pc/io/pci/pci_kstats.c index ea7fcc9dc1..6a8c365c06 100644 --- a/usr/src/uts/i86pc/io/pci/pci_kstats.c +++ b/usr/src/uts/i86pc/io/pci/pci_kstats.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. */ /* * Kstat support for X86 PCI driver diff --git a/usr/src/uts/i86pc/ml/interrupt.s b/usr/src/uts/i86pc/ml/interrupt.s index 97f5acba2d..46cbf2f308 100644 --- a/usr/src/uts/i86pc/ml/interrupt.s +++ b/usr/src/uts/i86pc/ml/interrupt.s @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved. */ /* Copyright (c) 1990, 1991 UNIX System Laboratories, Inc. */ diff --git a/usr/src/uts/i86pc/os/intr.c b/usr/src/uts/i86pc/os/intr.c index faaecd20b6..91d7afcf36 100644 --- a/usr/src/uts/i86pc/os/intr.c +++ b/usr/src/uts/i86pc/os/intr.c @@ -20,7 +20,7 @@ */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved. */ #include <sys/cpuvar.h> diff --git a/usr/src/uts/i86pc/os/machdep.c b/usr/src/uts/i86pc/os/machdep.c index 38c9f7159f..d56ad1fe1b 100644 --- a/usr/src/uts/i86pc/os/machdep.c +++ b/usr/src/uts/i86pc/os/machdep.c @@ -20,7 +20,7 @@ */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved. */ /* * Copyright (c) 2010, Intel Corporation. diff --git a/usr/src/uts/i86pc/os/mp_machdep.c b/usr/src/uts/i86pc/os/mp_machdep.c index 9f9c3aae4a..dfa49538c9 100644 --- a/usr/src/uts/i86pc/os/mp_machdep.c +++ b/usr/src/uts/i86pc/os/mp_machdep.c @@ -20,7 +20,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved. */ /* * Copyright (c) 2009-2010, Intel Corporation. diff --git a/usr/src/uts/i86pc/os/trap.c b/usr/src/uts/i86pc/os/trap.c index a004b73055..af35ddf1b8 100644 --- a/usr/src/uts/i86pc/os/trap.c +++ b/usr/src/uts/i86pc/os/trap.c @@ -20,7 +20,7 @@ */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved. */ /* Copyright (c) 1990, 1991 UNIX System Laboratories, Inc. */ diff --git a/usr/src/uts/i86pc/sys/hpet_acpi.h b/usr/src/uts/i86pc/sys/hpet_acpi.h index 078f4e73b3..e60ebe4bba 100644 --- a/usr/src/uts/i86pc/sys/hpet_acpi.h +++ b/usr/src/uts/i86pc/sys/hpet_acpi.h @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. */ #ifndef _HPET_ACPI_H diff --git a/usr/src/uts/i86pc/sys/machsystm.h b/usr/src/uts/i86pc/sys/machsystm.h index a783e942f7..e61f1baa84 100644 --- a/usr/src/uts/i86pc/sys/machsystm.h +++ b/usr/src/uts/i86pc/sys/machsystm.h @@ -20,7 +20,7 @@ */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1993, 2010, Oracle and/or its affiliates. All rights reserved. */ /* * Copyright (c) 2010, Intel Corporation. diff --git a/usr/src/uts/i86pc/sys/smp_impldefs.h b/usr/src/uts/i86pc/sys/smp_impldefs.h index 6afce7fd6c..77a203042c 100644 --- a/usr/src/uts/i86pc/sys/smp_impldefs.h +++ b/usr/src/uts/i86pc/sys/smp_impldefs.h @@ -20,7 +20,7 @@ */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1993, 2010, Oracle and/or its affiliates. All rights reserved. */ #ifndef _SYS_SMP_IMPLDEFS_H diff --git a/usr/src/uts/i86xpv/Makefile.files b/usr/src/uts/i86xpv/Makefile.files index 3735a03f45..3b92ef75c9 100644 --- a/usr/src/uts/i86xpv/Makefile.files +++ b/usr/src/uts/i86xpv/Makefile.files @@ -20,7 +20,7 @@ # # -# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. # # This Makefile defines file modules in the directory uts/i86xpv diff --git a/usr/src/uts/intel/ia32/sys/traptrace.h b/usr/src/uts/intel/ia32/sys/traptrace.h index 3183f2f580..8edce6ff38 100644 --- a/usr/src/uts/intel/ia32/sys/traptrace.h +++ b/usr/src/uts/intel/ia32/sys/traptrace.h @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. */ #ifndef _IA32_SYS_TRAPTRACE_H diff --git a/usr/src/uts/intel/os/mach b/usr/src/uts/intel/os/mach index ccec5ddf21..c8ed05d81b 100644 --- a/usr/src/uts/intel/os/mach +++ b/usr/src/uts/intel/os/mach @@ -19,7 +19,7 @@ # # -# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 1993, 2010, Oracle and/or its affiliates. All rights reserved. # # |
