Delete unnecessary <sys/file.h> includes
authorguenther <guenther@openbsd.org>
Sat, 30 Dec 2017 20:46:59 +0000 (20:46 +0000)
committerguenther <guenther@openbsd.org>
Sat, 30 Dec 2017 20:46:59 +0000 (20:46 +0000)
ok millert@ krw@

59 files changed:
sys/arch/alpha/alpha/machdep.c
sys/arch/alpha/alpha/promcons.c
sys/arch/arm/arm/bus_dma.c
sys/arch/arm64/arm64/sys_machdep.c
sys/arch/hppa/hppa/machdep.c
sys/arch/hppa/hppa/mem.c
sys/arch/i386/i386/machdep.c
sys/arch/i386/i386/sys_machdep.c
sys/arch/i386/i386/vm86.c
sys/arch/i386/isa/npx.c
sys/arch/loongson/loongson/machdep.c
sys/arch/macppc/dev/zs.c
sys/arch/mips64/mips64/sys_machdep.c
sys/arch/octeon/octeon/machdep.c
sys/arch/powerpc/powerpc/bus_dma.c
sys/arch/sgi/hpc/zs.c
sys/arch/sgi/sgi/machdep.c
sys/arch/sh/dev/scif.c
sys/arch/sparc64/dev/comkbd_ebus.c
sys/arch/sparc64/dev/consinit.c
sys/arch/sparc64/dev/pcons.c
sys/arch/sparc64/dev/z8530kbd.c
sys/arch/sparc64/dev/zs.c
sys/arch/sparc64/sparc64/machdep.c
sys/arch/sparc64/sparc64/sys_machdep.c
sys/dev/ata/ata.c
sys/dev/ata/ata_wdc.c
sys/dev/atapiscsi/atapiscsi.c
sys/dev/cninit.c
sys/dev/cons.c
sys/dev/gpio/gpiodcf.c
sys/dev/hil/hil.c
sys/dev/ic/z8530sc.c
sys/dev/isa/fdc.c
sys/dev/pcmcia/com_pcmcia.c
sys/dev/pcmcia/wdc_pcmcia.c
sys/dev/puc/com_puc.c
sys/dev/tc/zs_ioasic.c
sys/dev/usb/ucycom.c
sys/dev/usb/udcf.c
sys/dev/usb/uhid.c
sys/dev/usb/umbg.c
sys/dev/usb/umct.c
sys/dev/usb/umidi_quirks.c
sys/dev/usb/umodem.c
sys/dev/usb/uplcom.c
sys/isofs/cd9660/cd9660_bmap.c
sys/isofs/cd9660/cd9660_lookup.c
sys/isofs/cd9660/cd9660_node.c
sys/isofs/cd9660/cd9660_util.c
sys/kern/kern_exit.c
sys/kern/kern_fork.c
sys/kern/kern_proc.c
sys/kern/subr_prf.c
sys/kern/uipc_socket2.c
sys/msdosfs/msdosfs_fat.c
sys/nfs/nfs_serv.c
sys/ufs/ext2fs/ext2fs_readwrite.c
sys/ufs/ffs/ffs_vnops.c

index b17a184..a4f9a41 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.182 2017/12/11 05:27:40 deraadt Exp $ */
+/* $OpenBSD: machdep.c,v 1.183 2017/12/30 20:46:59 guenther Exp $ */
 /* $NetBSD: machdep.c,v 1.210 2000/06/01 17:12:38 thorpej Exp $ */
 
 /*-
@@ -69,7 +69,6 @@
 #include <sys/reboot.h>
 #include <sys/device.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/timeout.h>
 #include <sys/malloc.h>
 #include <sys/mbuf.h>
index ee74f89..fff80b8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: promcons.c,v 1.17 2017/09/08 05:36:51 deraadt Exp $   */
+/*     $OpenBSD: promcons.c,v 1.18 2017/12/30 20:46:59 guenther Exp $  */
 /*     $NetBSD: promcons.c,v 1.5 1996/11/13 22:20:55 cgd Exp $ */
 
 /*
@@ -35,7 +35,6 @@
 #include <sys/tty.h>
 #include <sys/proc.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/uio.h>
 #include <sys/kernel.h>
 #include <sys/syslog.h>
index ce63765..87a4047 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bus_dma.c,v 1.36 2017/05/05 12:54:47 kettenis Exp $   */
+/*     $OpenBSD: bus_dma.c,v 1.37 2017/12/30 20:46:59 guenther Exp $   */
 /*     $NetBSD: bus_dma.c,v 1.38 2003/10/30 08:44:13 scw Exp $ */
 
 /*-
@@ -40,7 +40,6 @@
 #include <sys/buf.h>
 #include <sys/reboot.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/malloc.h>
 #include <sys/mbuf.h>
 #include <sys/vnode.h>
index 7e41f69..b59b622 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sys_machdep.c,v 1.1 2016/12/17 23:38:33 patrick Exp $ */
+/*     $OpenBSD: sys_machdep.c,v 1.2 2017/12/30 20:46:59 guenther Exp $        */
 
 /*
  * Copyright (c) 1992, 1993
@@ -41,7 +41,6 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/ioctl.h>
-#include <sys/file.h>
 #include <sys/time.h>
 #include <sys/proc.h>
 #include <sys/kernel.h>
index 9247b5d..3cbd49e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.249 2017/12/11 05:27:40 deraadt Exp $   */
+/*     $OpenBSD: machdep.c,v 1.250 2017/12/30 20:46:59 guenther Exp $  */
 
 /*
  * Copyright (c) 1999-2003 Michael Shalayeff
@@ -35,7 +35,6 @@
 #include <sys/reboot.h>
 #include <sys/device.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/timeout.h>
 #include <sys/malloc.h>
 #include <sys/pool.h>
index 785ad2b..813c341 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mem.c,v 1.4 2017/12/14 03:30:43 guenther Exp $        */
+/*     $OpenBSD: mem.c,v 1.5 2017/12/30 20:46:59 guenther Exp $        */
 
 /*
  * Copyright (c) 1998-2004 Michael Shalayeff
@@ -81,7 +81,6 @@
 #include <sys/device.h>
 #include <sys/errno.h>
 #include <sys/ioctl.h>
-#include <sys/file.h>
 
 #include <uvm/uvm_extern.h>
 
index 89ac87c..5f45491 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.607 2017/12/11 05:27:40 deraadt Exp $   */
+/*     $OpenBSD: machdep.c,v 1.608 2017/12/30 20:46:59 guenther Exp $  */
 /*     $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $    */
 
 /*-
@@ -77,7 +77,6 @@
 #include <sys/buf.h>
 #include <sys/reboot.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/timeout.h>
 #include <sys/malloc.h>
 #include <sys/mbuf.h>
index 723c5ba..5011af8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sys_machdep.c,v 1.37 2016/03/24 04:56:08 guenther Exp $       */
+/*     $OpenBSD: sys_machdep.c,v 1.38 2017/12/30 20:46:59 guenther Exp $       */
 /*     $NetBSD: sys_machdep.c,v 1.28 1996/05/03 19:42:29 christos Exp $        */
 
 /*-
@@ -39,7 +39,6 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/ioctl.h>
-#include <sys/file.h>
 #include <sys/time.h>
 #include <sys/proc.h>
 #include <sys/signalvar.h>
index 1d92d1c..41dfcc4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: vm86.c,v 1.23 2016/10/08 05:49:08 guenther Exp $      */
+/*     $OpenBSD: vm86.c,v 1.24 2017/12/30 20:46:59 guenther Exp $      */
 /*     $NetBSD: vm86.c,v 1.15 1996/05/03 19:42:33 christos Exp $       */
 
 /*-
@@ -40,7 +40,6 @@
 #include <sys/buf.h>
 #include <sys/reboot.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/malloc.h>
 #include <sys/mbuf.h>
 #include <sys/msgbuf.h>
index 782e018..3f25bc5 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: npx.c,v 1.62 2017/05/29 14:19:50 mpi Exp $    */
+/*     $OpenBSD: npx.c,v 1.63 2017/12/30 20:46:59 guenther Exp $       */
 /*     $NetBSD: npx.c,v 1.57 1996/05/12 23:12:24 mycroft Exp $ */
 
 #if 0
@@ -43,7 +43,6 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/proc.h>
 #include <sys/signalvar.h>
 #include <sys/user.h>
index 2e797fc..fe91c31 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.81 2017/12/11 05:27:40 deraadt Exp $ */
+/*     $OpenBSD: machdep.c,v 1.82 2017/12/30 20:46:59 guenther Exp $ */
 
 /*
  * Copyright (c) 2009, 2010, 2014 Miodrag Vallat.
@@ -47,7 +47,6 @@
 #include <sys/buf.h>
 #include <sys/reboot.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/msgbuf.h>
 #include <sys/tty.h>
 #include <sys/user.h>
index 47c3b8f..ba44536 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: zs.c,v 1.27 2017/04/30 16:45:45 mpi Exp $     */
+/*     $OpenBSD: zs.c,v 1.28 2017/12/30 20:46:59 guenther Exp $        */
 /*     $NetBSD: zs.c,v 1.17 2001/06/19 13:42:15 wiz Exp $      */
 
 /*
@@ -59,7 +59,6 @@
 #include <sys/proc.h>
 #include <sys/device.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/ioctl.h>
 #include <sys/tty.h>
 #include <sys/time.h>
index d017bca..63686b3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sys_machdep.c,v 1.9 2017/09/01 13:16:47 visa Exp $    */
+/*     $OpenBSD: sys_machdep.c,v 1.10 2017/12/30 20:46:59 guenther Exp $       */
 
 /*
  * Copyright (c) 1992, 1993
@@ -41,7 +41,6 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/ioctl.h>
-#include <sys/file.h>
 #include <sys/time.h>
 #include <sys/proc.h>
 #include <sys/kernel.h>
index 6b7f5bc..631cec0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.102 2017/12/11 05:27:40 deraadt Exp $ */
+/*     $OpenBSD: machdep.c,v 1.103 2017/12/30 20:46:59 guenther Exp $ */
 
 /*
  * Copyright (c) 2009, 2010 Miodrag Vallat.
@@ -47,7 +47,6 @@
 #include <sys/buf.h>
 #include <sys/reboot.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/msgbuf.h>
 #include <sys/tty.h>
 #include <sys/user.h>
index c3441e3..791bd48 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bus_dma.c,v 1.3 2015/09/01 08:44:34 mpi Exp $ */
+/*     $OpenBSD: bus_dma.c,v 1.4 2017/12/30 20:46:59 guenther Exp $    */
 /*     $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $    */
 
 /*-
@@ -38,7 +38,6 @@
 #include <sys/device.h>
 #include <sys/systm.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/malloc.h>
 #include <sys/mbuf.h>
 #include <sys/mount.h>
index 624bbdf..3f56d4b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: zs.c,v 1.15 2017/04/30 16:45:45 mpi Exp $     */
+/*     $OpenBSD: zs.c,v 1.16 2017/12/30 20:46:59 guenther Exp $        */
 /*     $NetBSD: zs.c,v 1.37 2011/02/20 07:59:50 matt Exp $     */
 
 /*-
@@ -41,7 +41,6 @@
 #include <sys/systm.h>
 #include <sys/conf.h>
 #include <sys/device.h>
-#include <sys/file.h>
 #include <sys/ioctl.h>
 #include <sys/kernel.h>
 #include <sys/proc.h>
index 295c0fc..a573046 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.157 2017/12/11 05:27:40 deraadt Exp $ */
+/*     $OpenBSD: machdep.c,v 1.158 2017/12/30 20:46:59 guenther Exp $ */
 
 /*
  * Copyright (c) 2003-2004 Opsycon AB  (www.opsycon.se / www.opsycon.com)
@@ -32,7 +32,6 @@
 #include <sys/buf.h>
 #include <sys/reboot.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/msgbuf.h>
 #include <sys/user.h>
 #include <sys/exec.h>
index 9a74057..b035fc3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: scif.c,v 1.17 2017/04/30 16:45:45 mpi Exp $   */
+/*     $OpenBSD: scif.c,v 1.18 2017/12/30 20:46:59 guenther Exp $      */
 /*     $NetBSD: scif.c,v 1.47 2006/07/23 22:06:06 ad Exp $ */
 
 /*-
@@ -98,7 +98,6 @@
 #include <sys/tty.h>
 #include <sys/proc.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/syslog.h>
 #include <sys/kernel.h>
 #include <sys/device.h>
index 9c7c9ec..a06815a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: comkbd_ebus.c,v 1.21 2011/03/18 21:01:17 miod Exp $   */
+/*     $OpenBSD: comkbd_ebus.c,v 1.22 2017/12/30 20:46:59 guenther Exp $       */
 
 /*
  * Copyright (c) 2002 Jason L. Wright (jason@thought.net)
@@ -36,7 +36,6 @@
 #include <sys/proc.h>
 #include <sys/device.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/ioctl.h>
 #include <sys/malloc.h>
 #include <sys/tty.h>
index 5fcb870..2c46808 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: consinit.c,v 1.16 2017/04/30 16:45:45 mpi Exp $       */
+/*     $OpenBSD: consinit.c,v 1.17 2017/12/30 20:46:59 guenther Exp $  */
 /*     $NetBSD: consinit.c,v 1.9 2000/10/20 05:32:35 mrg Exp $ */
 
 /*-
@@ -36,7 +36,6 @@
 #include <sys/systm.h>
 #include <sys/conf.h>
 #include <sys/device.h>
-#include <sys/file.h>
 #include <sys/ioctl.h>
 #include <sys/kernel.h>
 #include <sys/proc.h>
index a195e9c..81ee415 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pcons.c,v 1.22 2017/04/30 16:45:45 mpi Exp $  */
+/*     $OpenBSD: pcons.c,v 1.23 2017/12/30 20:46:59 guenther Exp $     */
 /*     $NetBSD: pcons.c,v 1.7 2001/05/02 10:32:20 scw Exp $    */
 
 /*-
@@ -38,7 +38,6 @@
 #include <sys/systm.h>
 #include <sys/conf.h>
 #include <sys/device.h>
-#include <sys/file.h>
 #include <sys/ioctl.h>
 #include <sys/kernel.h>
 #include <sys/proc.h>
index ca203a6..cefcfec 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: z8530kbd.c,v 1.27 2015/10/28 05:11:55 jsg Exp $       */
+/*     $OpenBSD: z8530kbd.c,v 1.28 2017/12/30 20:46:59 guenther Exp $  */
 /*     $NetBSD: z8530tty.c,v 1.77 2001/05/30 15:24:24 lukem Exp $      */
 
 /*-
 #include <sys/proc.h>
 #include <sys/device.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/ioctl.h>
 #include <sys/malloc.h>
 #include <sys/tty.h>
index 8b105b7..dbd2612 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: zs.c,v 1.29 2017/04/30 16:45:45 mpi Exp $     */
+/*     $OpenBSD: zs.c,v 1.30 2017/12/30 20:46:59 guenther Exp $        */
 /*     $NetBSD: zs.c,v 1.29 2001/05/30 15:24:24 lukem Exp $    */
 
 /*-
@@ -42,7 +42,6 @@
 #include <sys/systm.h>
 #include <sys/conf.h>
 #include <sys/device.h>
-#include <sys/file.h>
 #include <sys/ioctl.h>
 #include <sys/kernel.h>
 #include <sys/proc.h>
index e369e96..153633b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: machdep.c,v 1.186 2017/12/11 05:27:40 deraadt Exp $   */
+/*     $OpenBSD: machdep.c,v 1.187 2017/12/30 20:46:59 guenther Exp $  */
 /*     $NetBSD: machdep.c,v 1.108 2001/07/24 19:30:14 eeh Exp $ */
 
 /*-
@@ -83,7 +83,6 @@
 #include <sys/systm.h>
 #include <sys/kernel.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/malloc.h>
 #include <sys/mbuf.h>
 #include <sys/mount.h>
index 46b971d..70ba74e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sys_machdep.c,v 1.3 2003/06/02 23:27:56 millert Exp $ */
+/*     $OpenBSD: sys_machdep.c,v 1.4 2017/12/30 20:46:59 guenther Exp $        */
 /*     $NetBSD: sys_machdep.c,v 1.3 2000/12/13 18:13:11 jdolecek Exp $ */
 
 /*
@@ -44,7 +44,6 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/ioctl.h>
-#include <sys/file.h>
 #include <sys/time.h>
 #include <sys/proc.h>
 #include <sys/uio.h>
index 72e71b4..6940aba 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: ata.c,v 1.35 2015/08/17 15:36:29 krw Exp $      */
+/*      $OpenBSD: ata.c,v 1.36 2017/12/30 20:46:59 guenther Exp $      */
 /*      $NetBSD: ata.c,v 1.9 1999/04/15 09:41:09 bouyer Exp $      */
 /*
  * Copyright (c) 1998, 2001 Manuel Bouyer.  All rights reserved.
@@ -27,7 +27,6 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/kernel.h>
-#include <sys/file.h>
 #include <sys/stat.h>
 #include <sys/malloc.h>
 #include <sys/device.h>
index 8673643..b4c79e4 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: ata_wdc.c,v 1.50 2015/08/17 15:36:29 krw Exp $       */
+/*      $OpenBSD: ata_wdc.c,v 1.51 2017/12/30 20:46:59 guenther Exp $  */
 /*     $NetBSD: ata_wdc.c,v 1.21 1999/08/09 09:43:11 bouyer Exp $      */
 
 /*
@@ -58,7 +58,6 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/kernel.h>
-#include <sys/file.h>
 #include <sys/stat.h>
 #include <sys/buf.h>
 #include <sys/malloc.h>
index 7cf5857..724782f 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: atapiscsi.c,v 1.105 2017/08/11 17:25:09 mpi Exp $     */
+/*      $OpenBSD: atapiscsi.c,v 1.106 2017/12/30 20:46:59 guenther Exp $     */
 
 /*
  * This code is derived from code with the copyright below.
@@ -39,7 +39,6 @@
 #include <sys/disklabel.h>
 #include <sys/malloc.h>
 #include <sys/reboot.h>
-#include <sys/file.h>
 #include <sys/ioctl.h>
 #include <sys/timeout.h>
 #include <scsi/scsi_all.h>
index 33e4f7e..5cd4b03 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cninit.c,v 1.14 2015/03/14 03:38:46 jsg Exp $ */
+/*     $OpenBSD: cninit.c,v 1.15 2017/12/30 20:46:59 guenther Exp $    */
 /*     $NetBSD: cninit.c,v 1.2 1995/04/11 22:08:10 pk Exp $    */
 
 /*
@@ -43,7 +43,6 @@
 #include <sys/systm.h>
 #include <sys/ioctl.h>
 #include <sys/tty.h>
-#include <sys/file.h>
 #include <sys/conf.h>
 #include <sys/vnode.h>
 
index 01aca13..38faa30 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cons.c,v 1.26 2016/05/17 23:43:47 bluhm Exp $ */
+/*     $OpenBSD: cons.c,v 1.27 2017/12/30 20:46:59 guenther Exp $      */
 /*     $NetBSD: cons.c,v 1.30 1996/04/08 19:57:30 jonathan Exp $       */
 
 /*
@@ -43,7 +43,6 @@
 #include <sys/systm.h>
 #include <sys/ioctl.h>
 #include <sys/tty.h>
-#include <sys/file.h>
 #include <sys/conf.h>
 #include <sys/vnode.h>
 #include <sys/poll.h>
index 561f077..68f9ace 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: gpiodcf.c,v 1.5 2015/06/07 20:11:52 claudio Exp $ */
+/*     $OpenBSD: gpiodcf.c,v 1.6 2017/12/30 20:46:59 guenther Exp $ */
 
 /*
  * Copyright (c) 2008 Marc Balmer <mbalmer@openbsd.org>
@@ -20,7 +20,6 @@
 #include <sys/systm.h>
 #include <sys/kernel.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/select.h>
 #include <sys/proc.h>
 #include <sys/vnode.h>
index 44c4aad..314445e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: hil.c,v 1.26 2015/05/15 13:32:08 jsg Exp $    */
+/*     $OpenBSD: hil.c,v 1.27 2017/12/30 20:46:59 guenther Exp $       */
 /*
  * Copyright (c) 2003, 2004, Miodrag Vallat.
  * All rights reserved.
@@ -68,7 +68,6 @@
 #include <sys/systm.h>
 #include <sys/conf.h>
 #include <sys/device.h>
-#include <sys/file.h>
 #include <sys/ioctl.h>
 #include <sys/kernel.h>
 #include <sys/proc.h>
index 17d5506..2648cba 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: z8530sc.c,v 1.7 2013/04/21 14:44:16 sebastia Exp $    */
+/*     $OpenBSD: z8530sc.c,v 1.8 2017/12/30 20:46:59 guenther Exp $    */
 /*     $NetBSD: z8530sc.c,v 1.30 2009/05/22 03:51:30 mrg Exp $ */
 
 /*
@@ -96,7 +96,6 @@
 #include <sys/proc.h>
 #include <sys/device.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/ioctl.h>
 #include <sys/tty.h>
 #include <sys/time.h>
index ca1a2ae..973be4e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: fdc.c,v 1.22 2017/09/08 08:37:52 sf Exp $     */
+/*     $OpenBSD: fdc.c,v 1.23 2017/12/30 20:46:59 guenther Exp $       */
 /*     $NetBSD: fd.c,v 1.90 1996/05/12 23:12:03 mycroft Exp $  */
 
 /*-
@@ -45,7 +45,6 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/kernel.h>
-#include <sys/file.h>
 #include <sys/ioctl.h>
 #include <sys/device.h>
 #include <sys/disklabel.h>
index e56a525..9a414e6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: com_pcmcia.c,v 1.56 2017/09/08 05:36:52 deraadt Exp $ */
+/*     $OpenBSD: com_pcmcia.c,v 1.57 2017/12/30 20:46:59 guenther Exp $        */
 /*     $NetBSD: com_pcmcia.c,v 1.15 1998/08/22 17:47:58 msaitoh Exp $  */
 
 /*
@@ -94,7 +94,6 @@
 #include <sys/selinfo.h>
 #include <sys/tty.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/uio.h>
 #include <sys/kernel.h>
 #include <sys/syslog.h>
index 69bcad8..a72db74 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: wdc_pcmcia.c,v 1.31 2014/09/14 14:17:25 jsg Exp $     */
+/*     $OpenBSD: wdc_pcmcia.c,v 1.32 2017/12/30 20:46:59 guenther Exp $        */
 /*     $NetBSD: wdc_pcmcia.c,v 1.19 1999/02/19 21:49:43 abs Exp $ */
 
 /*-
@@ -34,7 +34,6 @@
 #include <sys/systm.h>
 #include <sys/kernel.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/stat.h>
 #include <sys/ioctl.h>
 #include <sys/buf.h>
index c390a9e..93947a2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: com_puc.c,v 1.22 2014/09/14 14:17:25 jsg Exp $        */
+/*     $OpenBSD: com_puc.c,v 1.23 2017/12/30 20:46:59 guenther Exp $   */
 
 /*
  * Copyright (c) 1997 - 1999, Jason Downs.  All rights reserved.
@@ -34,7 +34,6 @@
 #include <sys/selinfo.h>
 #include <sys/tty.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/uio.h>
 #include <sys/kernel.h>
 #include <sys/syslog.h>
index a057993..2b3a8ca 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: zs_ioasic.c,v 1.1 2017/11/02 14:04:24 mpi Exp $ */
+/* $OpenBSD: zs_ioasic.c,v 1.2 2017/12/30 20:46:59 guenther Exp $ */
 /* $NetBSD: zs_ioasic.c,v 1.40 2009/05/12 13:21:22 cegger Exp $ */
 
 /*-
@@ -50,7 +50,6 @@
 #include <sys/conf.h>
 #include <sys/device.h>
 #include <sys/malloc.h>
-#include <sys/file.h>
 #include <sys/ioctl.h>
 #include <sys/kernel.h>
 #include <sys/proc.h>
index 97ef3e8..d4fe0d9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ucycom.c,v 1.36 2017/04/08 02:57:25 deraadt Exp $     */
+/*     $OpenBSD: ucycom.c,v 1.37 2017/12/30 20:46:59 guenther Exp $    */
 /*     $NetBSD: ucycom.c,v 1.3 2005/08/05 07:27:47 skrll Exp $ */
 
 /*
@@ -45,7 +45,6 @@
 #include <sys/malloc.h>
 #include <sys/device.h>
 #include <sys/tty.h>
-#include <sys/file.h>
 
 #include <dev/usb/usb.h>
 #include <dev/usb/usbhid.h>
index 29cd8ea..d51ce4f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: udcf.c,v 1.61 2016/09/02 09:14:59 mpi Exp $ */
+/*     $OpenBSD: udcf.c,v 1.62 2017/12/30 20:46:59 guenther Exp $ */
 
 /*
  * Copyright (c) 2006, 2007, 2008 Marc Balmer <mbalmer@openbsd.org>
@@ -19,7 +19,6 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/kernel.h>
-#include <sys/file.h>
 #include <sys/select.h>
 #include <sys/device.h>
 #include <sys/poll.h>
index d776167..547be41 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: uhid.c,v 1.69 2017/09/23 06:12:14 mpi Exp $ */
+/*     $OpenBSD: uhid.c,v 1.70 2017/12/30 20:46:59 guenther Exp $ */
 /*     $NetBSD: uhid.c,v 1.57 2003/03/11 16:44:00 augustss Exp $       */
 
 /*
@@ -44,7 +44,6 @@
 #include <sys/ioctl.h>
 #include <sys/conf.h>
 #include <sys/tty.h>
-#include <sys/file.h>
 #include <sys/selinfo.h>
 #include <sys/proc.h>
 #include <sys/vnode.h>
index 3bafc0f..b60b924 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: umbg.c,v 1.24 2016/09/02 09:14:59 mpi Exp $ */
+/*     $OpenBSD: umbg.c,v 1.25 2017/12/30 20:47:00 guenther Exp $ */
 
 /*
  * Copyright (c) 2007 Marc Balmer <mbalmer@openbsd.org>
@@ -20,7 +20,6 @@
 #include <sys/systm.h>
 #include <sys/kernel.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/select.h>
 #include <sys/device.h>
 #include <sys/poll.h>
index 4d6632b..a6931c8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: umct.c,v 1.46 2017/04/08 02:57:25 deraadt Exp $       */
+/*     $OpenBSD: umct.c,v 1.47 2017/12/30 20:47:00 guenther Exp $      */
 /*     $NetBSD: umct.c,v 1.10 2003/02/23 04:20:07 simonb Exp $ */
 /*
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -42,7 +42,6 @@
 #include <sys/ioctl.h>
 #include <sys/conf.h>
 #include <sys/tty.h>
-#include <sys/file.h>
 #include <sys/selinfo.h>
 #include <sys/device.h>
 #include <sys/poll.h>
index c316515..92901d1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: umidi_quirks.c,v 1.14 2017/01/03 06:39:44 ratchov Exp $       */
+/*     $OpenBSD: umidi_quirks.c,v 1.15 2017/12/30 20:47:00 guenther Exp $      */
 /*     $NetBSD: umidi_quirks.c,v 1.4 2002/06/19 13:55:30 tshiozak Exp $        */
 
 /*
@@ -36,7 +36,6 @@
 #include <sys/device.h>
 #include <sys/ioctl.h>
 #include <sys/conf.h>
-#include <sys/file.h>
 #include <sys/selinfo.h>
 #include <sys/poll.h>
 
index 7404d15..8dbdf18 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: umodem.c,v 1.62 2017/03/29 01:27:40 jsg Exp $ */
+/*     $OpenBSD: umodem.c,v 1.63 2017/12/30 20:47:00 guenther Exp $ */
 /*     $NetBSD: umodem.c,v 1.45 2002/09/23 05:51:23 simonb Exp $       */
 
 /*
@@ -49,7 +49,6 @@
 #include <sys/kernel.h>
 #include <sys/conf.h>
 #include <sys/tty.h>
-#include <sys/file.h>
 #include <sys/selinfo.h>
 #include <sys/device.h>
 #include <sys/poll.h>
index 84f69b0..6bf0673 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: uplcom.c,v 1.69 2017/04/08 02:57:25 deraadt Exp $     */
+/*     $OpenBSD: uplcom.c,v 1.70 2017/12/30 20:47:00 guenther Exp $    */
 /*     $NetBSD: uplcom.c,v 1.29 2002/09/23 05:51:23 simonb Exp $       */
 /*
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -44,7 +44,6 @@
 #include <sys/ioctl.h>
 #include <sys/conf.h>
 #include <sys/tty.h>
-#include <sys/file.h>
 #include <sys/selinfo.h>
 #include <sys/device.h>
 #include <sys/poll.h>
index 7ec89f4..17840a1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cd9660_bmap.c,v 1.8 2014/12/16 18:30:03 tedu Exp $    */
+/*     $OpenBSD: cd9660_bmap.c,v 1.9 2017/12/30 20:47:00 guenther Exp $        */
 /*     $NetBSD: cd9660_bmap.c,v 1.7 1997/01/24 00:27:29 cgd Exp $      */
 
 /*-
@@ -40,7 +40,6 @@
 #include <sys/param.h>
 #include <sys/namei.h>
 #include <sys/buf.h>
-#include <sys/file.h>
 #include <sys/vnode.h>
 #include <sys/lock.h>
 #include <sys/mount.h>
index c14cec3..afdfb3d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cd9660_lookup.c,v 1.24 2016/03/19 12:04:15 natano Exp $       */
+/*     $OpenBSD: cd9660_lookup.c,v 1.25 2017/12/30 20:47:00 guenther Exp $     */
 /*     $NetBSD: cd9660_lookup.c,v 1.18 1997/05/08 16:19:59 mycroft Exp $       */
 
 /*-
@@ -42,7 +42,6 @@
 #include <sys/param.h>
 #include <sys/namei.h>
 #include <sys/buf.h>
-#include <sys/file.h>
 #include <sys/vnode.h>
 #include <sys/lock.h>
 #include <sys/mount.h>
index 72469a3..07eaa18 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cd9660_node.c,v 1.31 2016/06/19 11:54:33 natano Exp $ */
+/*     $OpenBSD: cd9660_node.c,v 1.32 2017/12/30 20:47:00 guenther Exp $       */
 /*     $NetBSD: cd9660_node.c,v 1.17 1997/05/05 07:13:57 mycroft Exp $ */
 
 /*-
@@ -40,7 +40,6 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/mount.h>
-#include <sys/file.h>
 #include <sys/buf.h>
 #include <sys/vnode.h>
 #include <sys/lock.h>
index fad7846..9c56d0d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cd9660_util.c,v 1.9 2015/03/14 03:38:50 jsg Exp $     */
+/*     $OpenBSD: cd9660_util.c,v 1.10 2017/12/30 20:47:00 guenther Exp $       */
 /*     $NetBSD: cd9660_util.c,v 1.12 1997/01/24 00:27:33 cgd Exp $     */
 
 /*-
@@ -43,7 +43,6 @@
 #include <sys/namei.h>
 #include <sys/resourcevar.h>
 #include <sys/kernel.h>
-#include <sys/file.h>
 #include <sys/stat.h>
 #include <sys/buf.h>
 #include <sys/conf.h>
index 37984bb..a104c29 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kern_exit.c,v 1.162 2017/11/28 06:09:44 guenther Exp $        */
+/*     $OpenBSD: kern_exit.c,v 1.163 2017/12/30 20:47:00 guenther Exp $        */
 /*     $NetBSD: kern_exit.c,v 1.39 1996/04/22 01:38:25 christos Exp $  */
 
 /*
@@ -47,7 +47,6 @@
 #include <sys/kernel.h>
 #include <sys/sysctl.h>
 #include <sys/wait.h>
-#include <sys/file.h>
 #include <sys/vnode.h>
 #include <sys/syslog.h>
 #include <sys/malloc.h>
index 4a46338..8d90d91 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kern_fork.c,v 1.201 2017/12/12 01:12:34 deraadt Exp $ */
+/*     $OpenBSD: kern_fork.c,v 1.202 2017/12/30 20:47:00 guenther Exp $        */
 /*     $NetBSD: kern_fork.c,v 1.29 1996/02/09 18:59:34 christos Exp $  */
 
 /*
@@ -49,7 +49,6 @@
 #include <sys/signalvar.h>
 #include <sys/vnode.h>
 #include <sys/vmmeter.h>
-#include <sys/file.h>
 #include <sys/acct.h>
 #include <sys/ktrace.h>
 #include <sys/sched.h>
index 7856369..e156fa6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kern_proc.c,v 1.78 2017/12/04 09:51:03 mpi Exp $      */
+/*     $OpenBSD: kern_proc.c,v 1.79 2017/12/30 20:47:00 guenther Exp $ */
 /*     $NetBSD: kern_proc.c,v 1.14 1996/02/09 18:59:41 christos Exp $  */
 
 /*
@@ -39,7 +39,6 @@
 #include <sys/buf.h>
 #include <sys/acct.h>
 #include <sys/wait.h>
-#include <sys/file.h>
 #include <ufs/ufs/quota.h>
 #include <sys/uio.h>
 #include <sys/malloc.h>
index 5e53867..bb527c5 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: subr_prf.c,v 1.91 2017/04/30 16:45:46 mpi Exp $       */
+/*     $OpenBSD: subr_prf.c,v 1.92 2017/12/30 20:47:00 guenther Exp $  */
 /*     $NetBSD: subr_prf.c,v 1.45 1997/10/24 18:14:25 chuck Exp $      */
 
 /*-
@@ -45,7 +45,6 @@
 #include <sys/proc.h>
 #include <sys/ioctl.h>
 #include <sys/vnode.h>
-#include <sys/file.h>
 #include <sys/tty.h>
 #include <sys/tprintf.h>
 #include <sys/syslog.h>
index d198134..a7c6ba1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: uipc_socket2.c,v 1.88 2017/12/10 11:31:54 mpi Exp $   */
+/*     $OpenBSD: uipc_socket2.c,v 1.89 2017/12/30 20:47:00 guenther Exp $      */
 /*     $NetBSD: uipc_socket2.c,v 1.11 1996/02/04 02:17:55 christos Exp $       */
 
 /*
@@ -34,7 +34,6 @@
 
 #include <sys/param.h>
 #include <sys/systm.h>
-#include <sys/file.h>
 #include <sys/malloc.h>
 #include <sys/mbuf.h>
 #include <sys/protosw.h>
index 9e4675f..a998059 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: msdosfs_fat.c,v 1.30 2017/08/14 22:43:56 sf Exp $     */
+/*     $OpenBSD: msdosfs_fat.c,v 1.31 2017/12/30 20:47:00 guenther Exp $       */
 /*     $NetBSD: msdosfs_fat.c,v 1.26 1997/10/17 11:24:02 ws Exp $      */
 
 /*-
@@ -54,7 +54,6 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/buf.h>
-#include <sys/file.h>
 #include <sys/namei.h>
 #include <sys/mount.h>         /* to define statfs structure */
 #include <sys/vnode.h>         /* to define vattr structure */
index d2b6118..ee4188b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: nfs_serv.c,v 1.111 2017/02/22 11:42:46 mpi Exp $      */
+/*     $OpenBSD: nfs_serv.c,v 1.112 2017/12/30 20:47:00 guenther Exp $ */
 /*     $NetBSD: nfs_serv.c,v 1.34 1997/05/12 23:37:12 fvdl Exp $       */
 
 /*
@@ -58,7 +58,6 @@
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/proc.h>
-#include <sys/file.h>
 #include <sys/namei.h>
 #include <sys/vnode.h>
 #include <sys/lock.h>
index 6855429..d349774 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ext2fs_readwrite.c,v 1.40 2016/03/01 21:00:56 natano Exp $    */
+/*     $OpenBSD: ext2fs_readwrite.c,v 1.41 2017/12/30 20:47:00 guenther Exp $  */
 /*     $NetBSD: ext2fs_readwrite.c,v 1.16 2001/02/27 04:37:47 chs Exp $        */
 
 /*-
@@ -38,7 +38,6 @@
 #include <sys/systm.h>
 #include <sys/resourcevar.h>
 #include <sys/kernel.h>
-#include <sys/file.h>
 #include <sys/stat.h>
 #include <sys/buf.h>
 #include <sys/mount.h>
index 160e187..87cd37d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ffs_vnops.c,v 1.88 2016/09/10 16:53:30 natano Exp $   */
+/*     $OpenBSD: ffs_vnops.c,v 1.89 2017/12/30 20:47:00 guenther Exp $ */
 /*     $NetBSD: ffs_vnops.c,v 1.7 1996/05/11 18:27:24 mycroft Exp $    */
 
 /*
@@ -36,7 +36,6 @@
 #include <sys/systm.h>
 #include <sys/resourcevar.h>
 #include <sys/kernel.h>
-#include <sys/file.h>
 #include <sys/stat.h>
 #include <sys/buf.h>
 #include <sys/mount.h>