diff options
author | Michael Kowal <kowal@linux.ibm.com> | 2024-09-13 11:16:54 -0500 |
---|---|---|
committer | Nicholas Piggin <npiggin@gmail.com> | 2024-11-04 09:14:42 +1000 |
commit | 00a7a7a548ea537f888f2f90d66155f14ff93727 (patch) | |
tree | def1bdeb7b24c6b4ecb09fc068cd0bfbc4a62174 /include | |
parent | f82fec6c1f3bf127eb46e811b0a529d83793381c (diff) | |
download | qemu-00a7a7a548ea537f888f2f90d66155f14ff93727.zip qemu-00a7a7a548ea537f888f2f90d66155f14ff93727.tar.gz qemu-00a7a7a548ea537f888f2f90d66155f14ff93727.tar.bz2 |
ppc/xive2: Change context/ring specific functions to be generic
Some the functions that have been created are specific to a ring or context. Some
of these same functions are being changed to operate on any ring/context. This will
simplify the next patch sets that are adding additional ring/context operations.
Signed-off-by: Michael Kowal <kowal@linux.ibm.com>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/ppc/xive.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/ppc/xive.h b/include/hw/ppc/xive.h index 3a65c2f..ebee982 100644 --- a/include/hw/ppc/xive.h +++ b/include/hw/ppc/xive.h @@ -533,7 +533,7 @@ Object *xive_tctx_create(Object *cpu, XivePresenter *xptr, Error **errp); void xive_tctx_reset(XiveTCTX *tctx); void xive_tctx_destroy(XiveTCTX *tctx); void xive_tctx_ipb_update(XiveTCTX *tctx, uint8_t ring, uint8_t ipb); -void xive_tctx_reset_os_signal(XiveTCTX *tctx); +void xive_tctx_reset_signal(XiveTCTX *tctx, uint8_t ring); /* * KVM XIVE device helpers |