hw/intc/loongarch_extioi.c | 49 +++++++-- hw/intc/loongarch_extioi_kvm.c | 140 ++++++++++++++++++++++++ hw/intc/loongarch_ipi.c | 29 +++++ hw/intc/loongarch_ipi_kvm.c | 85 ++++++++++++++ hw/intc/loongarch_pch_msi.c | 10 ++ hw/intc/loongarch_pch_pic.c | 45 +++++++- hw/intc/loongarch_pic_kvm.c | 89 +++++++++++++++ hw/intc/loongson_ipi_common.c | 33 ++++++ hw/intc/meson.build | 6 + hw/loongarch/virt.c | 65 +++++++---- include/hw/intc/loongarch_extioi.h | 5 + include/hw/intc/loongarch_ipi.h | 5 + include/hw/intc/loongarch_pch_pic.h | 5 + include/hw/intc/loongarch_pic_common.h | 1 + include/hw/intc/loongson_ipi_common.h | 2 + target/loongarch/cpu.h | 1 + target/loongarch/kvm/kvm.c | 23 +++- target/loongarch/tcg/insn_trans/trans_vec.c.inc | 13 ++- 18 files changed, 563 insertions(+), 43 deletions(-) create mode 100644 hw/intc/loongarch_extioi_kvm.c create mode 100644 hw/intc/loongarch_ipi_kvm.c create mode 100644 hw/intc/loongarch_pic_kvm.c
The following changes since commit 6e1571533fd92bec67e5ab9b1dd1e15032925757:
Merge tag 'tracing-pull-request' of https://gitlab.com/stefanha/qemu into staging (2025-06-16 13:47:19 -0400)
are available in the Git repository at:
https://github.com/gaosong715/qemu.git tags/pull-loongarch-20250619
for you to fetch changes up to c2a2e1ad2a749caa864281b1d4dc3f16c3f344f6:
target/loongarch: fix vldi/xvldi raise wrong error (2025-06-19 15:57:31 +0800)
----------------------------------------------------------------
pull-loongarch-20250619
----------------------------------------------------------------
Bibo Mao (13):
hw/intc/loongarch_extioi: Add kernel irqchip realize function
hw/intc/loongarch_extioi: Add kernel irqchip save and restore function
hw/intc/loongarch_ipi: Add kernel irqchip realize function
hw/intc/loongson_ipi: Add load and save interface with ipi_common class
hw/intc/loongarch_ipi: Add kernel irqchip save and restore function
hw/intc/loongarch_pch_msi: Inject MSI interrupt to kernel
hw/intc/loongarch_pch: Add kernel irqchip realize function
hw/intc/loongarch_pch: Add kernel irqchip save and restore function
hw/intc/loongarch_pch: Inject irq line interrupt to kernel
hw/loongarch/virt: Add reset support for kernel irqchip
target/loongarch: Report error with split kernel_irqchip option
hw/loongarch/virt: Disable emulation with IOCSR misc register
hw/loongarch/virt: Add kernel irqchip support
Song Gao (1):
target/loongarch: fix vldi/xvldi raise wrong error
hw/intc/loongarch_extioi.c | 49 +++++++--
hw/intc/loongarch_extioi_kvm.c | 140 ++++++++++++++++++++++++
hw/intc/loongarch_ipi.c | 29 +++++
hw/intc/loongarch_ipi_kvm.c | 85 ++++++++++++++
hw/intc/loongarch_pch_msi.c | 10 ++
hw/intc/loongarch_pch_pic.c | 45 +++++++-
hw/intc/loongarch_pic_kvm.c | 89 +++++++++++++++
hw/intc/loongson_ipi_common.c | 33 ++++++
hw/intc/meson.build | 6 +
hw/loongarch/virt.c | 65 +++++++----
include/hw/intc/loongarch_extioi.h | 5 +
include/hw/intc/loongarch_ipi.h | 5 +
include/hw/intc/loongarch_pch_pic.h | 5 +
include/hw/intc/loongarch_pic_common.h | 1 +
include/hw/intc/loongson_ipi_common.h | 2 +
target/loongarch/cpu.h | 1 +
target/loongarch/kvm/kvm.c | 23 +++-
target/loongarch/tcg/insn_trans/trans_vec.c.inc | 13 ++-
18 files changed, 563 insertions(+), 43 deletions(-)
create mode 100644 hw/intc/loongarch_extioi_kvm.c
create mode 100644 hw/intc/loongarch_ipi_kvm.c
create mode 100644 hw/intc/loongarch_pic_kvm.c
On Thu, Jun 19, 2025 at 4:51 AM Song Gao <gaosong@loongson.cn> wrote: > > The following changes since commit 6e1571533fd92bec67e5ab9b1dd1e15032925757: > > Merge tag 'tracing-pull-request' of https://gitlab.com/stefanha/qemu into staging (2025-06-16 13:47:19 -0400) > > are available in the Git repository at: > > https://github.com/gaosong715/qemu.git tags/pull-loongarch-20250619 From https://github.com/gaosong715/qemu * tag pull-loongarch-20250619 -> FETCH_HEAD gpg: Signature made Thu 19 Jun 2025 04:49:38 EDT gpg: using RSA key CA473C44D6A09C189A193FCD452B96852B268216 gpg: Can't check signature: No public key Why has the GPG key changed? Your previous pull request was signed with key B8FF1DA0D2FDCB2DA09C6C2C40A2FFF239263EDF. If you would like to change keys, please sign your new key using your old key and upload the new key to the key servers again. That way I know that the new key really belongs to you. Thanks! > > for you to fetch changes up to c2a2e1ad2a749caa864281b1d4dc3f16c3f344f6: > > target/loongarch: fix vldi/xvldi raise wrong error (2025-06-19 15:57:31 +0800) > > ---------------------------------------------------------------- > pull-loongarch-20250619 > > ---------------------------------------------------------------- > Bibo Mao (13): > hw/intc/loongarch_extioi: Add kernel irqchip realize function > hw/intc/loongarch_extioi: Add kernel irqchip save and restore function > hw/intc/loongarch_ipi: Add kernel irqchip realize function > hw/intc/loongson_ipi: Add load and save interface with ipi_common class > hw/intc/loongarch_ipi: Add kernel irqchip save and restore function > hw/intc/loongarch_pch_msi: Inject MSI interrupt to kernel > hw/intc/loongarch_pch: Add kernel irqchip realize function > hw/intc/loongarch_pch: Add kernel irqchip save and restore function > hw/intc/loongarch_pch: Inject irq line interrupt to kernel > hw/loongarch/virt: Add reset support for kernel irqchip > target/loongarch: Report error with split kernel_irqchip option > hw/loongarch/virt: Disable emulation with IOCSR misc register > hw/loongarch/virt: Add kernel irqchip support > > Song Gao (1): > target/loongarch: fix vldi/xvldi raise wrong error > > hw/intc/loongarch_extioi.c | 49 +++++++-- > hw/intc/loongarch_extioi_kvm.c | 140 ++++++++++++++++++++++++ > hw/intc/loongarch_ipi.c | 29 +++++ > hw/intc/loongarch_ipi_kvm.c | 85 ++++++++++++++ > hw/intc/loongarch_pch_msi.c | 10 ++ > hw/intc/loongarch_pch_pic.c | 45 +++++++- > hw/intc/loongarch_pic_kvm.c | 89 +++++++++++++++ > hw/intc/loongson_ipi_common.c | 33 ++++++ > hw/intc/meson.build | 6 + > hw/loongarch/virt.c | 65 +++++++---- > include/hw/intc/loongarch_extioi.h | 5 + > include/hw/intc/loongarch_ipi.h | 5 + > include/hw/intc/loongarch_pch_pic.h | 5 + > include/hw/intc/loongarch_pic_common.h | 1 + > include/hw/intc/loongson_ipi_common.h | 2 + > target/loongarch/cpu.h | 1 + > target/loongarch/kvm/kvm.c | 23 +++- > target/loongarch/tcg/insn_trans/trans_vec.c.inc | 13 ++- > 18 files changed, 563 insertions(+), 43 deletions(-) > create mode 100644 hw/intc/loongarch_extioi_kvm.c > create mode 100644 hw/intc/loongarch_ipi_kvm.c > create mode 100644 hw/intc/loongarch_pic_kvm.c >
在 2025/6/20 上午4:39, Stefan Hajnoczi 写道:
> gpg: using RSA key CA473C44D6A09C189A193FCD452B96852B268216
> gpg: Can't check signature: No public key
>
> Why has the GPG key changed? Your previous pull request was signed
> with key B8FF1DA0D2FDCB2DA09C6C2C40A2FFF239263EDF.
>
> If you would like to change keys, please sign your new key using your
> old key and upload the new key to the key servers again. That way I
> know that the new key really belongs to you.
Hi, Stefan
I had sign new key using old key and send to the key server again
should I need pull again?
Thanks.
Song Gao
gpg --list-signatures
/home/gaosong/.gnupg/pubring.kbx
--------------------------------
pub rsa1024 2022-09-16 [SC]
B8FF1DA0D2FDCB2DA09C6C2C40A2FFF239263EDF
uid [ 未知 ] Song Gao <m17746591750@163.com>
sig 3 40A2FFF239263EDF 2022-09-16 Song Gao <m17746591750@163.com>
sig 452B96852B268216 2025-06-20 Song Gao <gaosong@loongson.cn>
pub rsa1024 2022-09-16 [SC]
CA473C44D6A09C189A193FCD452B96852B268216
uid [ 未知 ] Song Gao <gaosong@loongson.cn>
sig 3 452B96852B268216 2022-09-16 Song Gao <gaosong@loongson.cn>
sig 40A2FFF239263EDF 2025-06-20 Song Gao <m17746591750@163.com>
gpg --send-keys CA473C44D6A09C189A193FCD452B96852B268216
gpg: 正在发送密钥 452B96852B268216 到 hkps://keys.openpgp.org
gpg --recv-keys CA473C44D6A09C189A193FCD452B96852B268216
gpg: 密钥 452B96852B268216:“Song Gao <gaosong@loongson.cn>” 未改变
gpg: 处理的总数:1
gpg: 未改变:1
On Thu, Jun 19, 2025 at 11:11 PM gaosong <gaosong@loongson.cn> wrote: > > 在 2025/6/20 上午4:39, Stefan Hajnoczi 写道: > > gpg: using RSA key CA473C44D6A09C189A193FCD452B96852B268216 > > gpg: Can't check signature: No public key > > > > Why has the GPG key changed? Your previous pull request was signed > > with key B8FF1DA0D2FDCB2DA09C6C2C40A2FFF239263EDF. > > > > If you would like to change keys, please sign your new key using your > > old key and upload the new key to the key servers again. That way I > > know that the new key really belongs to you. > Hi, Stefan > > I had sign new key using old key and send to the key server again > should I need pull again? Thanks! The pull request does not need to be resent. I wasn't able to fetch your new key with the signature from the keyservers though. Did you `gpg --send-keys 0x452B96852B268216`? Alternatively, you could attach your new signed gpg key and send it as an email attachment. Stefan > > Thanks. > Song Gao > > gpg --list-signatures > /home/gaosong/.gnupg/pubring.kbx > -------------------------------- > pub rsa1024 2022-09-16 [SC] > B8FF1DA0D2FDCB2DA09C6C2C40A2FFF239263EDF > uid [ 未知 ] Song Gao <m17746591750@163.com> > sig 3 40A2FFF239263EDF 2022-09-16 Song Gao <m17746591750@163.com> > sig 452B96852B268216 2025-06-20 Song Gao <gaosong@loongson.cn> > > pub rsa1024 2022-09-16 [SC] > CA473C44D6A09C189A193FCD452B96852B268216 > uid [ 未知 ] Song Gao <gaosong@loongson.cn> > sig 3 452B96852B268216 2022-09-16 Song Gao <gaosong@loongson.cn> > sig 40A2FFF239263EDF 2025-06-20 Song Gao <m17746591750@163.com> > > > gpg --send-keys CA473C44D6A09C189A193FCD452B96852B268216 > gpg: 正在发送密钥 452B96852B268216 到 hkps://keys.openpgp.org > gpg --recv-keys CA473C44D6A09C189A193FCD452B96852B268216 > gpg: 密钥 452B96852B268216:“Song Gao <gaosong@loongson.cn>” 未改变 > gpg: 处理的总数:1 > gpg: 未改变:1 > > >
在 2025/6/21 上午2:12, Stefan Hajnoczi 写道: > On Thu, Jun 19, 2025 at 11:11 PM gaosong <gaosong@loongson.cn> wrote: >> 在 2025/6/20 上午4:39, Stefan Hajnoczi 写道: >>> gpg: using RSA key CA473C44D6A09C189A193FCD452B96852B268216 >>> gpg: Can't check signature: No public key >>> >>> Why has the GPG key changed? Your previous pull request was signed >>> with key B8FF1DA0D2FDCB2DA09C6C2C40A2FFF239263EDF. >>> >>> If you would like to change keys, please sign your new key using your >>> old key and upload the new key to the key servers again. That way I >>> know that the new key really belongs to you. >> Hi, Stefan >> >> I had sign new key using old key and send to the key server again >> should I need pull again? > Thanks! > > The pull request does not need to be resent. but I find the pull key not sign wi/th the old key. / > I wasn't able to fetch your new key with the signature from the > keyservers though. Did you `gpg --send-keys 0x452B96852B268216`? yes, and I send it and tested recv the key gpg --keyserver hkp://keys.openpgp.org --search-keys 0x452B96852B268216 gpg: data source:http://keys.openpgp.org:11371 <http://keys.openpgp.org:11371/> (1) Song Gao <gaosong@loongson.cn> 1024 bit RSA key 452B96852B268216, created: 2022-09-16 Keys 1-1 of 1 for "0x452B96852B268216". Enter number(s), N)ext, or Q)uit > s gaosong@loongson-pc:~$ gpg --recv-keys 0x452B96852B268216 gpg: key 452B96852B268216: "Song Gao <gaosong@loongson.cn>" not changed gpg: Total number processed: 1 gpg: unchanged: 1 > Alternatively, you could attach your new signed gpg key and send it as > an email attachment. Attached is the key I exported Thanks. Song Gao > Stefan > >> Thanks. >> Song Gao >> >> gpg --list-signatures >> /home/gaosong/.gnupg/pubring.kbx >> --------------------------------Attached is the key I exported >> pub rsa1024 2022-09-16 [SC] >> B8FF1DA0D2FDCB2DA09C6C2C40A2FFF239263EDF >> uid [ 未知 ] Song Gao <m17746591750@163.com> >> sig 3 40A2FFF239263EDF 2022-09-16 Song Gao <m17746591750@163.com> >> sig 452B96852B268216 2025-06-20 Song Gao <gaosong@loongson.cn> >> >> pub rsa1024 2022-09-16 [SC] >> CA473C44D6A09C189A193FCD452B96852B268216 >> uid [ 未知 ] Song Gao <gaosong@loongson.cn> >> sig 3 452B96852B268216 2022-09-16 Song Gao <gaosong@loongson.cn> >> sig 40A2FFF239263EDF 2025-06-20 Song Gao <m17746591750@163.com> >> >> >> gpg --send-keys CA473C44D6A09C189A193FCD452B96852B268216 >> gpg: 正在发送密钥 452B96852B268216 到 hkps://keys.openpgp.org >> gpg --recv-keys CA473C44D6A09C189A193FCD452B96852B268216 >> gpg: 密钥 452B96852B268216:“Song Gao <gaosong@loongson.cn>” 未改变 >> gpg: 处理的总数:1 >> gpg: 未改变:1 >> >> >> -----BEGIN PGP PUBLIC KEY BLOCK----- mI0EYyQpfAEEALpz+Iu4zDm96+PPLhfoPkG0fw1Rm6E1NrDbSV2OPjD8HoNYSdbS /2Qa2zEqeFA6CAV/U/4tKexz4cOtDzWu2G6wlQwSJRHHv7+lcbGHeYqIP7q3Lafm aSgr04fvp/M2S8QuszsF3/qBOHOpNZPtSf9+QbzUTaMQyAXUzsfuzSVxABEBAAG0 HlNvbmcgR2FvIDxnYW9zb25nQGxvb25nc29uLmNuPojOBBMBCAA4FiEEykc8RNag nBiaGT/NRSuWhSsmghYFAmMkKXwCGwMFCwkIBwIGFQoJCAsCBBYCAwECHgECF4AA CgkQRSuWhSsmghayPAP5AeOU42t0d+aZ/oOd8n9WPEchiWFDGbNkQq8MNfJIhrL8 VVsjspHQRMTHAzBWa98BIWxpk5f4S+pOFHtrve2qXXgKND3+ZNGDcGlwmdxkweOX VBwRK6tTWOvsWG9wTgs+mgOTMYL+QKQv86GycseZOowMqCZx5Sl4+F9nkF4Sh/yI swQQAQgAHRYhBLj/HaDS/cstoJxsLECi//I5Jj7fBQJoVLlTAAoJEECi//I5Jj7f yxwEAOHE2jYTwhBTvKTf6Yez67rQepM6OYmsaF73xLFU2rgc+zcNsGqWIsOguk8a NN5HGOTXkoZOZXypvLhtLbtoapmbzP/tgTdn8EzEJIoUVrwPpwpI73D8EurQb7IA k7eyNLw1fCrwZMpSWOiwuO1EoiWnSl5/YmFpFl1CkRkaxYhL =/tQI -----END PGP PUBLIC KEY BLOCK-----
On Sun, Jun 22, 2025 at 10:39 PM gaosong <gaosong@loongson.cn> wrote: > > 在 2025/6/21 上午2:12, Stefan Hajnoczi 写道: > > On Thu, Jun 19, 2025 at 11:11 PM gaosong <gaosong@loongson.cn> wrote: > >> 在 2025/6/20 上午4:39, Stefan Hajnoczi 写道: > >>> gpg: using RSA key CA473C44D6A09C189A193FCD452B96852B268216 > >>> gpg: Can't check signature: No public key > >>> > >>> Why has the GPG key changed? Your previous pull request was signed > >>> with key B8FF1DA0D2FDCB2DA09C6C2C40A2FFF239263EDF. > >>> > >>> If you would like to change keys, please sign your new key using your > >>> old key and upload the new key to the key servers again. That way I > >>> know that the new key really belongs to you. > >> Hi, Stefan > >> > >> I had sign new key using old key and send to the key server again > >> should I need pull again? > > Thanks! > > > > The pull request does not need to be resent. > but I find the pull key not sign wi/th the old key. / > > I wasn't able to fetch your new key with the signature from the > > keyservers though. Did you `gpg --send-keys 0x452B96852B268216`? > yes, and I send it and tested recv the key > > gpg --keyserver hkp://keys.openpgp.org --search-keys 0x452B96852B268216 > gpg: data source:http://keys.openpgp.org:11371 <http://keys.openpgp.org:11371/> > (1) Song Gao <gaosong@loongson.cn> > 1024 bit RSA key 452B96852B268216, created: 2022-09-16 > Keys 1-1 of 1 for "0x452B96852B268216". Enter number(s), N)ext, or Q)uit > s > gaosong@loongson-pc:~$ gpg --recv-keys 0x452B96852B268216 > gpg: key 452B96852B268216: "Song Gao <gaosong@loongson.cn>" not changed > gpg: Total number processed: 1 > gpg: unchanged: 1 > > > Alternatively, you could attach your new signed gpg key and send it as > > an email attachment. > > Attached is the key I exported For some reason I still don't see the signature when receiving the key from hkp://keys.openpgp.org/, but your email attachment worked. Thanks! Stefan > > Thanks. > Song Gao > > > Stefan > > > >> Thanks. > >> Song Gao > >> > >> gpg --list-signatures > >> /home/gaosong/.gnupg/pubring.kbx > >> --------------------------------Attached is the key I exported > >> pub rsa1024 2022-09-16 [SC] > >> B8FF1DA0D2FDCB2DA09C6C2C40A2FFF239263EDF > >> uid [ 未知 ] Song Gao <m17746591750@163.com> > >> sig 3 40A2FFF239263EDF 2022-09-16 Song Gao <m17746591750@163.com> > >> sig 452B96852B268216 2025-06-20 Song Gao <gaosong@loongson.cn> > >> > >> pub rsa1024 2022-09-16 [SC] > >> CA473C44D6A09C189A193FCD452B96852B268216 > >> uid [ 未知 ] Song Gao <gaosong@loongson.cn> > >> sig 3 452B96852B268216 2022-09-16 Song Gao <gaosong@loongson.cn> > >> sig 40A2FFF239263EDF 2025-06-20 Song Gao <m17746591750@163.com> > >> > >> > >> gpg --send-keys CA473C44D6A09C189A193FCD452B96852B268216 > >> gpg: 正在发送密钥 452B96852B268216 到 hkps://keys.openpgp.org > >> gpg --recv-keys CA473C44D6A09C189A193FCD452B96852B268216 > >> gpg: 密钥 452B96852B268216:“Song Gao <gaosong@loongson.cn>” 未改变 > >> gpg: 处理的总数:1 > >> gpg: 未改变:1 > >> > >> > >> >
在 2025/6/20 上午4:39, Stefan Hajnoczi 写道: > On Thu, Jun 19, 2025 at 4:51 AM Song Gao <gaosong@loongson.cn> wrote: >> The following changes since commit 6e1571533fd92bec67e5ab9b1dd1e15032925757: >> >> Merge tag 'tracing-pull-request' of https://gitlab.com/stefanha/qemu into staging (2025-06-16 13:47:19 -0400) >> >> are available in the Git repository at: >> >> https://github.com/gaosong715/qemu.git tags/pull-loongarch-20250619 > From https://github.com/gaosong715/qemu > * tag pull-loongarch-20250619 -> FETCH_HEAD > gpg: Signature made Thu 19 Jun 2025 04:49:38 EDT > gpg: using RSA key CA473C44D6A09C189A193FCD452B96852B268216 > gpg: Can't check signature: No public key > > Why has the GPG key changed? Your previous pull request was signed > with key B8FF1DA0D2FDCB2DA09C6C2C40A2FFF239263EDF. Yesterday I realized that the key I had been using was registered to my other email address, so I changed it back. > If you would like to change keys, please sign your new key using your > old key and upload the new key to the key servers again. That way I > know that the new key really belongs to you. Got it. Thanks. Song Gao > Thanks! > >> for you to fetch changes up to c2a2e1ad2a749caa864281b1d4dc3f16c3f344f6: >> >> target/loongarch: fix vldi/xvldi raise wrong error (2025-06-19 15:57:31 +0800) >> >> ---------------------------------------------------------------- >> pull-loongarch-20250619 >> >> ---------------------------------------------------------------- >> Bibo Mao (13): >> hw/intc/loongarch_extioi: Add kernel irqchip realize function >> hw/intc/loongarch_extioi: Add kernel irqchip save and restore function >> hw/intc/loongarch_ipi: Add kernel irqchip realize function >> hw/intc/loongson_ipi: Add load and save interface with ipi_common class >> hw/intc/loongarch_ipi: Add kernel irqchip save and restore function >> hw/intc/loongarch_pch_msi: Inject MSI interrupt to kernel >> hw/intc/loongarch_pch: Add kernel irqchip realize function >> hw/intc/loongarch_pch: Add kernel irqchip save and restore function >> hw/intc/loongarch_pch: Inject irq line interrupt to kernel >> hw/loongarch/virt: Add reset support for kernel irqchip >> target/loongarch: Report error with split kernel_irqchip option >> hw/loongarch/virt: Disable emulation with IOCSR misc register >> hw/loongarch/virt: Add kernel irqchip support >> >> Song Gao (1): >> target/loongarch: fix vldi/xvldi raise wrong error >> >> hw/intc/loongarch_extioi.c | 49 +++++++-- >> hw/intc/loongarch_extioi_kvm.c | 140 ++++++++++++++++++++++++ >> hw/intc/loongarch_ipi.c | 29 +++++ >> hw/intc/loongarch_ipi_kvm.c | 85 ++++++++++++++ >> hw/intc/loongarch_pch_msi.c | 10 ++ >> hw/intc/loongarch_pch_pic.c | 45 +++++++- >> hw/intc/loongarch_pic_kvm.c | 89 +++++++++++++++ >> hw/intc/loongson_ipi_common.c | 33 ++++++ >> hw/intc/meson.build | 6 + >> hw/loongarch/virt.c | 65 +++++++---- >> include/hw/intc/loongarch_extioi.h | 5 + >> include/hw/intc/loongarch_ipi.h | 5 + >> include/hw/intc/loongarch_pch_pic.h | 5 + >> include/hw/intc/loongarch_pic_common.h | 1 + >> include/hw/intc/loongson_ipi_common.h | 2 + >> target/loongarch/cpu.h | 1 + >> target/loongarch/kvm/kvm.c | 23 +++- >> target/loongarch/tcg/insn_trans/trans_vec.c.inc | 13 ++- >> 18 files changed, 563 insertions(+), 43 deletions(-) >> create mode 100644 hw/intc/loongarch_extioi_kvm.c >> create mode 100644 hw/intc/loongarch_ipi_kvm.c >> create mode 100644 hw/intc/loongarch_pic_kvm.c >>
© 2016 - 2025 Red Hat, Inc.