Re: [PATCH v3 0/2] virtio-blk: Convert QEMUBH callback to "bitops.h" API

2021-05-21 Thread Stefan Hajnoczi
On Mon, May 10, 2021 at 10:07:56PM +0200, Philippe Mathieu-Daudé wrote: > This series follow a suggestion from Stefan to use the bitops > API in virtio-blk: > https://www.mail-archive.com/qemu-devel@nongnu.org/msg805139.html > > Since v2: > - clear bitmap to avoid spurious interrupts! (Stefan) >

Re: [PATCH v3 0/2] virtio-blk: Convert QEMUBH callback to "bitops.h" API

2021-05-11 Thread Stefan Hajnoczi
On Mon, May 10, 2021 at 10:07:56PM +0200, Philippe Mathieu-Daudé wrote: > This series follow a suggestion from Stefan to use the bitops > API in virtio-blk: > https://www.mail-archive.com/qemu-devel@nongnu.org/msg805139.html > > Since v2: > - clear bitmap to avoid spurious interrupts! (Stefan) >

[PATCH v3 0/2] virtio-blk: Convert QEMUBH callback to "bitops.h" API

2021-05-10 Thread Philippe Mathieu-Daudé
This series follow a suggestion from Stefan to use the bitops API in virtio-blk: https://www.mail-archive.com/qemu-devel@nongnu.org/msg805139.html Since v2: - clear bitmap to avoid spurious interrupts! (Stefan) - use 'further' in find_next docstring (Eric) - added Richard R-b tag Since v1: -