aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorTahsin Erdogan <tahsin@google.com>2017-07-23 21:25:32 -0400
committerTheodore Ts'o <tytso@mit.edu>2017-07-23 21:25:32 -0400
commitc270f4ec6f1ab542a4c496a5f1aa59a0edc54c07 (patch)
tree394208b9d064feac6b3aa406d3876ccf17f9efe6 /lib
parent0b4ffc2747fd51da903f2f5f083a762f0aafc37b (diff)
downloade2fsprogs-c270f4ec6f1ab542a4c496a5f1aa59a0edc54c07.tar.gz
libext2fs: rename ext2_xattr_handle->length to capacity
ext2_xattr_handle has two fields 'count' and 'length' which represent number of filled elements vs total element count. They have close meanings so are easy to confuse, thus make code less readable. Rename length to capacity. Signed-off-by: Tahsin Erdogan <tahsin@google.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'lib')
-rw-r--r--lib/ext2fs/ext_attr.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/lib/ext2fs/ext_attr.c b/lib/ext2fs/ext_attr.c
index 4357bdd0c..2e9fc96d1 100644
--- a/lib/ext2fs/ext_attr.c
+++ b/lib/ext2fs/ext_attr.c
@@ -291,7 +291,7 @@ struct ext2_xattr_handle {
errcode_t magic;
ext2_filsys fs;
struct ext2_xattr *attrs;
- size_t length, count;
+ size_t capacity, count;
ext2_ino_t ino;
unsigned int flags;
int dirty;
@@ -303,14 +303,14 @@ static errcode_t ext2fs_xattrs_expand(struct ext2_xattr_handle *h,
struct ext2_xattr *new_attrs;
errcode_t err;
- err = ext2fs_get_arrayzero(h->length + expandby,
+ err = ext2fs_get_arrayzero(h->capacity + expandby,
sizeof(struct ext2_xattr), &new_attrs);
if (err)
return err;
- memcpy(new_attrs, h->attrs, h->length * sizeof(struct ext2_xattr));
+ memcpy(new_attrs, h->attrs, h->capacity * sizeof(struct ext2_xattr));
ext2fs_free_mem(&h->attrs);
- h->length += expandby;
+ h->capacity += expandby;
h->attrs = new_attrs;
return 0;
@@ -675,7 +675,7 @@ static errcode_t write_xattrs_to_buffer(struct ext2_xattr_handle *handle,
memset(entries_start, 0, storage_size);
/* For all remaining x... */
- for (; x < handle->attrs + handle->length; x++) {
+ for (; x < handle->attrs + handle->capacity; x++) {
if (!x->name)
continue;
@@ -771,7 +771,7 @@ errcode_t ext2fs_xattrs_write(struct ext2_xattr_handle *handle)
* to the end.
*/
x = handle->attrs;
- qsort(x, handle->length, sizeof(struct ext2_xattr), attr_compare);
+ qsort(x, handle->capacity, sizeof(struct ext2_xattr), attr_compare);
/* Does the inode have space for EA? */
if (inode->i_extra_isize < sizeof(inode->i_extra_isize) ||
@@ -813,7 +813,7 @@ write_ea_block:
if (err)
goto out2;
- if (x < handle->attrs + handle->length) {
+ if (x < handle->attrs + handle->capacity) {
err = EXT2_ET_EA_NO_SPACE;
goto out2;
}
@@ -904,11 +904,11 @@ static errcode_t read_xattrs_from_buffer(struct ext2_xattr_handle *handle,
!EXT2_EXT_IS_LAST_ENTRY(entry)) {
/* Allocate space for more attrs? */
- if (x == handle->attrs + handle->length) {
+ if (x == handle->attrs + handle->capacity) {
err = ext2fs_xattrs_expand(handle, 4);
if (err)
return err;
- x = handle->attrs + handle->length - 4;
+ x = handle->attrs + handle->capacity - 4;
}
/* header eats this space */
@@ -1026,7 +1026,7 @@ static void xattrs_free_keys(struct ext2_xattr_handle *h)
struct ext2_xattr *a = h->attrs;
size_t i;
- for (i = 0; i < h->length; i++) {
+ for (i = 0; i < h->capacity; i++) {
if (a[i].name)
ext2fs_free_mem(&a[i].name);
if (a[i].value)
@@ -1149,7 +1149,7 @@ errcode_t ext2fs_xattrs_iterate(struct ext2_xattr_handle *h,
int ret;
EXT2_CHECK_MAGIC(h, EXT2_ET_MAGIC_EA_HANDLE);
- for (x = h->attrs; x < h->attrs + h->length; x++) {
+ for (x = h->attrs; x < h->attrs + h->capacity; x++) {
if (!x->name)
continue;
@@ -1171,7 +1171,7 @@ errcode_t ext2fs_xattr_get(struct ext2_xattr_handle *h, const char *key,
errcode_t err;
EXT2_CHECK_MAGIC(h, EXT2_ET_MAGIC_EA_HANDLE);
- for (x = h->attrs; x < h->attrs + h->length; x++) {
+ for (x = h->attrs; x < h->attrs + h->capacity; x++) {
if (!x->name || strcmp(x->name, key))
continue;
@@ -1280,7 +1280,7 @@ errcode_t ext2fs_xattr_set(struct ext2_xattr_handle *handle,
} else
memcpy(new_value, value, value_len);
- for (x = handle->attrs; x < handle->attrs + handle->length; x++) {
+ for (x = handle->attrs; x < handle->attrs + handle->capacity; x++) {
if (!x->name) {
last_empty = x;
continue;
@@ -1314,7 +1314,7 @@ errcode_t ext2fs_xattr_set(struct ext2_xattr_handle *handle,
if (err)
goto errout;
- x = handle->attrs + handle->length - 4;
+ x = handle->attrs + handle->capacity - 4;
err = ext2fs_get_mem(strlen(key) + 1, &x->name);
if (err)
goto errout;
@@ -1339,7 +1339,7 @@ errcode_t ext2fs_xattr_remove(struct ext2_xattr_handle *handle,
struct ext2_xattr *x;
EXT2_CHECK_MAGIC(handle, EXT2_ET_MAGIC_EA_HANDLE);
- for (x = handle->attrs; x < handle->attrs + handle->length; x++) {
+ for (x = handle->attrs; x < handle->attrs + handle->capacity; x++) {
if (!x->name)
continue;
@@ -1372,8 +1372,8 @@ errcode_t ext2fs_xattrs_open(ext2_filsys fs, ext2_ino_t ino,
return err;
h->magic = EXT2_ET_MAGIC_EA_HANDLE;
- h->length = 4;
- err = ext2fs_get_arrayzero(h->length, sizeof(struct ext2_xattr),
+ h->capacity = 4;
+ err = ext2fs_get_arrayzero(h->capacity, sizeof(struct ext2_xattr),
&h->attrs);
if (err) {
ext2fs_free_mem(&h);