qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [v3 04/12] block: add helper function to find the active la


From: Jeff Cody
Subject: [Qemu-devel] [v3 04/12] block: add helper function to find the active layer of any BDS
Date: Fri, 30 May 2014 11:35:06 -0400

This helper function will find the active (top-most) layer of a
specified BDS.  This returns either the active layer, or NULL if
the passed BDS is NULL.

Reviewed-by: Eric Blake <address@hidden>
Signed-off-by: Jeff Cody <address@hidden>
---
 block.c               | 10 ++++++++++
 include/block/block.h |  1 +
 2 files changed, 11 insertions(+)

diff --git a/block.c b/block.c
index 588046e..7eb3279 100644
--- a/block.c
+++ b/block.c
@@ -4388,6 +4388,16 @@ BlockDriverState *bdrv_find_base(BlockDriverState *bs)
     return curr_bs;
 }
 
+/* Given a BDS, searches for the active layer.  If
+ * active layer cannot be found, returns NULL */
+BlockDriverState *bdrv_find_active(BlockDriverState *bs)
+{
+    while (bs && bs->overlay) {
+        bs = bs->overlay;
+    }
+    return bs;
+}
+
 /**************************************************************/
 /* async I/Os */
 
diff --git a/include/block/block.h b/include/block/block.h
index dff5403..c82d89a 100644
--- a/include/block/block.h
+++ b/include/block/block.h
@@ -294,6 +294,7 @@ int bdrv_drop_intermediate(BlockDriverState *active, 
BlockDriverState *top,
 BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
                                     BlockDriverState *bs);
 BlockDriverState *bdrv_find_base(BlockDriverState *bs);
+BlockDriverState *bdrv_find_active(BlockDriverState *bs);
 
 
 typedef struct BdrvCheckResult {
-- 
1.8.3.1




reply via email to

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