From: Zbigniew Jędrzejewski-Szmek Date: Mon, 23 Oct 2023 12:51:43 +0000 (+0200) Subject: basic/iovec-util: always call the iovec "iovec" X-Git-Tag: v255-rc1~159^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1ca0b482b614f8b7772caba372c83bc4f9e63ee2;p=thirdparty%2Fsystemd.git basic/iovec-util: always call the iovec "iovec" We were using "i", "iov", and "iovec" in variuos places. Let's be consistent. --- diff --git a/src/basic/iovec-util.c b/src/basic/iovec-util.c index 11aa630ae6a..5d70657784c 100644 --- a/src/basic/iovec-util.c +++ b/src/basic/iovec-util.c @@ -3,24 +3,24 @@ #include "iovec-util.h" #include "string-util.h" -size_t iovec_total_size(const struct iovec *i, size_t n) { +size_t iovec_total_size(const struct iovec *iovec, size_t n) { size_t sum = 0; - assert(i || n == 0); + assert(iovec || n == 0); - FOREACH_ARRAY(j, i, n) + FOREACH_ARRAY(j, iovec, n) sum += j->iov_len; return sum; } -bool iovec_increment(struct iovec *i, size_t n, size_t k) { - assert(i || n == 0); +bool iovec_increment(struct iovec *iovec, size_t n, size_t k) { + assert(iovec || n == 0); /* Returns true if there is nothing else to send (bytes written cover all of the iovec), * false if there's still work to do. */ - FOREACH_ARRAY(j, i, n) { + FOREACH_ARRAY(j, iovec, n) { size_t sub; if (j->iov_len == 0) @@ -62,12 +62,12 @@ char* set_iovec_string_field_free(struct iovec *iovec, size_t *n_iovec, const ch return x; } -void iovec_array_free(struct iovec *iov, size_t n) { - if (!iov) +void iovec_array_free(struct iovec *iovec, size_t n) { + if (!iovec) return; for (size_t i = 0; i < n; i++) - free(iov[i].iov_base); + free(iovec[i].iov_base); - free(iov); + free(iovec); } diff --git a/src/basic/iovec-util.h b/src/basic/iovec-util.h index 1f652a0ede6..9c3134592ed 100644 --- a/src/basic/iovec-util.h +++ b/src/basic/iovec-util.h @@ -8,9 +8,9 @@ #include "alloc-util.h" #include "macro.h" -size_t iovec_total_size(const struct iovec *i, size_t n); +size_t iovec_total_size(const struct iovec *iovec, size_t n); -bool iovec_increment(struct iovec *i, size_t n, size_t k); +bool iovec_increment(struct iovec *iovec, size_t n, size_t k); #define IOVEC_NULL (const struct iovec) {} @@ -38,11 +38,11 @@ static inline void iovec_done_erase(struct iovec *iovec) { iovec->iov_len = 0; } -static inline bool iovec_is_set(const struct iovec *iov) { - return iov && iov->iov_len > 0 && iov->iov_base; +static inline bool iovec_is_set(const struct iovec *iovec) { + return iovec && iovec->iov_len > 0 && iovec->iov_base; } char* set_iovec_string_field(struct iovec *iovec, size_t *n_iovec, const char *field, const char *value); char* set_iovec_string_field_free(struct iovec *iovec, size_t *n_iovec, const char *field, char *value); -void iovec_array_free(struct iovec *iov, size_t n); +void iovec_array_free(struct iovec *iovec, size_t n);