qemu_cgroup.h 2.5 KB
Newer Older
1 2 3
/*
 * qemu_cgroup.h: QEMU cgroup management
 *
4
 * Copyright (C) 2006-2007, 2009-2013 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * Copyright (C) 2006 Daniel P. Berrange
 *
 * 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
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24 25 26
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#ifndef __QEMU_CGROUP_H__
# define __QEMU_CGROUP_H__

27
# include "virusb.h"
28
# include "vircgroup.h"
29 30 31
# include "domain_conf.h"
# include "qemu_conf.h"

32 33 34
int qemuSetImageCgroup(virDomainObjPtr vm,
                       virStorageSourcePtr src,
                       bool deny);
35
int qemuSetupDiskCgroup(virDomainObjPtr vm,
36
                        virDomainDiskDefPtr disk);
37
int qemuTeardownDiskCgroup(virDomainObjPtr vm,
38
                           virDomainDiskDefPtr disk);
39 40 41 42 43 44
int qemuSetupHostdevCGroup(virDomainObjPtr vm,
                           virDomainHostdevDefPtr dev)
   ATTRIBUTE_RETURN_CHECK;
int qemuTeardownHostdevCgroup(virDomainObjPtr vm,
                              virDomainHostdevDefPtr dev)
   ATTRIBUTE_RETURN_CHECK;
45 46
int qemuConnectCgroup(virQEMUDriverPtr driver,
                      virDomainObjPtr vm);
47
int qemuSetupCgroup(virQEMUDriverPtr driver,
48
                    virDomainObjPtr vm,
49
                    virBitmapPtr nodemask);
50 51 52
int qemuSetupCgroupVcpuBW(virCgroupPtr cgroup,
                          unsigned long long period,
                          long long quota);
53 54 55 56
int qemuSetupCgroupVcpuPin(virCgroupPtr cgroup,
                           virDomainVcpuPinDefPtr *vcpupin,
                           int nvcpupin,
                           int vcpuid);
57
int qemuSetupCgroupEmulatorPin(virCgroupPtr cgroup, virBitmapPtr cpumask);
58
int qemuSetupCgroupForVcpu(virDomainObjPtr vm);
59
int qemuSetupCgroupForEmulator(virQEMUDriverPtr driver,
60 61
                               virDomainObjPtr vm,
                               virBitmapPtr nodemask);
62 63
int qemuRemoveCgroup(virDomainObjPtr vm);
int qemuAddToCgroup(virDomainObjPtr vm);
64 65

#endif /* __QEMU_CGROUP_H__ */