* [PATCH 1/2] mm: vmalloc_bytes()
@ 2024-02-27 7:25 Kent Overstreet
2024-02-27 7:25 ` [PATCH 2/2] mm: __kvsize() Kent Overstreet
2024-02-27 19:55 ` [PATCH 1/2] mm: vmalloc_bytes() Andrew Morton
0 siblings, 2 replies; 3+ messages in thread
From: Kent Overstreet @ 2024-02-27 7:25 UTC (permalink / raw)
To: linux-mm; +Cc: paulmck, Kent Overstreet
Add a __ksize() equivalent for vmalloc.
This is being added so we can track amount of memory stranded waiting
for an RCU grace period.
Cc: linux-mm@kvack.org
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
---
include/linux/vmalloc.h | 1 +
mm/vmalloc.c | 20 ++++++++++++++++++++
2 files changed, 21 insertions(+)
diff --git a/include/linux/vmalloc.h b/include/linux/vmalloc.h
index c720be70c8dd..3a6e29de8818 100644
--- a/include/linux/vmalloc.h
+++ b/include/linux/vmalloc.h
@@ -160,6 +160,7 @@ extern void *vcalloc(size_t n, size_t size) __alloc_size(1, 2);
extern void vfree(const void *addr);
extern void vfree_atomic(const void *addr);
+extern size_t vmalloc_bytes(const void *addr);
extern void *vmap(struct page **pages, unsigned int count,
unsigned long flags, pgprot_t prot);
diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index d12a17fc0c17..3642fca84c34 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -2848,6 +2848,26 @@ void vfree(const void *addr)
}
EXPORT_SYMBOL(vfree);
+/**
+ * vmalloc_bytes - Return size of a vmalloc() allocation
+ * @addr: Memory base address
+ *
+ * Returns the size of the allocation as passed to vmalloc() rounded up to
+ * PAGE_SIZE; does not include extra internal allocations.
+ */
+size_t vmalloc_bytes(const void *addr)
+{
+ struct vm_struct *vm = find_vm_area(addr);
+ if (unlikely(!vm)) {
+ WARN(1, KERN_ERR "vmalloc_bytes() called on nonexistent vm area (%p)\n",
+ addr);
+ return 0;
+ }
+
+ return vm->nr_pages * PAGE_SIZE;
+}
+EXPORT_SYMBOL(vmalloc_bytes);
+
/**
* vunmap - release virtual mapping obtained by vmap()
* @addr: memory base address
--
2.43.0
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH 2/2] mm: __kvsize()
2024-02-27 7:25 [PATCH 1/2] mm: vmalloc_bytes() Kent Overstreet
@ 2024-02-27 7:25 ` Kent Overstreet
2024-02-27 19:55 ` [PATCH 1/2] mm: vmalloc_bytes() Andrew Morton
1 sibling, 0 replies; 3+ messages in thread
From: Kent Overstreet @ 2024-02-27 7:25 UTC (permalink / raw)
To: linux-mm; +Cc: paulmck, Kent Overstreet
Add a __ksize() equivalent for kvmalloc.
Cc: linux-mm@kvack.org
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
---
include/linux/slab.h | 1 +
mm/slab_common.c | 13 +++++++++++++
2 files changed, 14 insertions(+)
diff --git a/include/linux/slab.h b/include/linux/slab.h
index b5f5ee8308d0..9ef26837c72d 100644
--- a/include/linux/slab.h
+++ b/include/linux/slab.h
@@ -227,6 +227,7 @@ void * __must_check krealloc(const void *objp, size_t new_size, gfp_t flags) __r
void kfree(const void *objp);
void kfree_sensitive(const void *objp);
size_t __ksize(const void *objp);
+size_t __kvsize(const void *objp);
DEFINE_FREE(kfree, void *, if (_T) kfree(_T))
diff --git a/mm/slab_common.c b/mm/slab_common.c
index 238293b1dbe1..6ec0f6543f34 100644
--- a/mm/slab_common.c
+++ b/mm/slab_common.c
@@ -972,6 +972,19 @@ size_t __ksize(const void *object)
return slab_ksize(folio_slab(folio)->slab_cache);
}
+/**
+ * __kvsize -- Report full size of underlying allocation
+ * @object: pointer to the object
+ *
+ * __ksize equivalent, but for kvmalloc
+ */
+size_t __kvsize(const void *addr)
+{
+ return is_vmalloc_addr(addr)
+ ? vmalloc_bytes(addr)
+ : __ksize(addr);
+}
+
gfp_t kmalloc_fix_flags(gfp_t flags)
{
gfp_t invalid_mask = flags & GFP_SLAB_BUG_MASK;
--
2.43.0
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH 1/2] mm: vmalloc_bytes()
2024-02-27 7:25 [PATCH 1/2] mm: vmalloc_bytes() Kent Overstreet
2024-02-27 7:25 ` [PATCH 2/2] mm: __kvsize() Kent Overstreet
@ 2024-02-27 19:55 ` Andrew Morton
1 sibling, 0 replies; 3+ messages in thread
From: Andrew Morton @ 2024-02-27 19:55 UTC (permalink / raw)
To: Kent Overstreet; +Cc: linux-mm, paulmck
On Tue, 27 Feb 2024 02:25:14 -0500 Kent Overstreet <kent.overstreet@linux.dev> wrote:
> Add a __ksize() equivalent for vmalloc.
> +++ b/mm/vmalloc.c
> @@ -2848,6 +2848,26 @@ void vfree(const void *addr)
> }
> EXPORT_SYMBOL(vfree);
>
> +/**
> + * vmalloc_bytes - Return size of a vmalloc() allocation
> + * @addr: Memory base address
> + *
> + * Returns the size of the allocation as passed to vmalloc() rounded up to
> + * PAGE_SIZE; does not include extra internal allocations.
> + */
> +size_t vmalloc_bytes(const void *addr)
> +{
> + struct vm_struct *vm = find_vm_area(addr);
> + if (unlikely(!vm)) {
> + WARN(1, KERN_ERR "vmalloc_bytes() called on nonexistent vm area (%p)\n",
> + addr);
> + return 0;
if (WARN(!vm, "..."))
and I don't think the explicit KERN_ERR facility is needed?
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-02-27 19:55 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-27 7:25 [PATCH 1/2] mm: vmalloc_bytes() Kent Overstreet
2024-02-27 7:25 ` [PATCH 2/2] mm: __kvsize() Kent Overstreet
2024-02-27 19:55 ` [PATCH 1/2] mm: vmalloc_bytes() Andrew Morton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox