diff options
| author | Oleg Nesterov <[email protected]> | 2007-05-09 02:34:18 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2007-05-09 12:30:52 -0700 |
| commit | c214b2cc5f9be7c236f9b91acf524688ff0e3e72 (patch) | |
| tree | 9edffda8f78422d01219dacf9ab2fb0104302a1d /include/linux/debugobjects.h | |
| parent | 1634c48f8b85dcb05101f1eb2eab9af40b5976da (diff) | |
ipvs: flush defense_work before module unload
net/ipv4/ipvs/ip_vs_core.c
module_exit
ip_vs_cleanup
ip_vs_control_cleanup
cancel_rearming_delayed_work
// done
This is unsafe. The module may be unloaded and the memory may be freed
while defense_work's handler is still running/preempted.
Do flush_work(&defense_work.work) after cancel_rearming_delayed_work().
Alternatively, we could add flush_work() to cancel_rearming_delayed_work(),
but note that we can't change cancel_delayed_work() in the same manner
because it may be called from atomic context.
Signed-off-by: Oleg Nesterov <[email protected]>
Cc: "David S. Miller" <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'include/linux/debugobjects.h')
0 files changed, 0 insertions, 0 deletions