Commit 071a0bc2 authored by Linus Torvalds's avatar Linus Torvalds
parents 3a4c6800 b1aabecd
......@@ -4457,3 +4457,4 @@ size_t ksize(const void *objp)
return obj_size(virt_to_cache(objp));
}
EXPORT_SYMBOL(ksize);
......@@ -521,6 +521,7 @@ size_t ksize(const void *block)
} else
return sp->page.private;
}
EXPORT_SYMBOL(ksize);
struct kmem_cache {
unsigned int size, align;
......
......@@ -2736,6 +2736,7 @@ size_t ksize(const void *object)
*/
return s->size;
}
EXPORT_SYMBOL(ksize);
void kfree(const void *x)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment