qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH V2 2/4] block: make path_hash_protocol public.


From: Benoît Canet
Subject: [Qemu-devel] [PATCH V2 2/4] block: make path_hash_protocol public.
Date: Mon, 28 Jan 2013 18:04:38 +0100

Signed-off-by: Benoit Canet <address@hidden>
---
 block.c               |    2 +-
 include/block/block.h |    1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/block.c b/block.c
index 41a9ac0..843583f 100644
--- a/block.c
+++ b/block.c
@@ -195,7 +195,7 @@ static void bdrv_io_limits_intercept(BlockDriverState *bs,
 }
 
 /* check if the path starts with "<protocol>:" */
-static int path_has_protocol(const char *path)
+int path_has_protocol(const char *path)
 {
     const char *p;
 
diff --git a/include/block/block.h b/include/block/block.h
index 12470fc..b7be2d2 100644
--- a/include/block/block.h
+++ b/include/block/block.h
@@ -121,6 +121,7 @@ bool bdrv_io_limits_enabled(BlockDriverState *bs);
 void bdrv_init(void);
 void bdrv_init_with_whitelist(void);
 BlockDriver *bdrv_find_protocol(const char *filename);
+int path_has_protocol(const char *path);
 BlockDriver *bdrv_find_format(const char *format_name);
 BlockDriver *bdrv_find_whitelisted_format(const char *format_name);
 int bdrv_create(BlockDriver *drv, const char* filename,
-- 
1.7.10.4




reply via email to

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