gluster-devel
[Top][All Lists]
Advanced

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

[Gluster-devel] [PATCH BUG:393 09/10] libglusterfs: add iov_link


From: Corentin Chary
Subject: [Gluster-devel] [PATCH BUG:393 09/10] libglusterfs: add iov_link
Date: Wed, 18 Nov 2009 12:14:01 +0100

Signed-off-by: Corentin Chary <address@hidden>
---
 libglusterfs/src/common-utils.h |   13 ++++++++++++-
 1 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/libglusterfs/src/common-utils.h b/libglusterfs/src/common-utils.h
index 084679f..e15cb61 100644
--- a/libglusterfs/src/common-utils.h
+++ b/libglusterfs/src/common-utils.h
@@ -184,7 +184,6 @@ iov_dup (struct iovec *vector, int count)
        return newvec;
 }
 
-
 static inline int
 iov_subset (struct iovec *orig, int orig_count,
            off_t src_offset, off_t dst_offset,
@@ -256,6 +255,18 @@ iov_load (struct iovec *vector, int count, char *buf)
        }
 }
 
+static inline void
+iov_link (struct iovec *vector, int count, char *buf)
+{
+       int i;
+       int copied = 0;
+
+       for (i = 0; i < count; i++) {
+               vector[i].iov_base = buf + copied;
+               copied += vector[i].iov_len;
+       }
+}
+
 static inline int
 mem_0filled (const char *buf, size_t size)
 {
-- 
1.6.4.4





reply via email to

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