Hi all, Today's linux-next merge of the kvm tree got a conflict in: virt/kvm/kvm_main.c between commit: 8ed0579c12b2 ("kvm: properly check debugfs dentry before using it") from Linus' tree and commit: b12ce36a43f2 ("kvm: Add memcg accounting to KVM allocations") from the kvm tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc virt/kvm/kvm_main.c index d237d3350a99,0fb0e9aa0935..000000000000 --- a/virt/kvm/kvm_main.c +++ b/virt/kvm/kvm_main.c @@@ -4044,8 -4049,8 +4049,8 @@@ static void kvm_uevent_notify_change(un } add_uevent_var(env, "PID=%d", kvm->userspace_pid); - if (kvm->debugfs_dentry) { + if (!IS_ERR_OR_NULL(kvm->debugfs_dentry)) { - char *tmp, *p = kmalloc(PATH_MAX, GFP_KERNEL); + char *tmp, *p = kmalloc(PATH_MAX, GFP_KERNEL_ACCOUNT); if (p) { tmp = dentry_path_raw(kvm->debugfs_dentry, p, PATH_MAX);
Attachment:
pgp9DwpLZ4D_W.pgp
Description: OpenPGP digital signature