Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 58a69cb4 authored by Tejun Heo's avatar Tejun Heo
Browse files

workqueue, freezer: unify spelling of 'freeze' + 'able' to 'freezable'



There are two spellings in use for 'freeze' + 'able' - 'freezable' and
'freezeable'.  The former is the more prominent one.  The latter is
mostly used by workqueue and in a few other odd places.  Unify the
spelling to 'freezable'.

Signed-off-by: default avatarTejun Heo <tj@kernel.org>
Reported-by: default avatarAlan Stern <stern@rowland.harvard.edu>
Acked-by: default avatar"Rafael J. Wysocki" <rjw@sisk.pl>
Acked-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
Acked-by: default avatarDmitry Torokhov <dtor@mail.ru>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Alex Dubov <oakad@yahoo.com>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Steven Whitehouse <swhiteho@redhat.com>
parent 7576958a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -190,9 +190,9 @@ resources, scheduled and executed.
	* Long running CPU intensive workloads which can be better
	  managed by the system scheduler.

  WQ_FREEZEABLE
  WQ_FREEZABLE

	A freezeable wq participates in the freeze phase of the system
	A freezable wq participates in the freeze phase of the system
	suspend operations.  Work items on the wq are drained and no
	new work item starts execution until thawed.

+1 −1
Original line number Diff line number Diff line
@@ -621,7 +621,7 @@ static int __init memstick_init(void)
{
	int rc;

	workqueue = create_freezeable_workqueue("kmemstick");
	workqueue = create_freezable_workqueue("kmemstick");
	if (!workqueue)
		return -ENOMEM;

+1 −1
Original line number Diff line number Diff line
@@ -329,7 +329,7 @@ static int __init tifm_init(void)
{
	int rc;

	workqueue = create_freezeable_workqueue("tifm");
	workqueue = create_freezable_workqueue("tifm");
	if (!workqueue)
		return -ENOMEM;

+1 −1
Original line number Diff line number Diff line
@@ -785,7 +785,7 @@ static int __init vmballoon_init(void)
	if (x86_hyper != &x86_hyper_vmware)
		return -ENODEV;

	vmballoon_wq = create_freezeable_workqueue("vmmemctl");
	vmballoon_wq = create_freezable_workqueue("vmmemctl");
	if (!vmballoon_wq) {
		pr_err("failed to create workqueue\n");
		return -ENOMEM;
+1 −1
Original line number Diff line number Diff line
@@ -930,7 +930,7 @@ int r852_probe(struct pci_dev *pci_dev, const struct pci_device_id *id)

	init_completion(&dev->dma_done);

	dev->card_workqueue = create_freezeable_workqueue(DRV_NAME);
	dev->card_workqueue = create_freezable_workqueue(DRV_NAME);

	if (!dev->card_workqueue)
		goto error9;
Loading