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

2013-01-28 Thread Benoît Canet
Signed-off-by: Benoit Canet ben...@irqsave.net
---
 block.c   |2 +-
 include/block/block.h |1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/block.c b/block.c
index af22ee8..3bebc74 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 4d83856..8bb47c4 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




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

2013-01-28 Thread Stefan Hajnoczi
On Mon, Jan 28, 2013 at 02:22:16PM +0100, Benoît Canet wrote:

s/hash/has/ in subject line.  Too much dedup for you :).