|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen staging-4.20] tools/ctrl: Silence missing GSI in xc_pcidev_get_gsi()
commit 1ddf72bbdfa892eb779a550594ab3a1681e50e52
Author: Jason Andryuk <jason.andryuk@xxxxxxx>
AuthorDate: Thu Mar 20 12:52:57 2025 +0100
Commit: Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Thu Mar 20 12:52:57 2025 +0100
tools/ctrl: Silence missing GSI in xc_pcidev_get_gsi()
It is valid for a PCI device to not have a legacy IRQ. In that case, do
not print an error to keep the logs clean.
This relies on pciback being updated to return -ENOENT for a missing
GSI.
Fixes: b93e5981d258 ("tools: Add new function to get gsi from dev")
Signed-off-by: Jason Andryuk <jason.andryuk@xxxxxxx>
Reviewed-by: Anthony PERARD <anthony.perard@xxxxxxxxxx>
master commit: 8808f45305d146d05469ed4551bb5ccf931b1800
master date: 2025-03-13 10:23:42 +0100
---
tools/libs/ctrl/xc_linux.c | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/tools/libs/ctrl/xc_linux.c b/tools/libs/ctrl/xc_linux.c
index 92591e49a1..2b2d7b3196 100644
--- a/tools/libs/ctrl/xc_linux.c
+++ b/tools/libs/ctrl/xc_linux.c
@@ -77,9 +77,14 @@ int xc_pcidev_get_gsi(xc_interface *xch, uint32_t sbdf)
ret = ioctl(xencall_fd(xch->xcall),
IOCTL_PRIVCMD_PCIDEV_GET_GSI, &dev_gsi);
- if (ret < 0) {
- PERROR("Failed to get gsi from dev");
- } else {
+ if ( ret < 0 )
+ {
+ if ( errno != ENOENT )
+ PERROR("Failed to get gsi for dev %04x:%02x:%02x.%u",
+ sbdf >> 16, (sbdf >> 8) & 0xff, sbdf >> 3 & 0x1f, sbdf & 0x7);
+ }
+ else
+ {
ret = dev_gsi.gsi;
}
--
generated by git-patchbot for /home/xen/git/xen.git#staging-4.20
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |