Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'kvm-x86-generic-6.19' of https://github.com/kvm-x86/linux into HEAD

KVM generic changes for 6.19:

- Use the recently-added WQ_PERCPU when creating the per-CPU workqueue for
irqfd cleanup.

- Fix a goof in the dirty ring documentation.

+2 -2
+1 -1
Documentation/virt/kvm/api.rst
··· 8524 8524 the dirty pages. 8525 8525 8526 8526 The dirty ring can get full. When it happens, the KVM_RUN of the 8527 - vcpu will return with exit reason KVM_EXIT_DIRTY_LOG_FULL. 8527 + vcpu will return with exit reason KVM_EXIT_DIRTY_RING_FULL. 8528 8528 8529 8529 The dirty ring interface has a major difference comparing to the 8530 8530 KVM_GET_DIRTY_LOG interface in that, when reading the dirty ring from
+1 -1
virt/kvm/eventfd.c
··· 707 707 */ 708 708 int kvm_irqfd_init(void) 709 709 { 710 - irqfd_cleanup_wq = alloc_workqueue("kvm-irqfd-cleanup", 0, 0); 710 + irqfd_cleanup_wq = alloc_workqueue("kvm-irqfd-cleanup", WQ_PERCPU, 0); 711 711 if (!irqfd_cleanup_wq) 712 712 return -ENOMEM; 713 713