vliaskov

Results 24 comments of vliaskov

I have not reproduced the problem yet due to other issues in my setup. Perhaps this is a qemu problem (not a cxl/ndctl tool problem). The patch below fixes a...

I am hitting the same issue (albeit on a different kernel/distro). Was there a definitive fix for your issue? I am assuming the dwc2 errors: ```[ 502.022279] dwc2 20980000.usb: dwc2_hc_chhltd_intr_dma:...

This is still reproducible. > It is expected that up to 96 devices can be used on aarch64, however If more than 64 devices are attached to an aarch64 microVM,...

Thanks for the clarification. For anyone following, the logic is described in `src/vmm/src/arch/aarch64/gic/gicv3/mod.rs`: ``` /// Finalize the setup of a GIC device pub fn finalize_device(gic_device: &Self) -> Result { //...

thank you for the input and suggestions @zdohnal . Sorry for the delay, I was on vacation. I will ask the customer for logs (they already had some but I...

Thank you. Btw, do you mean to use ```debug_printf``` or ```DEBUG_printf``` in the patch above? Just making sure we use the desired debug function . We also use GNUTLS, there...

> DEBUG_printf(), because that's the one which is available for whole library. I found debug_printf() only in snmp backend. > > Ad gnutls - it would be great to see...

Customer is having issues with huge log files (and the issue takes at least a few hours to trigger). @zdohnal can you suggest a more restrictive CUPS_DEBUG_FILTER setting (not the...

Thank you @zdohnal . While we are still waiting for more debugging: Do you have the PR/patch mentioned in https://github.com/OpenPrinting/cups/issues/827#issuecomment-1818752111? Could the POLLOUT | POLLER this be caused by a...

Another possibility, using getsockopt() and SO_ERROR. If the socket contains an error, we return that. ``` + if (pfd.revents & POLLHUP) + { + int sres, serr; + socklen_t slen...