2019-11-01 11:34:52 +00:00
|
|
|
/*
|
|
|
|
* qemu_virtiofs.h: virtiofs support
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
char *
|
2021-03-11 07:16:13 +00:00
|
|
|
qemuVirtioFSCreatePidFilename(virDomainObj *vm,
|
2019-11-01 11:34:52 +00:00
|
|
|
const char *alias);
|
|
|
|
char *
|
2021-03-11 07:16:13 +00:00
|
|
|
qemuVirtioFSCreateSocketFilename(virDomainObj *vm,
|
2019-11-01 11:34:52 +00:00
|
|
|
const char *alias);
|
|
|
|
|
|
|
|
int
|
2021-03-11 07:16:13 +00:00
|
|
|
qemuVirtioFSStart(virLogManager *logManager,
|
|
|
|
virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
|
|
|
virDomainFSDef *fs);
|
2019-11-01 11:34:52 +00:00
|
|
|
void
|
2021-03-11 07:16:13 +00:00
|
|
|
qemuVirtioFSStop(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
|
|
|
virDomainFSDef *fs);
|
2020-02-18 15:12:29 +00:00
|
|
|
|
|
|
|
int
|
2021-03-11 07:16:13 +00:00
|
|
|
qemuVirtioFSSetupCgroup(virDomainObj *vm,
|
|
|
|
virDomainFSDef *fs,
|
|
|
|
virCgroup *cgroup);
|
2020-01-28 14:38:52 +00:00
|
|
|
|
|
|
|
int
|
2021-03-11 07:16:13 +00:00
|
|
|
qemuVirtioFSPrepareDomain(virQEMUDriver *driver,
|
|
|
|
virDomainFSDef *fs);
|