/*
* 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
* or http://www.opensolaris.org/os/licensing.
* 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
*/
/*
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
*/
#ifndef _FMD_ZFS_H
#define _FMD_ZFS_H
#include <libnvpair.h>
#include <libzfs.h>
#include <sys/dditypes.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
VDEV_NULL,
VDEV_IS_DATA,
VDEV_IS_LOG,
VDEV_IS_CACHE,
VDEV_IS_AVAIL_SPARE,
VDEV_IS_ACTIVE_SPARE,
VDEV_IS_SPARED_DATA,
VDEV_IS_SPARED_LOG,
VDEV_IS_REPLACING
} vdev_type_t;
typedef int (*fmd_zfs_func_t)(zpool_handle_t *, nvlist_t *, void *,
vdev_type_t, nvlist_t *);
#define FMD_ZFS_ITER_CONTINUE 1
#define FMD_ZFS_ITER_TERMINATE 2
typedef struct fmd_zfs_cb {
char *fz_devchassis;
char *fz_chassissn;
char *fz_location;
char *fz_physpath;
char *fz_devid;
char *fz_path;
boolean_t fz_isrestart;
} fmd_zfs_cb_t;
extern int fmd_zfs_replace_with_spare(zpool_handle_t *, nvlist_t *, void *,
vdev_type_t, nvlist_t *);
extern int fmd_zfs_fault_vdev(zpool_handle_t *, nvlist_t *, void *,
vdev_type_t, nvlist_t *);
extern int fmd_zfs_degrade_vdev(zpool_handle_t *, nvlist_t *, void *,
vdev_type_t, nvlist_t *);
extern int fmd_zfs_clear_vdev(zpool_handle_t *, nvlist_t *, void *,
vdev_type_t, nvlist_t *);
extern int fmd_zfs_in_config(zpool_handle_t *, nvlist_t *, void *,
vdev_type_t, nvlist_t *);
extern int fmd_zfs_vdev_state(zpool_handle_t *, nvlist_t *, void *,
vdev_type_t, nvlist_t *);
extern void fmd_zfs_iter_by_location(libzfs_handle_t *, char *, char *,
fmd_zfs_func_t, void *);
extern void fmd_zfs_iter_all(libzfs_handle_t *, fmd_zfs_func_t, void *);
extern void fmd_zfs_iter_by_devpath(libzfs_handle_t *, char *,
fmd_zfs_func_t, void *);
extern void fmd_zfs_iter_by_devid(libzfs_handle_t *, char *,
fmd_zfs_func_t, void *);
extern void fmd_zfs_iter_by_guid(libzfs_handle_t *, uint64_t, uint64_t,
fmd_zfs_func_t, void *);
extern int fmd_zfs_autoreplace(zpool_handle_t *, nvlist_t *, void *,
vdev_type_t, nvlist_t *);
extern int fmd_zfs_set_location(zpool_handle_t *, nvlist_t *, void *,
vdev_type_t, nvlist_t *);
extern int fmd_zfs_reonline(zpool_handle_t *, nvlist_t *, void *,
vdev_type_t, nvlist_t *);
extern int fmd_zfs_autoexpand(zpool_handle_t *, nvlist_t *, void *,
vdev_type_t, nvlist_t *);
#ifdef __cplusplus
}
#endif
#endif /* _FMD_ZFS_H */