Home | History | Annotate | Download | only in sys
      1 /*
      2  * CDDL HEADER START
      3  *
      4  * The contents of this file are subject to the terms of the
      5  * Common Development and Distribution License (the "License").
      6  * You may not use this file except in compliance with the License.
      7  *
      8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
      9  * or http://www.opensolaris.org/os/licensing.
     10  * See the License for the specific language governing permissions
     11  * and limitations under the License.
     12  *
     13  * When distributing Covered Code, include this CDDL HEADER in each
     14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
     15  * If applicable, add the following below this CDDL HEADER, with the
     16  * fields enclosed by brackets "[]" replaced with your own identifying
     17  * information: Portions Copyright [yyyy] [name of copyright owner]
     18  *
     19  * CDDL HEADER END
     20  */
     21 /*
     22  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
     23  * Use is subject to license terms.
     24  */
     25 
     26 #ifndef _SYS_ZFS_CONTEXT_H
     27 #define	_SYS_ZFS_CONTEXT_H
     28 
     29 #pragma ident	"@(#)zfs_context.h	1.3	07/10/24 SMI"
     30 
     31 #ifdef	__cplusplus
     32 extern "C" {
     33 #endif
     34 
     35 #include <sys/note.h>
     36 #include <sys/types.h>
     37 #include <sys/t_lock.h>
     38 #include <sys/atomic.h>
     39 #include <sys/sysmacros.h>
     40 #include <sys/bitmap.h>
     41 #include <sys/cmn_err.h>
     42 #include <sys/kmem.h>
     43 #include <sys/taskq.h>
     44 #include <sys/buf.h>
     45 #include <sys/param.h>
     46 #include <sys/systm.h>
     47 #include <sys/cpuvar.h>
     48 #include <sys/kobj.h>
     49 #include <sys/conf.h>
     50 #include <sys/disp.h>
     51 #include <sys/debug.h>
     52 #include <sys/random.h>
     53 #include <sys/byteorder.h>
     54 #include <sys/systm.h>
     55 #include <sys/list.h>
     56 #include <sys/uio.h>
     57 #include <sys/dirent.h>
     58 #include <sys/time.h>
     59 #include <vm/seg_kmem.h>
     60 #include <sys/zone.h>
     61 #include <sys/uio.h>
     62 #include <sys/zfs_debug.h>
     63 #include <sys/sysevent.h>
     64 #include <sys/sysevent/eventdefs.h>
     65 #include <sys/fm/util.h>
     66 
     67 #define	CPU_SEQID	(CPU->cpu_seqid)
     68 
     69 #ifdef	__cplusplus
     70 }
     71 #endif
     72 
     73 #endif	/* _SYS_ZFS_CONTEXT_H */
     74