From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33276) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1brLQA-0006DB-5R for qemu-devel@nongnu.org; Tue, 04 Oct 2016 04:49:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1brLQ8-0006ja-CR for qemu-devel@nongnu.org; Tue, 04 Oct 2016 04:49:53 -0400 From: Paolo Bonzini Date: Tue, 4 Oct 2016 10:49:43 +0200 Message-Id: <1475570983-16182-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH] block: use bdrv_add_before_write_notifier List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-block@nongnu.org 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(&bs->before_write_notifiers, - &bs->write_threshold_notifier); + bdrv_add_before_write_notifier(bs, &bs->write_threshold_notifier); } static void write_threshold_update(BlockDriverState *bs, -- 2.7.4