qemu_cgroup.h 2.4 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
int qemuSetupDiskCgroup(virDomainObjPtr vm,
33
                        virDomainDiskDefPtr disk);
34
int qemuTeardownDiskCgroup(virDomainObjPtr vm,
35
                           virDomainDiskDefPtr disk);
36 37 38 39 40 41
int qemuSetupHostdevCGroup(virDomainObjPtr vm,
                           virDomainHostdevDefPtr dev)
   ATTRIBUTE_RETURN_CHECK;
int qemuTeardownHostdevCgroup(virDomainObjPtr vm,
                              virDomainHostdevDefPtr dev)
   ATTRIBUTE_RETURN_CHECK;
42 43
int qemuConnectCgroup(virQEMUDriverPtr driver,
                      virDomainObjPtr vm);
44
int qemuSetupCgroup(virQEMUDriverPtr driver,
45
                    virDomainObjPtr vm,
46
                    virBitmapPtr nodemask);
47 48 49
int qemuSetupCgroupVcpuBW(virCgroupPtr cgroup,
                          unsigned long long period,
                          long long quota);
50 51 52 53
int qemuSetupCgroupVcpuPin(virCgroupPtr cgroup,
                           virDomainVcpuPinDefPtr *vcpupin,
                           int nvcpupin,
                           int vcpuid);
54
int qemuSetupCgroupEmulatorPin(virCgroupPtr cgroup, virBitmapPtr cpumask);
55
int qemuSetupCgroupForVcpu(virDomainObjPtr vm);
56
int qemuSetupCgroupForEmulator(virQEMUDriverPtr driver,
57 58
                               virDomainObjPtr vm,
                               virBitmapPtr nodemask);
59 60
int qemuRemoveCgroup(virDomainObjPtr vm);
int qemuAddToCgroup(virDomainObjPtr vm);
61 62

#endif /* __QEMU_CGROUP_H__ */