diff options
author | Randy.Dunlap <rdunlap@xenotime.net> | 2006-02-01 06:05:52 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-02-01 11:53:18 -0500 |
commit | a70773ddb96b74c7afe5a5bc859ba45e3d02899e (patch) | |
tree | 7bb27a62bb4230c533cc25f2c8024906e431b80a /mm/slab.c | |
parent | 7fd6b1413082c303613fc137aca9a004740cacf0 (diff) |
[PATCH] mm/slab: add kernel-doc for one function
Fix kernel-doc for calculate_slab_order().
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm/slab.c')
-rw-r--r-- | mm/slab.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1559,8 +1559,13 @@ static void set_up_list3s(struct kmem_cache *cachep, int index) | |||
1559 | } | 1559 | } |
1560 | 1560 | ||
1561 | /** | 1561 | /** |
1562 | * calculate_slab_order - calculate size (page order) of slabs and the number | 1562 | * calculate_slab_order - calculate size (page order) of slabs |
1563 | * of objects per slab. | 1563 | * @cachep: pointer to the cache that is being created |
1564 | * @size: size of objects to be created in this cache. | ||
1565 | * @align: required alignment for the objects. | ||
1566 | * @flags: slab allocation flags | ||
1567 | * | ||
1568 | * Also calculates the number of objects per slab. | ||
1564 | * | 1569 | * |
1565 | * This could be made much more intelligent. For now, try to avoid using | 1570 | * This could be made much more intelligent. For now, try to avoid using |
1566 | * high order pages for slabs. When the gfp() functions are more friendly | 1571 | * high order pages for slabs. When the gfp() functions are more friendly |