Home | History | Annotate | Line # | Download | only in arm
linux_commons.c revision 1.3.18.4
      1  1.3.18.4   yamt /*	$NetBSD: linux_commons.c,v 1.3.18.4 2008/02/04 09:23:03 yamt Exp $	*/
      2       1.1  bjh21 
      3       1.1  bjh21 /*
      4       1.1  bjh21  * This file includes C files from the common
      5       1.1  bjh21  * area to decrese the number of files to compile
      6       1.1  bjh21  * in order to make building a kernel go faster.
      7       1.1  bjh21  *
      8       1.1  bjh21  * Option headers and headers which depend on
      9       1.1  bjh21  * certain options being set need to be included
     10       1.1  bjh21  * here.  This ensures that a header file sees
     11       1.1  bjh21  * the options it needs even if one of included
     12       1.1  bjh21  * C files doesn't use it.
     13       1.1  bjh21  */
     14       1.1  bjh21 
     15       1.1  bjh21 #include <sys/cdefs.h>
     16  1.3.18.4   yamt __KERNEL_RCSID(1, "$NetBSD: linux_commons.c,v 1.3.18.4 2008/02/04 09:23:03 yamt Exp $");
     17       1.1  bjh21 
     18       1.1  bjh21 #if defined(_KERNEL_OPT)
     19       1.1  bjh21 #include "opt_sysv.h"
     20       1.1  bjh21 #include "opt_nfsserver.h"
     21       1.1  bjh21 #include "fs_nfs.h"
     22       1.1  bjh21 #include "fs_lfs.h"
     23       1.1  bjh21 #endif
     24       1.1  bjh21 
     25       1.1  bjh21 #include <sys/param.h>
     26       1.1  bjh21 #include <sys/mount.h>
     27       1.1  bjh21 #include <sys/signal.h>
     28       1.1  bjh21 #include <sys/syscallargs.h>
     29       1.1  bjh21 
     30       1.1  bjh21 #include "../../common/linux_pipe.c"
     31       1.1  bjh21 #include "../../common/linux_file64.c"
     32  1.3.18.4   yamt #include "../../common/linux_fcntl64.c"
     33       1.1  bjh21 #include "../../common/linux_ipccall.c"
     34       1.1  bjh21 #include "../../common/linux_misc_notalpha.c"
     35       1.1  bjh21 #include "../../common/linux_sig_notalpha.c"
     36       1.1  bjh21 #include "../../common/linux_sigaction.c"
     37       1.1  bjh21 #include "../../common/linux_socketcall.c"
     38       1.1  bjh21 #include "../../common/linux_llseek.c"
     39       1.1  bjh21 #include "../../common/linux_oldmmap.c"
     40       1.1  bjh21 #include "../../common/linux_oldselect.c"
     41       1.1  bjh21 #include "../../common/linux_olduname.c"
     42       1.1  bjh21 #include "../../common/linux_oldolduname.c"
     43  1.3.18.3   yamt #include "../../common/linux_uid16.c"
     44