Rename vfs_aio.c to sys_aio.c as decided in <tech-kern>.

Please note, that <tech-kern> people should note about
file names before commit. Otherwise, function may fail
with errno set to EDIRTY, and return -1. ;)
This commit is contained in:
rmind 2007-05-07 22:22:20 +00:00
parent 71ab04cbde
commit 10c3d35ca0
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: files,v 1.840 2007/05/02 20:40:22 dyoung Exp $
# $NetBSD: files,v 1.841 2007/05/07 22:22:20 rmind Exp $
# @(#)files.newconf 7.5 (Berkeley) 5/10/93
@ -1357,6 +1357,7 @@ file kern/subr_userconf.c userconf
file kern/subr_vmem.c
file kern/subr_workqueue.c
file kern/subr_xxx.c
file kern/sys_aio.c
file kern/sys_generic.c
file kern/sys_lwp.c
file kern/sys_pipe.c !pipe_socketpair
@ -1386,7 +1387,6 @@ file kern/uipc_socket.c
file kern/uipc_socket2.c
file kern/uipc_syscalls.c
file kern/uipc_usrreq.c
file kern/vfs_aio.c
file kern/vfs_bio.c
file kern/vfs_cache.c
file kern/vfs_getcwd.c

View File

@ -1,4 +1,4 @@
/* $NetBSD: vfs_aio.c,v 1.5 2007/05/05 20:38:43 ad Exp $ */
/* $NetBSD: sys_aio.c,v 1.1 2007/05/07 22:22:21 rmind Exp $ */
/*
* Copyright (c) 2007, Mindaugas Rasiukevicius <rmind at NetBSD org>
@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: vfs_aio.c,v 1.5 2007/05/05 20:38:43 ad Exp $");
__KERNEL_RCSID(0, "$NetBSD: sys_aio.c,v 1.1 2007/05/07 22:22:21 rmind Exp $");
#include <sys/param.h>