2025-01-04 11:04:27 +11:00
|
|
|
// SPDX-License-Identifier: CDDL-1.0
|
2008-11-20 12:01:55 -08:00
|
|
|
/*
|
|
|
|
|
* CDDL HEADER START
|
|
|
|
|
*
|
|
|
|
|
* The contents of this file are subject to the terms of the
|
|
|
|
|
* Common Development and Distribution License (the "License").
|
|
|
|
|
* You may not use this file except in compliance with the License.
|
|
|
|
|
*
|
|
|
|
|
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
2022-07-11 23:16:13 +02:00
|
|
|
* or https://opensource.org/licenses/CDDL-1.0.
|
2008-11-20 12:01:55 -08:00
|
|
|
* See the License for the specific language governing permissions
|
|
|
|
|
* and limitations under the License.
|
|
|
|
|
*
|
|
|
|
|
* When distributing Covered Code, include this CDDL HEADER in each
|
|
|
|
|
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
|
|
|
|
* If applicable, add the following below this CDDL HEADER, with the
|
|
|
|
|
* fields enclosed by brackets "[]" replaced with your own identifying
|
|
|
|
|
* information: Portions Copyright [yyyy] [name of copyright owner]
|
|
|
|
|
*
|
|
|
|
|
* CDDL HEADER END
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
2010-05-28 13:45:14 -07:00
|
|
|
* Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
|
2014-03-22 05:07:14 -04:00
|
|
|
* Copyright (c) 2016 Actifio, Inc. All rights reserved.
|
2008-11-20 12:01:55 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _SYS_ZVOL_H
|
|
|
|
|
#define _SYS_ZVOL_H
|
|
|
|
|
|
|
|
|
|
#include <sys/zfs_context.h>
|
|
|
|
|
|
|
|
|
|
#define ZVOL_OBJ 1ULL
|
|
|
|
|
#define ZVOL_ZAP_OBJ 2ULL
|
|
|
|
|
|
2016-10-28 23:53:24 +00:00
|
|
|
#define SPEC_MAXOFFSET_T ((1LL << ((NBBY * sizeof (daddr32_t)) + \
|
|
|
|
|
DEV_BSHIFT - 1)) - 1)
|
|
|
|
|
|
2025-08-06 17:10:52 +03:00
|
|
|
extern void zvol_create_minors(const char *);
|
2020-02-03 09:33:14 -08:00
|
|
|
extern void zvol_remove_minors(spa_t *, const char *, boolean_t);
|
|
|
|
|
extern void zvol_rename_minors(spa_t *, const char *, const char *, boolean_t);
|
2010-08-26 11:45:02 -07:00
|
|
|
|
2014-03-22 05:07:14 -04:00
|
|
|
#ifdef _KERNEL
|
2019-09-25 09:20:30 -07:00
|
|
|
struct zvol_state;
|
|
|
|
|
typedef struct zvol_state zvol_state_handle_t;
|
2017-01-19 13:56:36 -08:00
|
|
|
|
2020-02-03 09:33:14 -08:00
|
|
|
extern int zvol_check_volsize(uint64_t, uint64_t);
|
|
|
|
|
extern int zvol_check_volblocksize(const char *, uint64_t);
|
|
|
|
|
extern int zvol_get_stats(objset_t *, nvlist_t *);
|
2012-12-17 10:33:57 +09:00
|
|
|
extern boolean_t zvol_is_zvol(const char *);
|
2020-02-03 09:33:14 -08:00
|
|
|
extern void zvol_create_cb(objset_t *, void *, cred_t *, dmu_tx_t *);
|
2010-08-26 11:45:02 -07:00
|
|
|
extern int zvol_set_volsize(const char *, uint64_t);
|
2023-10-25 02:53:27 +05:00
|
|
|
extern int zvol_set_volthreading(const char *, boolean_t);
|
2023-10-12 03:31:11 +05:00
|
|
|
extern int zvol_set_common(const char *, zfs_prop_t, zprop_source_t, uint64_t);
|
2023-10-18 00:19:58 +05:00
|
|
|
extern int zvol_set_ro(const char *, boolean_t);
|
2025-09-04 04:13:09 +10:00
|
|
|
extern int zvol_suspend(const char *, zvol_state_handle_t **);
|
2019-09-25 09:20:30 -07:00
|
|
|
extern int zvol_resume(zvol_state_handle_t *);
|
|
|
|
|
extern void *zvol_tag(zvol_state_handle_t *);
|
2008-11-20 12:01:55 -08:00
|
|
|
|
2010-08-26 11:45:02 -07:00
|
|
|
extern int zvol_init(void);
|
2008-11-20 12:01:55 -08:00
|
|
|
extern void zvol_fini(void);
|
2019-09-25 09:20:30 -07:00
|
|
|
extern int zvol_busy(void);
|
|
|
|
|
|
2010-08-26 11:45:02 -07:00
|
|
|
#endif /* _KERNEL */
|
|
|
|
|
#endif /* _SYS_ZVOL_H */
|