All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [Bug 1826401] [NEW] qemu-system-aarch64 has a high cpu usage on windows
@ 2019-04-25 12:44 Adrian Luca
  2021-04-30 10:08 ` [Bug 1826401] " Thomas Huth
  2021-06-30  4:17 ` Launchpad Bug Tracker
  0 siblings, 2 replies; 3+ messages in thread
From: Adrian Luca @ 2019-04-25 12:44 UTC (permalink / raw)
  To: qemu-devel

Public bug reported:

Running qemu-system-aarch64 leads to a high CPU consumption on windows
10.

Tested with qemu: 4.0.0-rc4 & 3.1.0 & 2.11.0

Command: qemu_start_command = [
        qemu-system-aarch64,
        "-pidfile",
        target_path + "/qemu" + str(instance) + ".pid",
        "-machine",
        "virt",
        "-cpu",
        "cortex-a57",
        "-nographic",
        "-smp",
        "2",
        "-m",
        "2048",
        "-kernel",
        kernel_path,
        "--append",
        "console=ttyAMA0 root=/dev/vda2 rw ipx=" + qemu_instance_ip + "/64 net.ifnames=0 biosdevname=0",
        "-drive",
        "file=" + qemu_instance_img_path + ",if=none,id=blk",
        "-device",
        "virtio-blk-device,drive=blk",
        "-netdev",
        "socket,id=mynet0,udp=127.0.0.1:2000,localaddr=127.0.0.1:" + qemu_instance_port,
        "-device",
        "virtio-net-device,netdev=mynet0",
        "-serial",
        "file:" + target_path + "/qemu" + str(instance) + ".log"
    ]

*The cpu consumption is ~70%.
*No acceleration used.
*This CPU consumption is obtained only by running the above command. No workload on the guest OS.

** Affects: qemu
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1826401

Title:
  qemu-system-aarch64 has a high cpu usage on windows

Status in QEMU:
  New

Bug description:
  Running qemu-system-aarch64 leads to a high CPU consumption on windows
  10.

  Tested with qemu: 4.0.0-rc4 & 3.1.0 & 2.11.0

  Command: qemu_start_command = [
          qemu-system-aarch64,
          "-pidfile",
          target_path + "/qemu" + str(instance) + ".pid",
          "-machine",
          "virt",
          "-cpu",
          "cortex-a57",
          "-nographic",
          "-smp",
          "2",
          "-m",
          "2048",
          "-kernel",
          kernel_path,
          "--append",
          "console=ttyAMA0 root=/dev/vda2 rw ipx=" + qemu_instance_ip + "/64 net.ifnames=0 biosdevname=0",
          "-drive",
          "file=" + qemu_instance_img_path + ",if=none,id=blk",
          "-device",
          "virtio-blk-device,drive=blk",
          "-netdev",
          "socket,id=mynet0,udp=127.0.0.1:2000,localaddr=127.0.0.1:" + qemu_instance_port,
          "-device",
          "virtio-net-device,netdev=mynet0",
          "-serial",
          "file:" + target_path + "/qemu" + str(instance) + ".log"
      ]

  *The cpu consumption is ~70%.
  *No acceleration used.
  *This CPU consumption is obtained only by running the above command. No workload on the guest OS.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1826401/+subscriptions

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

* [Bug 1826401] Re: qemu-system-aarch64 has a high cpu usage on windows
  2019-04-25 12:44 [Qemu-devel] [Bug 1826401] [NEW] qemu-system-aarch64 has a high cpu usage on windows Adrian Luca
@ 2021-04-30 10:08 ` Thomas Huth
  2021-06-30  4:17 ` Launchpad Bug Tracker
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Huth @ 2021-04-30 10:08 UTC (permalink / raw)
  To: qemu-devel

Looking through old bug tickets... is this still an issue with the latest version of QEMU? Or could we close this ticket nowadays?
Also, what guest operating systems were you running ?

** Changed in: qemu
       Status: New => Incomplete

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1826401

Title:
  qemu-system-aarch64 has a high cpu usage on windows

Status in QEMU:
  Incomplete

Bug description:
  Running qemu-system-aarch64 leads to a high CPU consumption on windows
  10.

  Tested with qemu: 4.0.0-rc4 & 3.1.0 & 2.11.0

  Command: qemu_start_command = [
          qemu-system-aarch64,
          "-pidfile",
          target_path + "/qemu" + str(instance) + ".pid",
          "-machine",
          "virt",
          "-cpu",
          "cortex-a57",
          "-nographic",
          "-smp",
          "2",
          "-m",
          "2048",
          "-kernel",
          kernel_path,
          "--append",
          "console=ttyAMA0 root=/dev/vda2 rw ipx=" + qemu_instance_ip + "/64 net.ifnames=0 biosdevname=0",
          "-drive",
          "file=" + qemu_instance_img_path + ",if=none,id=blk",
          "-device",
          "virtio-blk-device,drive=blk",
          "-netdev",
          "socket,id=mynet0,udp=127.0.0.1:2000,localaddr=127.0.0.1:" + qemu_instance_port,
          "-device",
          "virtio-net-device,netdev=mynet0",
          "-serial",
          "file:" + target_path + "/qemu" + str(instance) + ".log"
      ]

  *The cpu consumption is ~70%.
  *No acceleration used.
  *This CPU consumption is obtained only by running the above command. No workload on the guest OS.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1826401/+subscriptions


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

* [Bug 1826401] Re: qemu-system-aarch64 has a high cpu usage on windows
  2019-04-25 12:44 [Qemu-devel] [Bug 1826401] [NEW] qemu-system-aarch64 has a high cpu usage on windows Adrian Luca
  2021-04-30 10:08 ` [Bug 1826401] " Thomas Huth
@ 2021-06-30  4:17 ` Launchpad Bug Tracker
  1 sibling, 0 replies; 3+ messages in thread
From: Launchpad Bug Tracker @ 2021-06-30  4:17 UTC (permalink / raw)
  To: qemu-devel

[Expired for QEMU because there has been no activity for 60 days.]

** Changed in: qemu
       Status: Incomplete => Expired

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1826401

Title:
  qemu-system-aarch64 has a high cpu usage on windows

Status in QEMU:
  Expired

Bug description:
  Running qemu-system-aarch64 leads to a high CPU consumption on windows
  10.

  Tested with qemu: 4.0.0-rc4 & 3.1.0 & 2.11.0

  Command: qemu_start_command = [
          qemu-system-aarch64,
          "-pidfile",
          target_path + "/qemu" + str(instance) + ".pid",
          "-machine",
          "virt",
          "-cpu",
          "cortex-a57",
          "-nographic",
          "-smp",
          "2",
          "-m",
          "2048",
          "-kernel",
          kernel_path,
          "--append",
          "console=ttyAMA0 root=/dev/vda2 rw ipx=" + qemu_instance_ip + "/64 net.ifnames=0 biosdevname=0",
          "-drive",
          "file=" + qemu_instance_img_path + ",if=none,id=blk",
          "-device",
          "virtio-blk-device,drive=blk",
          "-netdev",
          "socket,id=mynet0,udp=127.0.0.1:2000,localaddr=127.0.0.1:" + qemu_instance_port,
          "-device",
          "virtio-net-device,netdev=mynet0",
          "-serial",
          "file:" + target_path + "/qemu" + str(instance) + ".log"
      ]

  *The cpu consumption is ~70%.
  *No acceleration used.
  *This CPU consumption is obtained only by running the above command. No workload on the guest OS.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1826401/+subscriptions


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

end of thread, other threads:[~2021-06-30  4:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-25 12:44 [Qemu-devel] [Bug 1826401] [NEW] qemu-system-aarch64 has a high cpu usage on windows Adrian Luca
2021-04-30 10:08 ` [Bug 1826401] " Thomas Huth
2021-06-30  4:17 ` Launchpad Bug Tracker

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.