diff options
author | Masanari Iida <standby24x7@gmail.com> | 2014-01-27 12:57:08 -0500 |
---|---|---|
committer | Pekka Enberg <penberg@kernel.org> | 2014-01-31 06:52:25 -0500 |
commit | cb8ee1a3d429f8898972c869dd4792afb04e961a (patch) | |
tree | cb4f532c111a9f909c27c94b83ec041ee3fc08f6 /mm/slab.c | |
parent | 67b6c900dc6dce65478d6fe37b60cd1e65bb80c2 (diff) |
mm: Fix warning on make htmldocs caused by slab.c
This patch fixed following errors while make htmldocs
Warning(/mm/slab.c:1956): No description found for parameter 'page'
Warning(/mm/slab.c:1956): Excess function parameter 'slabp' description in 'slab_destroy'
Incorrect function parameter "slabp" was set instead of "page"
Acked-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'mm/slab.c')
-rw-r--r-- | mm/slab.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1946,7 +1946,7 @@ static void slab_destroy_debugcheck(struct kmem_cache *cachep, | |||
1946 | /** | 1946 | /** |
1947 | * slab_destroy - destroy and release all objects in a slab | 1947 | * slab_destroy - destroy and release all objects in a slab |
1948 | * @cachep: cache pointer being destroyed | 1948 | * @cachep: cache pointer being destroyed |
1949 | * @slabp: slab pointer being destroyed | 1949 | * @page: page pointer being destroyed |
1950 | * | 1950 | * |
1951 | * Destroy all the objs in a slab, and release the mem back to the system. | 1951 | * Destroy all the objs in a slab, and release the mem back to the system. |
1952 | * Before calling the slab must have been unlinked from the cache. The | 1952 | * Before calling the slab must have been unlinked from the cache. The |