Skip to content

Commit

Permalink
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel…
Browse files Browse the repository at this point in the history
…/git/penberg/slab-2.6

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6:
  mm: Export symbol ksize()
  • Loading branch information
Linus Torvalds committed Feb 12, 2009
2 parents 3a4c680 + b1aabec commit 071a0bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions mm/slab.c
Original file line number Diff line number Diff line change
Expand Up @@ -4457,3 +4457,4 @@ size_t ksize(const void *objp)

return obj_size(virt_to_cache(objp));
}
EXPORT_SYMBOL(ksize);
1 change: 1 addition & 0 deletions mm/slob.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions mm/slub.c
Original file line number Diff line number Diff line change
Expand Up @@ -2736,6 +2736,7 @@ size_t ksize(const void *object)
*/
return s->size;
}
EXPORT_SYMBOL(ksize);

void kfree(const void *x)
{
Expand Down

0 comments on commit 071a0bc

Please sign in to comment.