Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753536AbdGLP4w (ORCPT ); Wed, 12 Jul 2017 11:56:52 -0400 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:42589 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753177AbdGLP4u (ORCPT ); Wed, 12 Jul 2017 11:56:50 -0400 From: Claudio Imbrenda To: kvm@vger.kernel.org Cc: borntraeger@de.ibm.com, pbonzini@redhat.com, linux-kernel@vger.kernel.org, david@redhat.com Subject: [PATCH v5 0/1] KVM: trigger uevents when creating or destroying a VM Date: Wed, 12 Jul 2017 17:56:43 +0200 X-Mailer: git-send-email 2.7.4 X-TM-AS-GCONF: 00 x-cbid: 17071215-0040-0000-0000-000003E2BC91 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17071215-0041-0000-0000-0000207DECA2 Message-Id: <1499875004-17113-1-git-send-email-imbrenda@linux.vnet.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-07-12_05:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=1 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1706020000 definitions=main-1707120251 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1503 Lines: 45 This patch adds a few lines to the KVM common code to fire a KOBJ_CHANGE uevent whenever a KVM VM is created or destroyed. The event carries five environment variables: CREATED indicates how many times a new VM has been created. It is useful for example to trigger specific actions when the first VM is started COUNT indicates how many VMs are currently active. This can be used for logging or monitoring purposes PID has the pid of the KVM process that has been started or stopped. This can be used to perform process-specific tuning. STATS_PATH contains the path in debugfs to the directory with all the runtime statistics for this VM. This is useful for performance monitoring and profiling. EVENT described the type of event, its value can be either "create" or "destroy" Specific udev rules can be then set up in userspace to deal with the creation or destruction of VMs as needed. v4 -> v5: * fixed compilation issue when cgroups are not configured v3 -> v4: * fixed subject line * reworked kvm_uevent_notify_change to use struct kobj_uevent_env and add_uevent_var for improved readability. v2 -> v3: * added EVENT * shortened the names of the other variables v1 -> v2: * added KVM_VM_PID and KVM_VM_STATS_PATH * some cleanup, the patch should look nicer now * rebased on 4.12 Claudio Imbrenda (1): KVM: trigger uevents when creating or destroying a VM virt/kvm/kvm_main.c | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) -- 2.7.4