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/contrib/openzfs/include/sys/zvol.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  * 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 https://opensource.org/licenses/CDDL-1.0.
   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 /*
   23  * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
   24  * Copyright (c) 2016 Actifio, Inc. All rights reserved.
   25  */
   26 
   27 #ifndef _SYS_ZVOL_H
   28 #define _SYS_ZVOL_H
   29 
   30 #include <sys/zfs_context.h>
   31 
   32 #define ZVOL_OBJ                1ULL
   33 #define ZVOL_ZAP_OBJ            2ULL
   34 
   35 #define SPEC_MAXOFFSET_T        ((1LL << ((NBBY * sizeof (daddr32_t)) + \
   36                                 DEV_BSHIFT - 1)) - 1)
   37 
   38 extern void zvol_create_minor(const char *);
   39 extern void zvol_create_minors_recursive(const char *);
   40 extern void zvol_remove_minors(spa_t *, const char *, boolean_t);
   41 extern void zvol_rename_minors(spa_t *, const char *, const char *, boolean_t);
   42 
   43 #ifdef _KERNEL
   44 struct zvol_state;
   45 typedef struct zvol_state zvol_state_handle_t;
   46 
   47 extern int zvol_check_volsize(uint64_t, uint64_t);
   48 extern int zvol_check_volblocksize(const char *, uint64_t);
   49 extern int zvol_get_stats(objset_t *, nvlist_t *);
   50 extern boolean_t zvol_is_zvol(const char *);
   51 extern void zvol_create_cb(objset_t *, void *, cred_t *, dmu_tx_t *);
   52 extern int zvol_set_volsize(const char *, uint64_t);
   53 extern int zvol_set_snapdev(const char *, zprop_source_t, uint64_t);
   54 extern int zvol_set_volmode(const char *, zprop_source_t, uint64_t);
   55 extern zvol_state_handle_t *zvol_suspend(const char *);
   56 extern int zvol_resume(zvol_state_handle_t *);
   57 extern void *zvol_tag(zvol_state_handle_t *);
   58 
   59 extern int zvol_init(void);
   60 extern void zvol_fini(void);
   61 extern int zvol_busy(void);
   62 
   63 #endif /* _KERNEL */
   64 #endif /* _SYS_ZVOL_H */

Cache object: 7be349a0696eb0a7635a18263d997935


[ 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.