add OpenBSD rcs ids
authorjsg <jsg@openbsd.org>
Wed, 12 May 2021 01:20:52 +0000 (01:20 +0000)
committerjsg <jsg@openbsd.org>
Wed, 12 May 2021 01:20:52 +0000 (01:20 +0000)
81 files changed:
sys/arch/riscv64/conf/GENERIC
sys/arch/riscv64/conf/Makefile.riscv64
sys/arch/riscv64/conf/RAMDISK
sys/arch/riscv64/conf/files.riscv64
sys/arch/riscv64/conf/kern.ldscript
sys/arch/riscv64/dev/mainbus.c
sys/arch/riscv64/dev/mainbus.h
sys/arch/riscv64/dev/plic.c
sys/arch/riscv64/dev/plic.h
sys/arch/riscv64/dev/riscv_cpu_intc.c
sys/arch/riscv64/dev/riscv_cpu_intc.h
sys/arch/riscv64/dev/simplebus.c
sys/arch/riscv64/dev/simplebusvar.h
sys/arch/riscv64/include/_types.h
sys/arch/riscv64/include/asm.h
sys/arch/riscv64/include/atomic.h
sys/arch/riscv64/include/bootconfig.h
sys/arch/riscv64/include/bus.h
sys/arch/riscv64/include/conf.h
sys/arch/riscv64/include/cpu.h
sys/arch/riscv64/include/cpufunc.h
sys/arch/riscv64/include/db_machdep.h
sys/arch/riscv64/include/disklabel.h
sys/arch/riscv64/include/endian.h
sys/arch/riscv64/include/exec.h
sys/arch/riscv64/include/fdt.h
sys/arch/riscv64/include/frame.h
sys/arch/riscv64/include/ieee.h
sys/arch/riscv64/include/intr.h
sys/arch/riscv64/include/kcore.h
sys/arch/riscv64/include/param.h
sys/arch/riscv64/include/pcb.h
sys/arch/riscv64/include/pmap.h
sys/arch/riscv64/include/proc.h
sys/arch/riscv64/include/profile.h
sys/arch/riscv64/include/pte.h
sys/arch/riscv64/include/ptrace.h
sys/arch/riscv64/include/reg.h
sys/arch/riscv64/include/reloc.h
sys/arch/riscv64/include/riscv64var.h
sys/arch/riscv64/include/riscvreg.h
sys/arch/riscv64/include/sbi.h
sys/arch/riscv64/include/setjmp.h
sys/arch/riscv64/include/signal.h
sys/arch/riscv64/include/spinlock.h
sys/arch/riscv64/include/syscall.h
sys/arch/riscv64/include/tcb.h
sys/arch/riscv64/include/timetc.h
sys/arch/riscv64/include/trap.h
sys/arch/riscv64/include/vmparam.h
sys/arch/riscv64/riscv64/ast.c
sys/arch/riscv64/riscv64/autoconf.c
sys/arch/riscv64/riscv64/bus_dma.c
sys/arch/riscv64/riscv64/bus_space.c
sys/arch/riscv64/riscv64/conf.c
sys/arch/riscv64/riscv64/copy.S
sys/arch/riscv64/riscv64/copyinout.S
sys/arch/riscv64/riscv64/copystr.S
sys/arch/riscv64/riscv64/cpu.c
sys/arch/riscv64/riscv64/cpufunc_asm.S
sys/arch/riscv64/riscv64/cpuswitch.S
sys/arch/riscv64/riscv64/db_interface.c
sys/arch/riscv64/riscv64/db_trace.c
sys/arch/riscv64/riscv64/disksubr.c
sys/arch/riscv64/riscv64/fpu.c
sys/arch/riscv64/riscv64/genassym.cf
sys/arch/riscv64/riscv64/intr.c
sys/arch/riscv64/riscv64/locore.S
sys/arch/riscv64/riscv64/locore0.S
sys/arch/riscv64/riscv64/machdep.c
sys/arch/riscv64/riscv64/mem.c
sys/arch/riscv64/riscv64/pagezero.S
sys/arch/riscv64/riscv64/pmap.c
sys/arch/riscv64/riscv64/process_machdep.c
sys/arch/riscv64/riscv64/sbi.c
sys/arch/riscv64/riscv64/sig_machdep.c
sys/arch/riscv64/riscv64/softintr.c
sys/arch/riscv64/riscv64/support.S
sys/arch/riscv64/riscv64/syscall.c
sys/arch/riscv64/riscv64/trap.c
sys/arch/riscv64/riscv64/vm_machdep.c

index 41bb710..0fdbac8 100644 (file)
@@ -1,3 +1,5 @@
+#      $OpenBSD: GENERIC,v 1.11 2021/05/12 01:20:52 jsg Exp $
+#
 # For further information on compiling OpenBSD kernels, see the config(8)
 # man page.
 #
index 204cb89..245f144 100644 (file)
@@ -1,3 +1,5 @@
+#      $OpenBSD: Makefile.riscv64,v 1.6 2021/05/12 01:20:52 jsg Exp $
+
 # For instructions on building kernels consult the config(8) and options(4)
 # manual pages.
 #
index 65f5dda..14d15ad 100644 (file)
@@ -1,4 +1,4 @@
-# $OpenBSD: RAMDISK,v 1.9 2021/05/11 14:58:08 deraadt Exp $
+#      $OpenBSD: RAMDISK,v 1.10 2021/05/12 01:20:52 jsg Exp $
 #
 # GENERIC machine description file
 #
index b2988a3..2ad804c 100644 (file)
@@ -1,3 +1,5 @@
+#      $OpenBSD: files.riscv64,v 1.9 2021/05/12 01:20:52 jsg Exp $
+
 # Standard stanzas config(8) can't run without
 maxpartitions 16
 maxusers 2 8 64
index a4fe5fd..0c03b6f 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: kern.ldscript,v 1.2 2021/05/12 01:20:52 jsg Exp $     */
+
 OUTPUT_ARCH(riscv64)
 
 /* Define how we want our ELF binary to look like. */
index a6e0c32..5eaf726 100644 (file)
@@ -1,4 +1,5 @@
-/* $OpenBSD: mainbus.c,v 1.5 2021/05/04 16:38:06 kettenis Exp $ */
+/*     $OpenBSD: mainbus.c,v 1.6 2021/05/12 01:20:52 jsg Exp $ */
+
 /*
  * Copyright (c) 2016 Patrick Wildt <patrick@blueri.se>
  * Copyright (c) 2017 Mark Kettenis <kettenis@openbsd.org>
index a6b6b19..0207344 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: mainbus.h,v 1.2 2021/05/12 01:20:52 jsg Exp $ */
+
 /*
  * Copyright (c) 2016 Patrick Wildt <patrick@blueri.se>
  *
index 7d84287..2bfede5 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: plic.c,v 1.4 2021/05/12 01:20:52 jsg Exp $    */
+
 /*
  * Copyright (c) 2020, Mars Li <mengshi.li.mars@gmail.com>
  * Copyright (c) 2020, Brian Bamsch <bbamsch@google.com>
index a3677df..2ee59ac 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: plic.h,v 1.3 2021/05/12 01:20:52 jsg Exp $    */
+
 /*
  * Copyright (c) 2020, Mars Li <mengshi.li.mars@gmail.com>
  * Copyright (c) 2020, Brian Bamsch <bbamsch@google.com>
index e1cffbd..3955575 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: riscv_cpu_intc.c,v 1.6 2021/05/12 01:20:52 jsg Exp $  */
+
 /*
  * Copyright (c) 2020, Mars Li <mengshi.li.mars@gmail.com>
  *
index 16d1a25..34937b0 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: riscv_cpu_intc.h,v 1.3 2021/05/12 01:20:52 jsg Exp $  */
+
 /*
  * Copyright (c) 2020 Mars Li <mengshi.li.mars@gmai..com>
  *
index d6fad12..17e989e 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: simplebus.c,v 1.3 2021/05/12 01:20:52 jsg Exp $       */
+
 /*
  * Copyright (c) 2016 Patrick Wildt <patrick@blueri.se>
  *
index 9fb9c66..57d3e71 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: simplebusvar.h,v 1.2 2021/05/12 01:20:52 jsg Exp $    */
+
 /*
  * Copyright (c) 2016 Patrick Wildt <patrick@blueri.se>
  *
index 444d741..394d4ab 100644 (file)
@@ -1,4 +1,5 @@
-/* $OpenBSD: _types.h,v 1.2 2021/05/08 05:31:07 deraadt Exp $ */
+/*     $OpenBSD: _types.h,v 1.3 2021/05/12 01:20:52 jsg Exp $ */
+
 /*-
  * Copyright (c) 1990, 1993
  *     The Regents of the University of California.  All rights reserved.
index 27eed0f..156f7df 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: asm.h,v 1.2 2021/05/12 01:20:52 jsg Exp $     */
+
 /*
  * Copyright (c) 2020 Brian Bamsch <bbamsch@google.com>
  * Copyright (c) 1990 The Regents of the University of California.
index 5271f36..1d2ec1b 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: atomic.h,v 1.2 2021/05/12 01:20:52 jsg Exp $  */
+
 /* Public Domain */
 
 #ifndef _MACHINE_ATOMIC_H_
index 050cde2..270fd68 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: bootconfig.h,v 1.3 2021/05/12 01:20:52 jsg Exp $      */
+
 /*-
  * Copyright (c) 2015-2017 Ruslan Bukin <br@bsdpad.com>
  * All rights reserved.
index 1087af0..2e7c71d 100644 (file)
@@ -1,4 +1,5 @@
-/* $OpenBSD: bus.h,v 1.3 2021/05/05 13:28:56 jsg Exp $ */
+/*     $OpenBSD: bus.h,v 1.4 2021/05/12 01:20:52 jsg Exp $     */
+
 /*
  * Copyright (c) 2003-2004 Opsycon AB Sweden.  All rights reserved.
  *
index 6ccf41f..3770ba3 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: conf.h,v 1.2 2021/05/12 01:20:52 jsg Exp $    */
+
 /*
  * Copyright (c) 1996 Christos Zoulas.  All rights reserved.
  *
index e036dc4..91d4fad 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: cpu.h,v 1.6 2021/05/12 01:20:52 jsg Exp $     */
+
 /*
  * Copyright (c) 2019 Mike Larkin <mlarkin@openbsd.org>
  * Copyright (c) 2016 Dale Rahn <drahn@dalerahn.com>
index c171da0..33a781b 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: cpufunc.h,v 1.3 2021/05/12 01:20:52 jsg Exp $ */
+
 /*-
  * Copyright (c) 2014 Andrew Turner
  * All rights reserved.
index 414fc34..03aabfb 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: db_machdep.h,v 1.3 2021/05/12 01:20:52 jsg Exp $      */
+
 /*
  * Copyright (c) 2019 Brian Bamsch <bbamsch@google.com>
  * Copyright (c) 2015-2016 Ruslan Bukin <br@bsdpad.com>
index 51bcc85..be82dc5 100644 (file)
@@ -1,4 +1,5 @@
-/* $OpenBSD: disklabel.h,v 1.1 2021/04/23 02:42:16 drahn Exp $ */
+/*     $OpenBSD: disklabel.h,v 1.2 2021/05/12 01:20:52 jsg Exp $       */
+
 /*
  * Copyright (c) 2014 Patrick Wildt <patrick@blueri.se>
  *
index 8adf02d..be77529 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: endian.h,v 1.1 2021/04/23 02:42:16 drahn Exp $ */
+/*     $OpenBSD: endian.h,v 1.2 2021/05/12 01:20:52 jsg Exp $  */
 
 /*
  * Copyright (c) 2015 David Gwynne <dlg@openbsd.org>
index 281a1fe..039bfe7 100644 (file)
@@ -1,4 +1,5 @@
-/* $OpenBSD: exec.h,v 1.1 2021/04/23 02:42:16 drahn Exp $ */
+/*     $OpenBSD: exec.h,v 1.2 2021/05/12 01:20:52 jsg Exp $    */
+
 /*
  * Copyright (c) 2014 Patrick Wildt <patrick@blueri.se>
  *
index 0bab722..0d86a91 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: fdt.h,v 1.2 2021/05/12 01:20:52 jsg Exp $     */
+
 /*
  * Copyright (c) 2016 Patrick Wildt <patrick@blueri.se>
  *
index 78c6d39..ab34499 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: frame.h,v 1.2 2021/05/12 01:20:52 jsg Exp $   */
+
 /*
  * Copyright (c) 2019 Brian Bamsch <bbamsch@google.com>
  * Copyright (c) 2016 Dale Rahn <drahn@dalerahn.com>
index 67b298c..da4ad3f 100644 (file)
@@ -1,5 +1,5 @@
-/*     $OpenBSD: ieee.h,v 1.2 2021/05/11 14:58:25 deraadt Exp $ */
-/*     $NetBSD: ieee.h,v 1.1 1996/09/30 16:34:25 ws Exp $ */
+/*     $OpenBSD: ieee.h,v 1.3 2021/05/12 01:20:52 jsg Exp $    */
+/*     $NetBSD: ieee.h,v 1.1 1996/09/30 16:34:25 ws Exp $      */
 
 /*
  * Copyright (c) 1992, 1993
index a38ee8b..613a472 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: intr.h,v 1.3 2021/05/12 01:20:52 jsg Exp $    */
+
 /*
  * Copyright (c) 2001-2004 Opsycon AB  (www.opsycon.se / www.opsycon.com)
  *
index e794097..ada7476 100644 (file)
@@ -1,4 +1,5 @@
-/*     $OpenBSD: kcore.h,v 1.1 2021/04/23 02:42:16 drahn Exp $ */
+/*     $OpenBSD: kcore.h,v 1.2 2021/05/12 01:20:52 jsg Exp $   */
+
 /* public domain */
 
 /* Make sure this is larger than DRAM_BLOCKS on all arm-based platforms */
index c7a42c6..693fdb8 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: param.h,v 1.2 2021/05/12 01:20:52 jsg Exp $   */
+
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
  * All rights reserved.
index 402f691..1ebe9b2 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: pcb.h,v 1.2 2021/05/12 01:20:52 jsg Exp $     */
+
 /*
  * Copyright (c) 2016 Dale Rahn <drahn@dalerahn.com>
  *
index 3f2995d..ea03811 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: pmap.h,v 1.4 2021/05/12 01:20:52 jsg Exp $    */
+
 /*
  * Copyright (c) 2019-2020 Brian Bamsch <bbamsch@google.com>
  * Copyright (c) 2008,2009,2014 Dale Rahn <drahn@dalerahn.com>
index 6aef7c7..c7a80f0 100644 (file)
@@ -1,3 +1,4 @@
+/*     $OpenBSD: proc.h,v 1.2 2021/05/12 01:20:52 jsg Exp $    */
 /*     $NetBSD: proc.h,v 1.1 2003/04/26 18:39:46 fvdl Exp $    */
 
 /*
index 5034f85..114728a 100644 (file)
@@ -1,4 +1,5 @@
-/* $OpenBSD: profile.h,v 1.2 2021/05/11 14:58:08 deraadt Exp $ */
+/*     $OpenBSD: profile.h,v 1.3 2021/05/12 01:20:52 jsg Exp $ */
+
 /*
  * Copyright (c) 2015 Dale Rahn <drahn@dalerahn.com>
  *
index cab4e5a..2dc0579 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: pte.h,v 1.2 2021/05/12 01:20:52 jsg Exp $     */
+
 /*
  * Copyright (c) 2019 Brian Bamsch <bbamsch@google.com>
  * Copyright (c) 2014 Dale Rahn <drahn@dalerahn.com>
index 7115fb4..189c9ef 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: ptrace.h,v 1.2 2021/05/12 01:20:52 jsg Exp $  */
+
 /*
  * Copyright (c) 2014 Patrick Wildt <patrick@blueri.se>
  *
index 91bb219..10135a6 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: reg.h,v 1.2 2021/05/12 01:20:52 jsg Exp $     */
+
 /*-
  * Copyright (c) 2019 Brian Bamsch <bbamsch@google.com>
  * Copyright (c) 2015-2016 Ruslan Bukin <br@bsdpad.com>
index d52eb80..d0bbcea 100644 (file)
@@ -1,4 +1,5 @@
-/*     $OpenBSD: reloc.h,v 1.1 2021/04/23 02:42:16 drahn Exp $ */
+/*     $OpenBSD: reloc.h,v 1.2 2021/05/12 01:20:52 jsg Exp $   */
+
 /*
  * RISCV64 static relocation types.
  */
@@ -16,4 +17,3 @@
 #define R_RISCV_TLS_DTPREL64    9
 #define R_RISCV_TLS_TPREL32     10
 #define R_RISCV_TLS_TPREL64     11
-
index 9ed79bd..d8b9cb9 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: riscv64var.h,v 1.2 2021/05/12 01:20:52 jsg Exp $      */
+
 /*
  * Copyright (c) 2020 Mengshi Li <mengshi.li.mars@gmail.com>
  * Copyright (c) 2005,2008 Dale Rahn <drahn@openbsd.com>
index 5f8eb4a..a90687b 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: riscvreg.h,v 1.3 2021/05/12 01:20:52 jsg Exp $        */
+
 /*-
  * Copyright (c) 2019 Brian Bamsch <bbamsch@google.com>
  * Copyright (c) 2015-2017 Ruslan Bukin <br@bsdpad.com>
index 308359c..45b4dcc 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: sbi.h,v 1.2 2021/05/12 01:20:52 jsg Exp $     */
+
 /*-
  * Copyright (c) 2016-2017 Ruslan Bukin <br@bsdpad.com>
  * All rights reserved.
index fedb40a..7b246de 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: setjmp.h,v 1.2 2021/05/09 21:26:06 drahn Exp $ */
+/*     $OpenBSD: setjmp.h,v 1.3 2021/05/12 01:20:52 jsg Exp $  */
 
 /*
  * machine/setjmp.h: machine dependent setjmp-related information.
index d5b770d..cff8d6a 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: signal.h,v 1.2 2021/05/12 01:20:52 jsg Exp $  */
+
 /*-
  * Copyright (c) 1986, 1989, 1991, 1993
  *      The Regents of the University of California.  All rights reserved.
index 6976dbf..a0836db 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: spinlock.h,v 1.2 2021/05/12 01:20:52 jsg Exp $        */
+
 #ifndef _MACHINE_SPINLOCK_H_
 #define _MACHINE_SPINLOCK_H_
 
index 466ba55..6a4f4aa 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: syscall.h,v 1.2 2021/05/12 01:20:52 jsg Exp $ */
+
 /*
  * Copyright (c) 2020 Brian Bamsch <bbamsch@google.com>
  *
index 85b4e97..3fa3e50 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: tcb.h,v 1.3 2021/05/12 01:20:52 jsg Exp $     */
+
 /*
  * Copyright (c) 2019 Brian Bamsch <bbamsch@google.com>
  * Copyright (c) 2011 Philip Guenther <guenther@openbsd.org>
index bb1d6c3..5b5bd94 100644 (file)
@@ -1,4 +1,5 @@
-/*     $OpenBSD: timetc.h,v 1.1 2021/04/23 02:42:16 drahn Exp $ */
+/*     $OpenBSD: timetc.h,v 1.2 2021/05/12 01:20:52 jsg Exp $  */
+
 /*
  * Copyright (c) 2020 Paul Irofti <paul@irofti.net>
  *
index c81c3c5..2d220c5 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: trap.h,v 1.2 2021/05/12 01:20:52 jsg Exp $    */
+
 /*
  * Copyright (c) 2019 Brian Bamsch <bbamsch@google.com>
  * Copyright (c) 2016 Dale Rahn <drahn@dalerahn.com>
index 883b57d..a84d1fe 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: vmparam.h,v 1.3 2021/05/12 01:20:52 jsg Exp $ */
+
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
  * All rights reserved.
index ed706c6..a9c162a 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: ast.c,v 1.2 2021/05/12 01:20:52 jsg Exp $     */
+
 /*
  * Copyright (c) 2015 Dale Rahn <drahn@dalerahn.com>
  *
index aedb937..a564e72 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: autoconf.c,v 1.3 2021/05/12 01:20:52 jsg Exp $        */
+
 /*
  * Copyright (c) 2009 Miodrag Vallat.
  *
index 0d424a2..9df0732 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bus_dma.c,v 1.3 2021/05/05 19:26:51 kettenis Exp $ */
+/*     $OpenBSD: bus_dma.c,v 1.4 2021/05/12 01:20:52 jsg Exp $ */
 
 /*
  * Copyright (c) 2003-2004 Opsycon AB  (www.opsycon.se / www.opsycon.com)
index cd0ff1c..d20ffb1 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: bus_space.c,v 1.2 2021/05/12 01:20:52 jsg Exp $       */
+
 /*
  * Copyright (c) 2001-2003 Opsycon AB  (www.opsycon.se / www.opsycon.com)
  *
index 32e7098..8b959af 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: conf.c,v 1.7 2021/05/12 01:20:52 jsg Exp $    */
+
 /*
  * Copyright (c) 1994, 1995 Charles M. Hannum.  All rights reserved.
  *
index 1a76af7..9412945 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: copy.S,v 1.2 2021/05/12 01:20:52 jsg Exp $    */
+
 /*
  * Copyright (c) 2020 Brian Bamsch <bbamsch@google.com>
  * Copyright (c) 2015 Dale Rahn <drahn@dalerahn.com>
index 7c3e478..7a32578 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: copyinout.S,v 1.2 2021/05/12 01:20:52 jsg Exp $       */
+
 /*-
  * Copyright (c) 2015-2018 Ruslan Bukin <br@bsdpad.com>
  * Copyright (c) 2019 Mitchell Horne
index b1b53b7..7fb7de5 100644 (file)
@@ -1,4 +1,5 @@
-/* $OpenBSD: copystr.S,v 1.1 2021/04/23 02:42:17 drahn Exp $ */
+/*     $OpenBSD: copystr.S,v 1.2 2021/05/12 01:20:52 jsg Exp $ */
+
 /*
  * Copyright (c) 2015 Dale Rahn <drahn@dalerahn.com>
  * Copyright (c) 2014 Patrick Wildt <patrick@blueri.se>
index 11203d2..b242daf 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: cpu.c,v 1.6 2021/05/12 01:20:52 jsg Exp $     */
+
 /*
  * Copyright (c) 2016 Dale Rahn <drahn@dalerahn.com>
  * Copyright (c) 2017 Mark Kettenis <kettenis@openbsd.org>
index 3e297d1..f391a47 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: cpufunc_asm.S,v 1.2 2021/05/12 01:20:52 jsg Exp $     */
+
 /*-
  * Copyright (c) 2015-2017 Ruslan Bukin <br@bsdpad.com>
  * All rights reserved.
index 1cb9a70..004042f 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: cpuswitch.S,v 1.2 2021/05/12 01:20:52 jsg Exp $       */
+
 /*
  * Copyright (c) 2015 Dale Rahn <drahn@dalerahn.com>
  * Copyright (c) 2020 Brian Bamsch <bbamsch@google.com>
index 640aa18..82d184d 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: db_interface.c,v 1.3 2021/05/12 01:20:52 jsg Exp $    */
+
 /*
  * Copyright (c) 1996 Scott K. Stevens
  *
index 90fe7b1..acf1d83 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: db_trace.c,v 1.3 2021/05/12 01:20:52 jsg Exp $        */
+
 /*
  * Copyright (c) 2000, 2001 Ben Harris
  * Copyright (c) 1996 Scott K. Stevens
index 8d1e4cb..dfcba3e 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: disksubr.c,v 1.2 2021/05/12 01:20:52 jsg Exp $        */
+
 /*
  * Copyright (c) 1996 Theo de Raadt
  * Copyright (c) 1982, 1986, 1988 Regents of the University of California.
index 9f7cfea..7c502b2 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: fpu.c,v 1.7 2021/05/12 01:20:52 jsg Exp $     */
+
 /*
  * Copyright (c) 2020 Dale Rahn <drahn@openbsd.org>
  *
index a79e268..24a7ccc 100644 (file)
@@ -1,3 +1,5 @@
+#      $OpenBSD: genassym.cf,v 1.2 2021/05/12 01:20:52 jsg Exp $
+#
 # Copyright (c) 2020 Brian Bamsch <bbamsch@google.com>
 # All rights reserved.
 #
index 7b605f8..1d31e25 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: intr.c,v 1.4 2021/05/12 01:20:52 jsg Exp $    */
+
 /*
  * Copyright (c) 2011 Dale Rahn <drahn@openbsd.org>
  *
index 207dc35..d4c78bd 100644 (file)
@@ -1,4 +1,5 @@
-/* $OpenBSD: locore.S,v 1.5 2021/05/11 14:58:08 deraadt Exp $ */
+/*     $OpenBSD: locore.S,v 1.6 2021/05/12 01:20:52 jsg Exp $  */
+
 /*-
  * Copyright (c) 2012-2014 Andrew Turner
  * All rights reserved.
index d2c6164..8ac6ab5 100644 (file)
@@ -1,4 +1,5 @@
-/* $OpenBSD: locore0.S,2019/10/31 mengshi.li.mars@gmail.com */
+/*     $OpenBSD: locore0.S,v 1.2 2021/05/12 01:20:52 jsg Exp $ */
+
 /*-
  * Copyright (c) 2012-2014 Andrew Turner
  * All rights reserved.
@@ -27,7 +28,6 @@
  * $FreeBSD: head/sys/arm64/arm64/locore.S 282867 2015-05-13 18:57:03Z zbb $
  */
 
-
 #include <sys/syscall.h>
 #include <machine/asm.h>
 #include <machine/param.h>
index d519241..f872510 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: machdep.c,v 1.14 2021/05/12 01:20:52 jsg Exp $        */
+
 /*
  * Copyright (c) 2014 Patrick Wildt <patrick@blueri.se>
  * Copyright (c) 2021 Mark Kettenis <kettenis@openbsd.org>
index 56c0add..e2e58d1 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: mem.c,v 1.3 2021/05/12 01:20:52 jsg Exp $     */
+
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
  *     The Regents of the University of California.  All rights reserved.
index 709558d..fa655ce 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: pagezero.S,v 1.2 2021/05/12 01:20:52 jsg Exp $        */
+
 /*
  * Copyright (c) 2020 Brian Bamsch <bbamsch@google.com>
  *
index 7c70356..2d9a6a6 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: pmap.c,v 1.7 2021/05/12 01:20:52 jsg Exp $    */
+
 /*
  * Copyright (c) 2019-2020 Brian Bamsch <bbamsch@google.com>
  * Copyright (c) 2008-2009,2014-2016 Dale Rahn <drahn@dalerahn.com>
index 4a442ea..a12cad9 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: process_machdep.c,v 1.3 2021/05/12 01:20:52 jsg Exp $ */
+
 /*
  * Copyright (c) 2014 Patrick Wildt <patrick@blueri.se>
  *
index 02deb80..08a6cdd 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: sbi.c,v 1.4 2021/05/12 01:20:52 jsg Exp $     */
+
 /*-
  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
  *
index 49a0be2..42ba59f 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: sig_machdep.c,v 1.3 2021/05/12 01:20:52 jsg Exp $     */
+
 /*
  * Copyright (c) 1990 The Regents of the University of California.
  * All rights reserved.
index 2a64b9e..f8a0929 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: softintr.c,v 1.3 2021/05/12 01:20:52 jsg Exp $        */
+
 /*-
  * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
  * All rights reserved.
index 75766e6..549c5e3 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: support.S,v 1.2 2021/05/12 01:20:52 jsg Exp $ */
+
 /*-
  * Copyright (c) 2015-2020 Ruslan Bukin <br@bsdpad.com>
  * All rights reserved.
index 23783c7..bfc26f4 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: syscall.c,v 1.4 2021/05/12 01:20:52 jsg Exp $ */
+
 /*
  * Copyright (c) 2020 Brian Bamsch <bbamsch@google.com>
  * Copyright (c) 2015 Dale Rahn <drahn@dalerahn.com>
index 5ad673e..a83ec45 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: trap.c,v 1.7 2021/05/12 01:20:52 jsg Exp $    */
+
 /*
  * Copyright (c) 2020 Shivam Waghela <shivamwaghela@gmail.com>
  * Copyright (c) 2020 Brian Bamsch <bbamsch@google.com>
index 97fd7eb..00a7ece 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: vm_machdep.c,v 1.3 2021/05/12 01:20:52 jsg Exp $      */
+
 /*-
  * Copyright (c) 1995 Charles M. Hannum.  All rights reserved.
  * Copyright (c) 1982, 1986 The Regents of the University of California.