The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/vinum/vinumhdr.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 1997, 1998
    3  *      Nan Yang Computer Services Limited.  All rights reserved.
    4  *
    5  *  This software is distributed under the so-called ``Berkeley
    6  *  License'':
    7  *
    8  * Redistribution and use in source and binary forms, with or without
    9  * modification, are permitted provided that the following conditions
   10  * are met:
   11  * 1. Redistributions of source code must retain the above copyright
   12  *    notice, this list of conditions and the following disclaimer.
   13  * 2. Redistributions in binary form must reproduce the above copyright
   14  *    notice, this list of conditions and the following disclaimer in the
   15  *    documentation and/or other materials provided with the distribution.
   16  * 3. All advertising materials mentioning features or use of this software
   17  *    must display the following acknowledgement:
   18  *      This product includes software developed by Nan Yang Computer
   19  *      Services Limited.
   20  * 4. Neither the name of the Company nor the names of its contributors
   21  *    may be used to endorse or promote products derived from this software
   22  *    without specific prior written permission.
   23  *  
   24  * This software is provided ``as is'', and any express or implied
   25  * warranties, including, but not limited to, the implied warranties of
   26  * merchantability and fitness for a particular purpose are disclaimed.
   27  * In no event shall the company or contributors be liable for any
   28  * direct, indirect, incidental, special, exemplary, or consequential
   29  * damages (including, but not limited to, procurement of substitute
   30  * goods or services; loss of use, data, or profits; or business
   31  * interruption) however caused and on any theory of liability, whether
   32  * in contract, strict liability, or tort (including negligence or
   33  * otherwise) arising in any way out of the use of this software, even if
   34  * advised of the possibility of such damage.
   35  */
   36 
   37 /* Header files used by all modules */
   38 /*
   39  * $Id: vinumhdr.h,v 1.19 2001/05/22 04:07:22 grog Exp grog $
   40  * $FreeBSD$
   41  */
   42 
   43 #include <sys/param.h>
   44 #ifdef _KERNEL
   45 #include "opt_vinum.h"
   46 #include <sys/systm.h>
   47 #include <sys/kdb.h>
   48 #include <sys/kernel.h>
   49 #include <sys/proc.h>
   50 #include <sys/conf.h>
   51 #include <sys/mount.h>
   52 #include <sys/vnode.h>
   53 #include <sys/sysctl.h>
   54 #endif
   55 #include <sys/errno.h>
   56 #include <sys/time.h>
   57 #include <sys/bio.h>
   58 #include <sys/buf.h>
   59 #include <sys/malloc.h>
   60 #include <sys/uio.h>
   61 #include <sys/namei.h>
   62 #include <sys/stat.h>
   63 #include <sys/disk.h>
   64 #include <sys/disklabel.h>
   65 #include <sys/syslog.h>
   66 #include <sys/fcntl.h>
   67 #include <sys/queue.h>
   68 #ifdef _KERNEL
   69 #include <machine/setjmp.h>
   70 #include <machine/stdarg.h>
   71 #else
   72 #include <setjmp.h>
   73 #include <stdarg.h>
   74 #endif
   75 #include <vm/vm.h>
   76 #include <dev/vinum/vinumvar.h>
   77 #include <dev/vinum/vinumio.h>
   78 #include <dev/vinum/vinumkw.h>
   79 #include <dev/vinum/vinumext.h>
   80 #include <dev/vinum/vinumutil.h>
   81 #include <machine/cpu.h>

Cache object: 017e8521ad1387175faa0390489b739e


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.