2014-07-21 14:38:42 +00:00
|
|
|
/*
|
|
|
|
* storage_backend_zfs.h: storage backend for ZFS handling
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Roman Bogorodskiy
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __VIR_STORAGE_BACKEND_ZFS_H__
|
|
|
|
# define __VIR_STORAGE_BACKEND_ZFS_H__
|
|
|
|
|
2017-01-13 15:50:11 +00:00
|
|
|
int virStorageBackendZFSRegister(void);
|
2014-07-21 14:38:42 +00:00
|
|
|
|
|
|
|
#endif /* __VIR_STORAGE_BACKEND_ZFS_H__ */
|