qemu-trivial
[Top][All Lists]
Advanced

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

[Qemu-trivial] [PATCH] iscsi: Fix compile error


From: Alexey Kardashevskiy
Subject: [Qemu-trivial] [PATCH] iscsi: Fix compile error
Date: Wed, 21 May 2014 13:49:57 +1000

This fixes compile error when LIBISCSI_FEATURE_IOVECTOR is not defined:

block/iscsi.c|384 col 13| error: 'iscsi_allocationmap_is_allocated' defined but 
not used [-Werror=unused-f    unction]

Signed-off-by: Alexey Kardashevskiy <address@hidden>
---
 block/iscsi.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/block/iscsi.c b/block/iscsi.c
index d649424..5b3f459 100644
--- a/block/iscsi.c
+++ b/block/iscsi.c
@@ -380,6 +380,7 @@ retry:
     return 0;
 }
 
+#if defined(LIBISCSI_FEATURE_IOVECTOR)
 
 static bool iscsi_allocationmap_is_allocated(IscsiLun *iscsilun,
                                              int64_t sector_num, int 
nb_sectors)
@@ -393,9 +394,6 @@ static bool iscsi_allocationmap_is_allocated(IscsiLun 
*iscsilun,
                            sector_num / iscsilun->cluster_sectors) == size);
 }
 
-
-#if defined(LIBISCSI_FEATURE_IOVECTOR)
-
 static int64_t coroutine_fn iscsi_co_get_block_status(BlockDriverState *bs,
                                                   int64_t sector_num,
                                                   int nb_sectors, int *pnum)
-- 
1.9.rc0




reply via email to

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