[PATCH] block/vvfat: Do not unref qcow on closing backing bdrv

2020-02-09 Thread Hikaru Nishida
backing bdrv and qcow bdrv as children in this order because bdrv_close(vvfat) tries to free qcow bdrv after freeing backing bdrv as QLIST_FOREACH_SAFE() loop keeps next pointer, but BdrvChild of qcow is already freed in bdrv_close(backing bdrv). Signed-off-by: Hikaru Nishida --- block/vvfat.c | 7

Re: [PATCH v2] ui: Fix hanging up Cocoa display on macOS 10.15 (Catalina)

2019-10-14 Thread Hikaru Nishida
ing\n"); -> 1170 allow_events = true; 1171 /* Tell cocoa_display_init to proceed */ 1172 qemu_sem_post(&app_started_sem); 1173 } I resent the patch v3. Thanks! Hikaru Nishida 2019年10月15日(火) 2:16 Peter Maydell : > > On Mon, 14 Oct 2019 at 15:16, wrote: > >

Re: [PATCH] This patch fixes hanging up Cocoa display on macOS 10.15 (Catalina)

2019-10-14 Thread Hikaru Nishida
I resent the patch. Thank you for your assistance! Hikaru Nishida 2019年10月14日(月) 22:50 Peter Maydell : > > On Mon, 14 Oct 2019 at 14:41, Hikaru Nishida wrote: > > > > Thank you for your reply. > > > > The event gets fired before applicationDidFinishLaunching is:

Re: [PATCH] This patch fixes hanging up Cocoa display on macOS 10.15 (Catalina)

2019-10-14 Thread Hikaru Nishida
ust before qemu_sem_post(&app_started_sem) and it also works. Hikaru Nishida (resending in plaintext) 2019年10月14日(月) 22:19 Peter Maydell : > > On Mon, 14 Oct 2019 at 13:53, wrote: > > > > From: Hikaru Nishida > > > > An NSEvent is fired before applicationDidFinish

Re: [PATCH] This patch fixes hanging up Cocoa display on macOS 10.15 (Catalina)

2019-10-14 Thread Hikaru Nishida
ust before qemu_sem_post(&app_started_sem) and it also works. Hikaru Nishida 2019年10月14日(月) 22:19 Peter Maydell : > On Mon, 14 Oct 2019 at 13:53, wrote: > > > > From: Hikaru Nishida > > > > An NSEvent is fired before applicationDidFinishLaunching on macOS > >

Re: [Qemu-devel] [PATCH] xhci: Add No Op Command

2019-08-13 Thread Hikaru Nishida
ping^2 2019年8月6日(火) 0:38 Hikaru Nishida : > ping... > > 2019年7月20日(土) 15:04 : > >> From: Hikaru Nishida >> >> This commit adds No Op Command (23) to xHC for verifying the operation >> of the Command Ring mechanisms. >> No Op Command is defined in

Re: [Qemu-devel] [PATCH] xhci: Add No Op Command

2019-08-05 Thread Hikaru Nishida
ping... 2019年7月20日(土) 15:04 : > From: Hikaru Nishida > > This commit adds No Op Command (23) to xHC for verifying the operation > of the Command Ring mechanisms. > No Op Command is defined in XHCI spec (4.6.2) and just reports Command > Completion Event with Completion Code ==

Re: [Qemu-devel] [PATCH] hostmem-file: make available memory-backend-file on macOS hosts

2018-09-24 Thread Hikaru Nishida
Thank you for letting me know about CONFIG_POSIX. I'll fix my patch to utilize it and submit again. Hikaru Nishida 2018年9月24日(月) 17:51 Paolo Bonzini : > > On 24/09/2018 10:13, hikaru...@gmail.com wrote: > > From: Hikaru Nishida > > > > Before this change, memory-b

Re: [Qemu-devel] [PATCH] hw/block: Fix pin-based interrupt behaviour of NVMe

2018-01-08 Thread Hikaru Nishida
l send another patch shortly to improve some points of the tracing functions. Hikaru Nishida 2018-01-09 0:28 GMT+09:00 Kevin Wolf : > Am 18.12.2017 um 06:00 hat Hikaru Nishida geschrieben: >> Pin-based interrupt of NVMe controller did not work properly >> because using an obs

Re: [Qemu-devel] [PATCH] hw/block: Fix pin-based interrupt behaviour of NVMe

2018-01-04 Thread Hikaru Nishida
ping... 2017-12-22 16:31 GMT+09:00 Hikaru Nishida : > ping > http://patchwork.ozlabs.org/patch/849786/ > > 2017-12-18 14:00 GMT+09:00 Hikaru Nishida : >> Pin-based interrupt of NVMe controller did not work properly >> because using an obsolated function pci_irq_pulse(). &

Re: [Qemu-devel] [PATCH] hw/block: Fix pin-based interrupt behaviour of NVMe

2017-12-21 Thread Hikaru Nishida
ping http://patchwork.ozlabs.org/patch/849786/ 2017-12-18 14:00 GMT+09:00 Hikaru Nishida : > Pin-based interrupt of NVMe controller did not work properly > because using an obsolated function pci_irq_pulse(). > To fix this, change to use pci_irq_assert() / pci_irq_deassert() >

[Qemu-devel] [PATCH] hw/block: Fix pin-based interrupt behaviour of NVMe

2017-12-17 Thread Hikaru Nishida
Pin-based interrupt of NVMe controller did not work properly because using an obsolated function pci_irq_pulse(). To fix this, change to use pci_irq_assert() / pci_irq_deassert() instead of pci_irq_pulse(). Signed-off-by: Hikaru Nishida --- hw/block/nvme.c | 39