[PATCH] more kernel-doc cleanups, additions
Various core kernel-doc cleanups: - add missing function parameters in ipc, irq/manage, kernel/sys, kernel/sysctl, and mm/slab; - move description to just above function for kernel_restart() Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
8a0d490069
commit
1e5d533142
@ -410,7 +410,8 @@ void ipc_rcu_getref(void *ptr)
|
||||
}
|
||||
|
||||
/**
|
||||
* ipc_schedule_free - free ipc + rcu space
|
||||
* ipc_schedule_free - free ipc + rcu space
|
||||
* @head: RCU callback structure for queued work
|
||||
*
|
||||
* Since RCU callback function is called in bh,
|
||||
* we need to defer the vfree to schedule_work
|
||||
@ -427,10 +428,10 @@ static void ipc_schedule_free(struct rcu_head *head)
|
||||
}
|
||||
|
||||
/**
|
||||
* ipc_immediate_free - free ipc + rcu space
|
||||
*
|
||||
* Free from the RCU callback context
|
||||
* ipc_immediate_free - free ipc + rcu space
|
||||
* @head: RCU callback structure that contains pointer to be freed
|
||||
*
|
||||
* Free from the RCU callback context
|
||||
*/
|
||||
static void ipc_immediate_free(struct rcu_head *head)
|
||||
{
|
||||
|
Reference in New Issue
Block a user