qemu_cgroup.h 2.3 KB
Newer Older
1 2 3
/*
 * qemu_cgroup.h: QEMU cgroup management
 *
4
 * Copyright (C) 2006-2007, 2009-2012 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
int qemuSetupHostUsbDeviceCgroup(virUSBDevicePtr dev,
37 38
                                 const char *path,
                                 void *opaque);
39
int qemuInitCgroup(virQEMUDriverPtr driver,
40 41
                   virDomainObjPtr vm,
                   bool startup);
42
int qemuSetupCgroup(virQEMUDriverPtr driver,
43
                    virDomainObjPtr vm,
44
                    virBitmapPtr nodemask);
45 46 47
int qemuSetupCgroupVcpuBW(virCgroupPtr cgroup,
                          unsigned long long period,
                          long long quota);
48 49 50 51
int qemuSetupCgroupVcpuPin(virCgroupPtr cgroup,
                           virDomainVcpuPinDefPtr *vcpupin,
                           int nvcpupin,
                           int vcpuid);
52
int qemuSetupCgroupEmulatorPin(virCgroupPtr cgroup, virBitmapPtr cpumask);
53
int qemuSetupCgroupForVcpu(virDomainObjPtr vm);
54
int qemuSetupCgroupForEmulator(virQEMUDriverPtr driver,
55 56
                               virDomainObjPtr vm,
                               virBitmapPtr nodemask);
57 58
int qemuRemoveCgroup(virDomainObjPtr vm);
int qemuAddToCgroup(virDomainObjPtr vm);
59 60

#endif /* __QEMU_CGROUP_H__ */