Move putter code from directly under dev/ to dev/putter/
no functional change
This commit is contained in:
parent
9bf7522dd1
commit
70981e62b1
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: files,v 1.872 2007/11/11 17:37:45 jmcneill Exp $
|
||||
# $NetBSD: files,v 1.873 2007/11/12 14:30:55 pooka Exp $
|
||||
|
||||
# @(#)files.newconf 7.5 (Berkeley) 5/10/93
|
||||
|
||||
|
@ -1227,7 +1227,7 @@ defpseudo cpuctl
|
|||
|
||||
# pass-to-userspace transporter
|
||||
defpseudo putter
|
||||
file dev/putter.c putter
|
||||
file dev/putter/putter.c putter
|
||||
|
||||
#
|
||||
# File systems
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: putter.c,v 1.3 2007/11/11 19:49:11 pooka Exp $ */
|
||||
/* $NetBSD: putter.c,v 1.1 2007/11/12 14:30:56 pooka Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2006, 2007 Antti Kantee. All Rights Reserved.
|
||||
|
@ -35,7 +35,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: putter.c,v 1.3 2007/11/11 19:49:11 pooka Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: putter.c,v 1.1 2007/11/12 14:30:56 pooka Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/conf.h>
|
||||
|
@ -45,7 +45,7 @@ __KERNEL_RCSID(0, "$NetBSD: putter.c,v 1.3 2007/11/11 19:49:11 pooka Exp $");
|
|||
#include <sys/poll.h>
|
||||
#include <sys/socketvar.h>
|
||||
|
||||
#include <dev/puttervar.h>
|
||||
#include <dev/putter/puttervar.h>
|
||||
|
||||
#include <fs/puffs/puffs_msgif.h> /* XXX: for frame headers, goes away soon */
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: puttervar.h,v 1.1 2007/11/10 21:45:05 pooka Exp $ */
|
||||
/* $NetBSD: puttervar.h,v 1.1 2007/11/12 14:30:56 pooka Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Antti Kantee. All Rights Reserved.
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: puffs_msgif.c,v 1.53 2007/11/10 21:45:06 pooka Exp $ */
|
||||
/* $NetBSD: puffs_msgif.c,v 1.54 2007/11/12 14:30:56 pooka Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2005, 2006, 2007 Antti Kantee. All Rights Reserved.
|
||||
|
@ -30,7 +30,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: puffs_msgif.c,v 1.53 2007/11/10 21:45:06 pooka Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: puffs_msgif.c,v 1.54 2007/11/12 14:30:56 pooka Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/fstrans.h>
|
||||
|
@ -43,7 +43,7 @@ __KERNEL_RCSID(0, "$NetBSD: puffs_msgif.c,v 1.53 2007/11/10 21:45:06 pooka Exp $
|
|||
#include <sys/proc.h>
|
||||
#include <sys/vnode.h>
|
||||
|
||||
#include <dev/puttervar.h>
|
||||
#include <dev/putter/puttervar.h>
|
||||
|
||||
#include <fs/puffs/puffs_msgif.h>
|
||||
#include <fs/puffs/puffs_sys.h>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: puffs_vfsops.c,v 1.66 2007/11/10 21:45:08 pooka Exp $ */
|
||||
/* $NetBSD: puffs_vfsops.c,v 1.67 2007/11/12 14:30:56 pooka Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2005, 2006 Antti Kantee. All Rights Reserved.
|
||||
|
@ -30,7 +30,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: puffs_vfsops.c,v 1.66 2007/11/10 21:45:08 pooka Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: puffs_vfsops.c,v 1.67 2007/11/12 14:30:56 pooka Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/mount.h>
|
||||
|
@ -43,7 +43,7 @@ __KERNEL_RCSID(0, "$NetBSD: puffs_vfsops.c,v 1.66 2007/11/10 21:45:08 pooka Exp
|
|||
#include <sys/fstrans.h>
|
||||
#include <sys/proc.h>
|
||||
|
||||
#include <dev/puttervar.h>
|
||||
#include <dev/putter/puttervar.h>
|
||||
|
||||
#include <fs/puffs/puffs_msgif.h>
|
||||
#include <fs/puffs/puffs_sys.h>
|
||||
|
|
Loading…
Reference in New Issue