kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Is KVM_GET_SREGS safe from other threads?
@ 2011-05-08  8:24 Pekka Enberg
  2011-05-08  8:50 ` Avi Kivity
  0 siblings, 1 reply; 3+ messages in thread
From: Pekka Enberg @ 2011-05-08  8:24 UTC (permalink / raw)
  To: KVM General, Avi Kivity, Ingo Molnar, Cyrill Gorcunov

Hi!

We've noticed that sometimes KVM_GET_SREGS from a signal handler
hangs. We use it like this:

static void handle_sigquit(int sig)
{
         int i;

         for (i = 0; i < nrcpus; i++) {
                 struct kvm_cpu *cpu = kvm_cpus[i];

                 kvm_cpu__show_registers(cpu); <-- here
                 kvm_cpu__show_code(cpu);
                 kvm_cpu__show_page_tables(cpu);
         }

and

void kvm_cpu__show_registers(struct kvm_cpu *self)
{
[...]
	if (ioctl(self->vcpu_fd, KVM_GET_SREGS, &sregs) < 0)
		die("KVM_GET_REGS failed");

is it not OK to call KVM_GET_SREGS from other threads than the one
that's doing KVM_RUN?

                        Pekka

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-05-08  9:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-08  8:24 Is KVM_GET_SREGS safe from other threads? Pekka Enberg
2011-05-08  8:50 ` Avi Kivity
2011-05-08  9:07   ` Pekka Enberg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).