Home | History | Annotate | Line # | Download | only in sys
      1  1.1     haad /*
      2  1.1     haad  * CDDL HEADER START
      3  1.1     haad  *
      4  1.1     haad  * The contents of this file are subject to the terms of the
      5  1.1     haad  * Common Development and Distribution License (the "License").
      6  1.1     haad  * You may not use this file except in compliance with the License.
      7  1.1     haad  *
      8  1.1     haad  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
      9  1.1     haad  * or http://www.opensolaris.org/os/licensing.
     10  1.1     haad  * See the License for the specific language governing permissions
     11  1.1     haad  * and limitations under the License.
     12  1.1     haad  *
     13  1.1     haad  * When distributing Covered Code, include this CDDL HEADER in each
     14  1.1     haad  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
     15  1.1     haad  * If applicable, add the following below this CDDL HEADER, with the
     16  1.1     haad  * fields enclosed by brackets "[]" replaced with your own identifying
     17  1.1     haad  * information: Portions Copyright [yyyy] [name of copyright owner]
     18  1.1     haad  *
     19  1.1     haad  * CDDL HEADER END
     20  1.1     haad  */
     21  1.1     haad 
     22  1.1     haad /*
     23  1.4      chs  * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
     24  1.1     haad  */
     25  1.1     haad 
     26  1.1     haad #ifndef	_SYS_ZVOL_H
     27  1.1     haad #define	_SYS_ZVOL_H
     28  1.1     haad 
     29  1.1     haad #include <sys/zfs_context.h>
     30  1.1     haad 
     31  1.1     haad #ifdef	__cplusplus
     32  1.1     haad extern "C" {
     33  1.1     haad #endif
     34  1.1     haad 
     35  1.1     haad #define	ZVOL_OBJ		1ULL
     36  1.1     haad #define	ZVOL_ZAP_OBJ		2ULL
     37  1.1     haad 
     38  1.1     haad #ifdef _KERNEL
     39  1.1     haad extern int zvol_check_volsize(uint64_t volsize, uint64_t blocksize);
     40  1.1     haad extern int zvol_check_volblocksize(uint64_t volblocksize);
     41  1.1     haad extern int zvol_get_stats(objset_t *os, nvlist_t *nv);
     42  1.1     haad extern void zvol_create_cb(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx);
     43  1.3     haad extern int zvol_create_minor(const char *);
     44  1.1     haad extern int zvol_remove_minor(const char *);
     45  1.3     haad extern void zvol_remove_minors(const char *);
     46  1.4      chs extern int zvol_set_volsize(const char *, uint64_t);
     47  1.1     haad 
     48  1.4      chs #ifndef __FreeBSD__
     49  1.1     haad extern int zvol_open(dev_t *devp, int flag, int otyp, cred_t *cr);
     50  1.1     haad extern int zvol_dump(dev_t dev, caddr_t addr, daddr_t offset, int nblocks);
     51  1.1     haad extern int zvol_close(dev_t dev, int flag, int otyp, cred_t *cr);
     52  1.4      chs #ifdef __NetBSD__
     53  1.2     haad extern void zvol_strategy(buf_t *bp);
     54  1.4      chs #else
     55  1.4      chs extern int zvol_strategy(buf_t *bp);
     56  1.4      chs #endif
     57  1.1     haad extern int zvol_read(dev_t dev, uio_t *uiop, cred_t *cr);
     58  1.1     haad extern int zvol_write(dev_t dev, uio_t *uiop, cred_t *cr);
     59  1.1     haad extern int zvol_aread(dev_t dev, struct aio_req *aio, cred_t *cr);
     60  1.1     haad extern int zvol_awrite(dev_t dev, struct aio_req *aio, cred_t *cr);
     61  1.4      chs #endif	/* !__FreeBSD__ */
     62  1.1     haad extern int zvol_ioctl(dev_t dev, int cmd, intptr_t arg, int flag, cred_t *cr,
     63  1.1     haad     int *rvalp);
     64  1.1     haad extern int zvol_busy(void);
     65  1.1     haad extern void zvol_init(void);
     66  1.1     haad extern void zvol_fini(void);
     67  1.4      chs 
     68  1.4      chs #ifdef illumos
     69  1.4      chs extern int zvol_get_volume_params(minor_t minor, uint64_t *blksize,
     70  1.4      chs     uint64_t *max_xfer_len, void **minor_hdl, void **objset_hdl, void **zil_hdl,
     71  1.4      chs     void **rl_hdl, void **bonus_hdl);
     72  1.4      chs extern uint64_t zvol_get_volume_size(void *minor_hdl);
     73  1.4      chs extern int zvol_get_volume_wce(void *minor_hdl);
     74  1.4      chs extern void zvol_log_write_minor(void *minor_hdl, dmu_tx_t *tx, offset_t off,
     75  1.4      chs     ssize_t resid, boolean_t sync);
     76  1.4      chs #endif	/* illumos */
     77  1.4      chs 
     78  1.5  hannken #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__)
     79  1.4      chs extern int zvol_create_minors(const char *name);
     80  1.4      chs extern void zvol_rename_minors(const char *oldname, const char *newname);
     81  1.1     haad #endif
     82  1.1     haad 
     83  1.4      chs #endif	/* _KERNEL */
     84  1.4      chs 
     85  1.1     haad #ifdef	__cplusplus
     86  1.1     haad }
     87  1.1     haad #endif
     88  1.1     haad 
     89  1.1     haad #endif	/* _SYS_ZVOL_H */
     90