Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/amd64 __KERNEL_RCSID()



details:   https://anonhg.NetBSD.org/src/rev/754e5c731493
branches:  trunk
changeset: 549490:754e5c731493
user:      lukem <lukem%NetBSD.org@localhost>
date:      Mon Jul 14 23:32:28 2003 +0000

description:
__KERNEL_RCSID()

diffstat:

 sys/arch/amd64/acpi/acpi_wakeup.c       |  5 ++++-
 sys/arch/amd64/amd64/autoconf.c         |  5 ++++-
 sys/arch/amd64/amd64/bios32.c           |  5 ++++-
 sys/arch/amd64/amd64/cpu.c              |  5 ++++-
 sys/arch/amd64/amd64/disksubr.c         |  5 ++++-
 sys/arch/amd64/amd64/fpu.c              |  5 ++++-
 sys/arch/amd64/amd64/gdt.c              |  5 ++++-
 sys/arch/amd64/amd64/identcpu.c         |  5 ++++-
 sys/arch/amd64/amd64/ipifuncs.c         |  3 ++-
 sys/arch/amd64/amd64/machdep.c          |  5 ++++-
 sys/arch/amd64/amd64/mainbus.c          |  5 ++++-
 sys/arch/amd64/amd64/mem.c              |  5 ++++-
 sys/arch/amd64/amd64/netbsd32_machdep.c |  5 ++++-
 sys/arch/amd64/amd64/netbsd32_syscall.c |  5 ++++-
 sys/arch/amd64/amd64/pmap.c             |  5 ++++-
 sys/arch/amd64/amd64/process_machdep.c  |  5 ++++-
 sys/arch/amd64/amd64/procfs_machdep.c   |  5 ++++-
 sys/arch/amd64/amd64/sys_machdep.c      |  5 ++++-
 sys/arch/amd64/amd64/syscall.c          |  5 ++++-
 sys/arch/amd64/amd64/trap.c             |  5 ++++-
 sys/arch/amd64/amd64/vm_machdep.c       |  5 ++++-
 sys/arch/amd64/pci/aapic.c              |  5 ++++-
 sys/arch/amd64/pci/pchb.c               |  5 ++++-
 sys/arch/amd64/pci/pcib.c               |  5 ++++-
 sys/arch/amd64/pci/pciide_machdep.c     |  5 ++++-
 25 files changed, 98 insertions(+), 25 deletions(-)

diffs (truncated from 459 to 300 lines):

diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/acpi/acpi_wakeup.c
--- a/sys/arch/amd64/acpi/acpi_wakeup.c Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/acpi/acpi_wakeup.c Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,7 @@
-/*     $NetBSD: acpi_wakeup.c,v 1.1 2003/05/11 21:39:41 fvdl Exp $     */
+/*     $NetBSD: acpi_wakeup.c,v 1.2 2003/07/14 23:32:28 lukem Exp $    */
+
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: acpi_wakeup.c,v 1.2 2003/07/14 23:32:28 lukem Exp $");
 
 #include <sys/types.h>
 #include <sys/systm.h>
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/autoconf.c
--- a/sys/arch/amd64/amd64/autoconf.c   Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/autoconf.c   Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: autoconf.c,v 1.3 2003/06/23 11:01:02 martin Exp $      */
+/*     $NetBSD: autoconf.c,v 1.4 2003/07/14 23:32:29 lukem Exp $       */
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -47,6 +47,9 @@
  * and the drivers are initialized.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.4 2003/07/14 23:32:29 lukem Exp $");
+
 #include "opt_multiprocessor.h"
 
 #include <sys/param.h>
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/bios32.c
--- a/sys/arch/amd64/amd64/bios32.c     Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/bios32.c     Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bios32.c,v 1.1 2003/04/26 18:39:26 fvdl Exp $  */
+/*     $NetBSD: bios32.c,v 1.2 2003/07/14 23:32:29 lukem Exp $ */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -66,6 +66,9 @@
  * Basic interface to BIOS32 services.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: bios32.c,v 1.2 2003/07/14 23:32:29 lukem Exp $");
+
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/device.h> 
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/cpu.c
--- a/sys/arch/amd64/amd64/cpu.c        Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/cpu.c        Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: cpu.c,v 1.1 2003/04/26 18:39:26 fvdl Exp $ */
+/* $NetBSD: cpu.c,v 1.2 2003/07/14 23:32:30 lukem Exp $ */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -70,6 +70,9 @@
  * SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.2 2003/07/14 23:32:30 lukem Exp $");
+
 #include "opt_ddb.h"
 #include "opt_multiprocessor.h"
 #include "opt_mpbios.h"                /* for MPDEBUG */
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/disksubr.c
--- a/sys/arch/amd64/amd64/disksubr.c   Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/disksubr.c   Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: disksubr.c,v 1.5 2003/05/10 23:12:29 thorpej Exp $     */
+/*     $NetBSD: disksubr.c,v 1.6 2003/07/14 23:32:30 lukem Exp $       */
 
 /*
  * Copyright (c) 1982, 1986, 1988 Regents of the University of California.
@@ -40,6 +40,9 @@
  * scheme is used. If not, it can be shared.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: disksubr.c,v 1.6 2003/07/14 23:32:30 lukem Exp $");
+
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/buf.h>
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/fpu.c
--- a/sys/arch/amd64/amd64/fpu.c        Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/fpu.c        Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fpu.c,v 1.2 2003/06/23 11:01:02 martin Exp $   */
+/*     $NetBSD: fpu.c,v 1.3 2003/07/14 23:32:30 lukem Exp $    */
 
 /*-
  * Copyright (c) 1994, 1995, 1998 Charles M. Hannum.  All rights reserved.
@@ -41,6 +41,9 @@
  * XXXfvdl update copyright notice. this started out as a stripped isa/npx.c
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: fpu.c,v 1.3 2003/07/14 23:32:30 lukem Exp $");
+
 #include "opt_multiprocessor.h"
 
 #include <sys/param.h>
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/gdt.c
--- a/sys/arch/amd64/amd64/gdt.c        Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/gdt.c        Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: gdt.c,v 1.2 2003/06/23 11:01:02 martin Exp $   */
+/*     $NetBSD: gdt.c,v 1.3 2003/07/14 23:32:30 lukem Exp $    */
 
 /*-
  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -43,6 +43,9 @@
  * can be hidden in macros.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: gdt.c,v 1.3 2003/07/14 23:32:30 lukem Exp $");
+
 #include "opt_multiprocessor.h"
 
 #include <sys/param.h>
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/identcpu.c
--- a/sys/arch/amd64/amd64/identcpu.c   Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/identcpu.c   Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: identcpu.c,v 1.1 2003/04/26 18:39:28 fvdl Exp $        */
+/*     $NetBSD: identcpu.c,v 1.2 2003/07/14 23:32:30 lukem Exp $       */
 
 /*
  * Copyright (c) 2003 Wasabi Systems, Inc.
@@ -35,6 +35,9 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: identcpu.c,v 1.2 2003/07/14 23:32:30 lukem Exp $");
+
 #include <sys/types.h>
 #include <sys/systm.h>
 #include <machine/cpu.h>
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/ipifuncs.c
--- a/sys/arch/amd64/amd64/ipifuncs.c   Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/ipifuncs.c   Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ipifuncs.c,v 1.2 2003/06/23 11:01:02 martin Exp $ */
+/*     $NetBSD: ipifuncs.c,v 1.3 2003/07/14 23:32:30 lukem Exp $ */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -40,6 +40,7 @@
 
 
 #include <sys/cdefs.h>                 /* RCS ID & Copyright macro defns */
+__KERNEL_RCSID(0, "$NetBSD: ipifuncs.c,v 1.3 2003/07/14 23:32:30 lukem Exp $");
 
 /*
  * Interprocessor interrupt handlers.
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/machdep.c
--- a/sys/arch/amd64/amd64/machdep.c    Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/machdep.c    Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.4 2003/06/23 11:01:02 martin Exp $       */
+/*     $NetBSD: machdep.c,v 1.5 2003/07/14 23:32:31 lukem Exp $        */
 
 /*-
  * Copyright (c) 1996, 1997, 1998, 2000 The NetBSD Foundation, Inc.
@@ -75,6 +75,9 @@
  *     @(#)machdep.c   7.4 (Berkeley) 6/3/91
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.5 2003/07/14 23:32:31 lukem Exp $");
+
 #include "opt_user_ldt.h"
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/mainbus.c
--- a/sys/arch/amd64/amd64/mainbus.c    Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/mainbus.c    Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mainbus.c,v 1.6 2003/06/15 23:08:55 fvdl Exp $ */
+/*     $NetBSD: mainbus.c,v 1.7 2003/07/14 23:32:31 lukem Exp $        */
 
 /*
  * Copyright (c) 1996 Christopher G. Demetriou.  All rights reserved.
@@ -30,6 +30,9 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: mainbus.c,v 1.7 2003/07/14 23:32:31 lukem Exp $");
+
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/device.h>
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/mem.c
--- a/sys/arch/amd64/amd64/mem.c        Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/mem.c        Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mem.c,v 1.1 2003/04/26 18:39:29 fvdl Exp $     */
+/*     $NetBSD: mem.c,v 1.2 2003/07/14 23:32:31 lukem Exp $    */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -40,6 +40,9 @@
  *     @(#)mem.c       8.3 (Berkeley) 1/12/94
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: mem.c,v 1.2 2003/07/14 23:32:31 lukem Exp $");
+
 #include "opt_compat_netbsd.h"
 
 /*
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/netbsd32_machdep.c
--- a/sys/arch/amd64/amd64/netbsd32_machdep.c   Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/netbsd32_machdep.c   Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netbsd32_machdep.c,v 1.2 2003/06/23 11:01:03 martin Exp $      */
+/*     $NetBSD: netbsd32_machdep.c,v 1.3 2003/07/14 23:32:31 lukem Exp $       */
 
 /*
  * Copyright (c) 2001 Wasabi Systems, Inc.
@@ -35,6 +35,9 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_machdep.c,v 1.3 2003/07/14 23:32:31 lukem Exp $");
+
 #include "opt_compat_netbsd.h"
 #include "opt_user_ldt.h"
 
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/netbsd32_syscall.c
--- a/sys/arch/amd64/amd64/netbsd32_syscall.c   Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/netbsd32_syscall.c   Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netbsd32_syscall.c,v 1.1 2003/04/26 18:39:31 fvdl Exp $        */
+/*     $NetBSD: netbsd32_syscall.c,v 1.2 2003/07/14 23:32:32 lukem Exp $       */
 
 /*-
  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@@ -36,6 +36,9 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscall.c,v 1.2 2003/07/14 23:32:32 lukem Exp $");
+
 #include "opt_syscall_debug.h"
 #include "opt_ktrace.h"
 #include "opt_systrace.h"
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/pmap.c
--- a/sys/arch/amd64/amd64/pmap.c       Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/pmap.c       Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.6 2003/06/23 11:01:03 martin Exp $  */
+/*     $NetBSD: pmap.c,v 1.7 2003/07/14 23:32:32 lukem Exp $   */
 
 /*
  *
@@ -107,6 +107,9 @@
  *     (NetBSD/alpha).
  */
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.7 2003/07/14 23:32:32 lukem Exp $");
+
 #ifndef __x86_64__
 #include "opt_cputype.h"
 #endif
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/process_machdep.c
--- a/sys/arch/amd64/amd64/process_machdep.c    Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/process_machdep.c    Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: process_machdep.c,v 1.1 2003/04/26 18:39:31 fvdl Exp $ */
+/*     $NetBSD: process_machdep.c,v 1.2 2003/07/14 23:32:32 lukem Exp $        */
 
 /*-
  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@@ -59,6 +59,9 @@
  */
 
 
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: process_machdep.c,v 1.2 2003/07/14 23:32:32 lukem Exp $");
+
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/time.h>
diff -r 9c59ac374426 -r 754e5c731493 sys/arch/amd64/amd64/procfs_machdep.c
--- a/sys/arch/amd64/amd64/procfs_machdep.c     Mon Jul 14 23:25:35 2003 +0000
+++ b/sys/arch/amd64/amd64/procfs_machdep.c     Mon Jul 14 23:32:28 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: procfs_machdep.c,v 1.2 2003/05/14 12:22:35 fvdl Exp $  */



Home | Main Index | Thread Index | Old Index