mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 19:31:18 +00:00
cfed9ad4fb
Instead of calling virCgroupForDomain every time we need the virCgrouPtr instance, just do it once at Vm startup and cache a reference to the object in virLXCDomainObjPrivatePtr until shutdown of the VM. Removing the virCgroupPtr from the LXC driver state also means we don't have stale mount info, if someone mounts the cgroups filesystem after libvirtd has been started Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
48 lines
1.4 KiB
C
48 lines
1.4 KiB
C
/*
|
|
* Copyright (C) 2010-2012 Red Hat, Inc.
|
|
* Copyright IBM Corp. 2008
|
|
*
|
|
* lxc_domain.h: LXC domain helpers
|
|
*
|
|
* 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 __LXC_DOMAIN_H__
|
|
# define __LXC_DOMAIN_H__
|
|
|
|
# include "vircgroup.h"
|
|
# include "lxc_conf.h"
|
|
# include "lxc_monitor.h"
|
|
|
|
|
|
typedef struct _virLXCDomainObjPrivate virLXCDomainObjPrivate;
|
|
typedef virLXCDomainObjPrivate *virLXCDomainObjPrivatePtr;
|
|
struct _virLXCDomainObjPrivate {
|
|
virLXCMonitorPtr monitor;
|
|
bool doneStopEvent;
|
|
int stopReason;
|
|
bool wantReboot;
|
|
|
|
pid_t initpid;
|
|
|
|
virCgroupPtr cgroup;
|
|
};
|
|
|
|
extern virDomainXMLPrivateDataCallbacks virLXCDriverPrivateDataCallbacks;
|
|
extern virDomainDefParserConfig virLXCDriverDomainDefParserConfig;
|
|
|
|
#endif /* __LXC_DOMAIN_H__ */
|