kernel-fxtec-pro1x/drivers/block
David Howells 65f27f3844 WorkStruct: Pass the work_struct pointer instead of context data
Pass the work_struct pointer to the work function rather than context data.
The work function can use container_of() to work out the data.

For the cases where the container of the work_struct may go away the moment the
pending bit is cleared, it is made possible to defer the release of the
structure by deferring the clearing of the pending bit.

To make this work, an extra flag is introduced into the management side of the
work_struct.  This governs auto-release of the structure upon execution.

Ordinarily, the work queue executor would release the work_struct for further
scheduling or deallocation by clearing the pending bit prior to jumping to the
work function.  This means that, unless the driver makes some guarantee itself
that the work_struct won't go away, the work function may not access anything
else in the work_struct or its container lest they be deallocated..  This is a
problem if the auxiliary data is taken away (as done by the last patch).

However, if the pending bit is *not* cleared before jumping to the work
function, then the work function *may* access the work_struct and its container
with no problems.  But then the work function must itself release the
work_struct by calling work_release().

In most cases, automatic release is fine, so this is the default.  Special
initiators exist for the non-auto-release case (ending in _NAR).


Signed-Off-By: David Howells <dhowells@redhat.com>
2006-11-22 14:55:48 +00:00
..
aoe aoe: Add forgotten NULL at end of attribute list in aoeblk.c 2006-11-16 14:30:26 -08:00
paride [PATCH] completions: lockdep annotate on stack completions 2006-10-01 00:39:24 -07:00
acsi.c IRQ: Maintain regs pointer globally rather than passing to IRQ handlers 2006-10-05 15:10:12 +01:00
acsi_slm.c IRQ: Maintain regs pointer globally rather than passing to IRQ handlers 2006-10-05 15:10:12 +01:00
amiflop.c [PATCH] amiga_floppy_init() in non-modular case 2006-10-11 11:17:07 -07:00
ataflop.c IRQ: Maintain regs pointer globally rather than passing to IRQ handlers 2006-10-05 15:10:12 +01:00
cciss.c [PATCH] cciss: fix iostat 2006-11-14 15:08:50 -08:00
cciss.h [PATCH] cciss: support for >2TB logical volumes 2006-10-01 00:39:20 -07:00
cciss_cmd.h [PATCH] cciss: support for >2TB logical volumes 2006-10-01 00:39:20 -07:00
cciss_scsi.c [PATCH] completions: lockdep annotate on stack completions 2006-10-01 00:39:24 -07:00
cciss_scsi.h
cpqarray.c [PATCH] cpqarray: fix iostat 2006-11-14 15:08:50 -08:00
cpqarray.h
cryptoloop.c
DAC960.c Various drivers' irq handlers: kill dead code, needless casts 2006-10-06 15:00:58 -04:00
DAC960.h [PATCH] DAC960: use memmove for overlapping areas 2006-10-11 11:14:23 -07:00
floppy.c WorkStruct: Pass the work_struct pointer instead of context data 2006-11-22 14:55:48 +00:00
ida_cmd.h
ida_ioctl.h
Kconfig Fix bytes <-> kilobytes typo in Kconfig for ramdisk 2006-10-03 23:40:34 +02:00
loop.c [PATCH] __user annotations: loop.c 2006-10-10 15:37:23 -07:00
Makefile
nbd.c [PATCH] Split struct request ->flags into two parts 2006-09-30 20:23:37 +02:00
pktcdvd.c [PATCH] pktcdvd: rename a variable for better readability 2006-10-04 07:55:14 -07:00
ps2esdi.c IRQ: Maintain regs pointer globally rather than passing to IRQ handlers 2006-10-05 15:10:12 +01:00
rd.c [PATCH] rd: memory leak on rd_init() failure 2006-10-17 08:18:48 -07:00
smart1,2.h
swim3.c IRQ: Maintain regs pointer globally rather than passing to IRQ handlers 2006-10-05 15:10:12 +01:00
swim_iop.c IRQ: Maintain regs pointer globally rather than passing to IRQ handlers 2006-10-05 15:10:12 +01:00
sx8.c IRQ: Maintain regs pointer globally rather than passing to IRQ handlers 2006-10-05 15:10:12 +01:00
ub.c IRQ: Maintain regs pointer globally rather than passing to IRQ handlers 2006-10-05 15:10:12 +01:00
umem.c IRQ: Maintain regs pointer globally rather than passing to IRQ handlers 2006-10-05 15:10:12 +01:00
viodasd.c
xd.c [PATCH] Use linux/io.h instead of asm/io.h 2006-10-11 11:14:23 -07:00
xd.h IRQ: Maintain regs pointer globally rather than passing to IRQ handlers 2006-10-05 15:10:12 +01:00
z2ram.c [PATCH] z2_init() in non-modular case 2006-10-11 11:17:07 -07:00