diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2024-02-05 00:15:20 -0500 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2024-05-30 22:35:39 -0400 |
commit | b7d31633f0e06ce3e94e1876d47a2eb5e3d761e4 (patch) | |
tree | ea5a5f4838eff819850b103986b2e8cd3a396917 /lib/darray.c | |
parent | 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0 (diff) |
darray: lift from bcachefs
dynamic arrays - inspired from CCAN darrays, basically c++ stl vectors.
Used by thread_with_stdio, which is also being lifted from bcachefs for
xfs.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'lib/darray.c')
-rw-r--r-- | lib/darray.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/darray.c b/lib/darray.c new file mode 100644 index 000000000000..7cb064f14b39 --- /dev/null +++ b/lib/darray.c @@ -0,0 +1,32 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * (C) 2022-2024 Kent Overstreet <kent.overstreet@linux.dev> + */ + +#include <linux/darray.h> +#include <linux/log2.h> +#include <linux/module.h> +#include <linux/slab.h> + +int __darray_resize_slowpath(darray_char *d, size_t element_size, size_t new_size, gfp_t gfp) +{ + if (new_size > d->size) { + new_size = roundup_pow_of_two(new_size); + + void *data = kvmalloc_array(new_size, element_size, gfp); + if (!data) + return -ENOMEM; + + memcpy(data, d->data, d->size * element_size); + if (d->data != d->preallocated) + kvfree(d->data); + d->data = data; + d->size = new_size; + } + + return 0; +} +EXPORT_SYMBOL_GPL(__darray_resize_slowpath); + +MODULE_AUTHOR("Kent Overstreet"); +MODULE_LICENSE("GPL"); |