Re: [Qemu-block] [PATCH] block: use bdrv_add_before_write_notifier

2016-10-05 Thread Stefan Hajnoczi
On Tue, Oct 04, 2016 at 10:49:43AM +0200, Paolo Bonzini wrote:
> Register the notifier using the specific API for block devices.
> 
> Signed-off-by: Paolo Bonzini 
> ---
>  block/write-threshold.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)

Reviewed-by: Stefan Hajnoczi 


signature.asc
Description: PGP signature


Re: [Qemu-block] [PATCH] block: use bdrv_add_before_write_notifier

2016-10-05 Thread Kevin Wolf
Am 04.10.2016 um 10:49 hat Paolo Bonzini geschrieben:
> Register the notifier using the specific API for block devices.
> 
> Signed-off-by: Paolo Bonzini 

Thanks, applied to the block branch.

Kevin



[Qemu-block] [PATCH] block: use bdrv_add_before_write_notifier

2016-10-04 Thread Paolo Bonzini
Register the notifier using the specific API for block devices.

Signed-off-by: Paolo Bonzini 
---
 block/write-threshold.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/block/write-threshold.c b/block/write-threshold.c
index cc2ca71..0bd1a01 100644
--- a/block/write-threshold.c
+++ b/block/write-threshold.c
@@ -76,8 +76,7 @@ static int coroutine_fn 
before_write_notify(NotifierWithReturn *notifier,
 static void write_threshold_register_notifier(BlockDriverState *bs)
 {
 bs->write_threshold_notifier.notify = before_write_notify;
-notifier_with_return_list_add(>before_write_notifiers,
-  >write_threshold_notifier);
+bdrv_add_before_write_notifier(bs, >write_threshold_notifier);
 }
 
 static void write_threshold_update(BlockDriverState *bs,
-- 
2.7.4