mirror of
https://github.com/torvalds/linux.git
synced 2024-10-31 17:21:49 +00:00
65f27f3844
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>
45 lines
905 B
C
45 lines
905 B
C
/*
|
|
* poweroff.c - sysrq handler to gracefully power down machine.
|
|
*
|
|
* This file is released under the GPL v2
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/sysrq.h>
|
|
#include <linux/init.h>
|
|
#include <linux/pm.h>
|
|
#include <linux/workqueue.h>
|
|
#include <linux/reboot.h>
|
|
|
|
/*
|
|
* When the user hits Sys-Rq o to power down the machine this is the
|
|
* callback we use.
|
|
*/
|
|
|
|
static void do_poweroff(struct work_struct *dummy)
|
|
{
|
|
kernel_power_off();
|
|
}
|
|
|
|
static DECLARE_WORK(poweroff_work, do_poweroff);
|
|
|
|
static void handle_poweroff(int key, struct tty_struct *tty)
|
|
{
|
|
schedule_work(&poweroff_work);
|
|
}
|
|
|
|
static struct sysrq_key_op sysrq_poweroff_op = {
|
|
.handler = handle_poweroff,
|
|
.help_msg = "powerOff",
|
|
.action_msg = "Power Off",
|
|
.enable_mask = SYSRQ_ENABLE_BOOT,
|
|
};
|
|
|
|
static int pm_sysrq_init(void)
|
|
{
|
|
register_sysrq_key('o', &sysrq_poweroff_op);
|
|
return 0;
|
|
}
|
|
|
|
subsys_initcall(pm_sysrq_init);
|