qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 06/50] block: Add blk_is_available()


From: Max Reitz
Subject: Re: [Qemu-devel] [PATCH 06/50] block: Add blk_is_available()
Date: Tue, 27 Jan 2015 14:16:46 -0500
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0

On 2015-01-27 at 14:15, Eric Blake wrote:
On 01/26/2015 09:02 AM, Max Reitz wrote:
blk_is_available() returns true iff the BDS is inserted (which means
blk_bs() is not NULL and bdrv_is_inserted() returns true) and if the
tray of the guest device is closed.

blk_is_inserted() is changed to return true only if blk_bs() is not
NULL.

Signed-off-by: Max Reitz <address@hidden>
---
  block/block-backend.c          | 7 ++++++-
  include/sysemu/block-backend.h | 1 +
  2 files changed, 7 insertions(+), 1 deletion(-)

+++ b/include/sysemu/block-backend.h
@@ -127,6 +127,7 @@ int blk_enable_write_cache(BlockBackend *blk);
  void blk_set_enable_write_cache(BlockBackend *blk, bool wce);
  void blk_invalidate_cache(BlockBackend *blk, Error **errp);
  int blk_is_inserted(BlockBackend *blk);
Should we change blk_is_inserted to return bool?

Seems like a good opportunity to. Will do.

+bool blk_is_available(BlockBackend *blk);
Looks reasonable.
Reviewed-by: Eric Blake <address@hidden>

Thank you for tackling this series!

Max



reply via email to

[Prev in Thread] Current Thread [Next in Thread]