Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[PATCH] fix kernel-doc warnings in 2.6.20-rc1

Fix kernel-doc warnings in 2.6.20-rc1.

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Randy Dunlap and committed by
Linus Torvalds
af9997e4 b7f869a2

+7 -4
+1
block/ll_rw_blk.c
··· 2453 2453 * @rq: request to map data to 2454 2454 * @iov: pointer to the iovec 2455 2455 * @iov_count: number of elements in the iovec 2456 + * @len: I/O byte count 2456 2457 * 2457 2458 * Description: 2458 2459 * Data will be mapped directly for zero copy io, if possible. Otherwise
+1
drivers/base/firmware_class.c
··· 127 127 /** 128 128 * firmware_loading_store - set value in the 'loading' control file 129 129 * @dev: device pointer 130 + * @attr: device attribute pointer 130 131 * @buf: buffer to scan for loading control value 131 132 * @count: number of bytes in @buf 132 133 *
+1 -1
drivers/message/i2o/exec-osm.c
··· 367 367 368 368 /** 369 369 * i2o_exec_lct_modified - Called on LCT NOTIFY reply 370 - * @work: work struct for a specific controller 370 + * @_work: work struct for a specific controller 371 371 * 372 372 * This function handles asynchronus LCT NOTIFY replies. It parses the 373 373 * new LCT and if the buffer for the LCT was to small sends a LCT NOTIFY
+1 -1
kernel/relay.c
··· 302 302 303 303 /** 304 304 * wakeup_readers - wake up readers waiting on a channel 305 - * @private: the channel buffer 305 + * @work: work struct that contains the the channel buffer 306 306 * 307 307 * This is the work function used to defer reader waking. The 308 308 * reason waking is deferred is that calling directly from write
+2 -2
kernel/workqueue.c
··· 233 233 /** 234 234 * queue_delayed_work - queue work on a workqueue after delay 235 235 * @wq: workqueue to use 236 - * @work: delayable work to queue 236 + * @dwork: delayable work to queue 237 237 * @delay: number of jiffies to wait before queueing 238 238 * 239 239 * Returns 0 if @work was already on a queue, non-zero otherwise. ··· 268 268 * queue_delayed_work_on - queue work on specific CPU after delay 269 269 * @cpu: CPU number to execute work on 270 270 * @wq: workqueue to use 271 - * @work: work to queue 271 + * @dwork: work to queue 272 272 * @delay: number of jiffies to wait before queueing 273 273 * 274 274 * Returns 0 if @work was already on a queue, non-zero otherwise.
+1
mm/slab.c
··· 3587 3587 * @cachep: The cache to allocate from. 3588 3588 * @flags: See kmalloc(). 3589 3589 * @nodeid: node number of the target node. 3590 + * @caller: return address of caller, used for debug information 3590 3591 * 3591 3592 * Identical to kmem_cache_alloc but it will allocate memory on the given 3592 3593 * node, which can improve the performance for cpu bound structures.