Home
last modified time | relevance | path

Searched refs:notifiers (Results 1 – 24 of 24) sorted by relevance

/linux-4.1.27/Documentation/cpu-freq/
Dcore.txt22 2. CPUFreq notifiers
31 frequency transitions), as well as to "notifiers". These are device
44 2. CPUFreq notifiers
47 CPUFreq notifiers conform to the standard kernel notifier interface.
48 See linux/include/linux/notifier.h for details on notifiers.
50 There are two different CPUFreq notifiers - policy notifiers and
51 transition notifiers.
54 2.1 CPUFreq policy notifiers
60 1.) During CPUFREQ_ADJUST all CPUFreq notifiers may change the limit if
67 3.) And during CPUFREQ_NOTIFY all notifiers are informed of the new policy
[all …]
Dindex.txt22 of CPUFreq notifiers
/linux-4.1.27/Documentation/power/
Dnotifiers.txt1 Suspend notifiers
15 The subsystems or drivers having such needs can register suspend notifiers that
20 below because here we do additional work between notifiers
42 It is generally assumed that whatever the notifiers do for
45 PM_POST_SUSPEND. Additionally, all of the notifiers are called for
47 all of the notifiers are called for PM_POST_SUSPEND if one of them fails for
50 The hibernation and suspend notifiers are called with pm_mutex held. They are
D00-INDEX17 notifiers.txt
18 - Registering suspend notifiers in device drivers
Dfreezing-of-tasks.txt183 hibernation (and suspend) notifiers (in that case, though, we won't be able to
200 requested early enough using the suspend notifier API described in notifiers.txt.
209 notifiers to achieve mutual exclusion. Look at the CPU-Hotplug code
Dpm_qos_interface.txt42 registered notifiers are called only if the target value is now different.
113 registered notifiers are called only if the target value is now different.
Ddevices.txt663 management notifiers that are called before tasks are frozen and after they have
664 been thawed. Generally speaking, the PM notifiers are suitable for performing
668 For details refer to Documentation/power/notifiers.txt.
Dpci.txt716 in Documentation/power/notifiers.txt).
/linux-4.1.27/kernel/power/
Dqos.c73 .notifiers = &cpu_dma_lat_notifier,
87 .notifiers = &network_lat_notifier,
102 .notifiers = &network_throughput_notifier,
117 .notifiers = &memory_bandwidth_notifier,
315 if (c->notifiers) in pm_qos_update_target()
316 blocking_notifier_call_chain(c->notifiers, in pm_qos_update_target()
561 pm_qos_array[pm_qos_class]->constraints->notifiers, in pm_qos_add_notifier()
581 pm_qos_array[pm_qos_class]->constraints->notifiers, in pm_qos_remove_notifier()
/linux-4.1.27/drivers/staging/unisys/visorchipset/
Dvisorchipset_main.c556 struct visorchipset_busdev_notifiers *notifiers, in visorchipset_register_busdev_server() argument
561 if (!notifiers) { in visorchipset_register_busdev_server()
566 busdev_server_notifiers = *notifiers; in visorchipset_register_busdev_server()
581 struct visorchipset_busdev_notifiers *notifiers, in visorchipset_register_busdev_client() argument
586 if (!notifiers) { in visorchipset_register_busdev_client()
591 busdev_client_notifiers = *notifiers; in visorchipset_register_busdev_client()
943 struct visorchipset_busdev_notifiers *notifiers = NULL; in device_epilog() local
957 notifiers = &busdev_server_notifiers; in device_epilog()
959 notifiers = &busdev_client_notifiers; in device_epilog()
971 if (notifiers->device_create) { in device_epilog()
[all …]
Dvisorchipset.h198 struct visorchipset_busdev_notifiers *notifiers,
210 struct visorchipset_busdev_notifiers *notifiers,
/linux-4.1.27/Documentation/fault-injection/
Dnotifier-error-inject.txt7 modules that can be used to test the following notifiers.
16 This feature can be used to test the error handling of the CPU notifiers by
93 for CPU and memory notifiers.
/linux-4.1.27/drivers/misc/vmw_vmci/
Dvmci_context.c698 u32 *notifiers; in vmci_ctx_get_chkpt_notifiers() local
709 data_size = context->n_notifiers * sizeof(*notifiers); in vmci_ctx_get_chkpt_notifiers()
715 notifiers = kmalloc(data_size, GFP_ATOMIC); /* FIXME: want GFP_KERNEL */ in vmci_ctx_get_chkpt_notifiers()
716 if (!notifiers) in vmci_ctx_get_chkpt_notifiers()
720 notifiers[i++] = entry->handle.context; in vmci_ctx_get_chkpt_notifiers()
723 *pbuf = notifiers; in vmci_ctx_get_chkpt_notifiers()
/linux-4.1.27/drivers/gpu/drm/nouveau/
Dnouveau_abi16.c120 list_for_each_entry_safe(ntfy, temp, &chan->notifiers, head) { in nouveau_abi16_chan_fini()
278 INIT_LIST_HEAD(&chan->notifiers); in nouveau_abi16_ioctl_channel_alloc()
448 list_add(&ntfy->head, &chan->notifiers); in nouveau_abi16_ioctl_notifierobj_alloc()
528 list_for_each_entry(ntfy, &chan->notifiers, head) { in nouveau_abi16_ioctl_gpuobj_free()
Dnouveau_abi16.h24 struct list_head notifiers; member
/linux-4.1.27/drivers/base/power/
Dqos.c207 c->notifiers = n; in dev_pm_qos_constraints_allocate()
284 kfree(c->notifiers); in dev_pm_qos_constraints_destroy()
503 ret = blocking_notifier_chain_register(dev->power.qos->resume_latency.notifiers, in dev_pm_qos_add_notifier()
530 retval = blocking_notifier_chain_unregister(dev->power.qos->resume_latency.notifiers, in dev_pm_qos_remove_notifier()
/linux-4.1.27/Documentation/memory-devices/
Dti-emif.txt45 EMIF driver registers notifiers for voltage and frequency changes
/linux-4.1.27/Documentation/devicetree/
Dchangesets.txt9 at once before emitting OF_RECONFIG notifiers. This is so that the
/linux-4.1.27/include/linux/
Dpm_qos.h89 struct blocking_notifier_head *notifiers; member
/linux-4.1.27/lib/
DKconfig.kgdb62 bool "KGDB: Allow debugging with traps in notifiers"
DKconfig.debug1370 the error handling of the cpu notifiers by injecting artificial
/linux-4.1.27/Documentation/
Dcpu-hotplug.txt306 You can fail PREPARE notifiers if something doesn't work to prepare resources.
313 A: Yes, CPU notifiers are called only when new CPUs are on-lined or offlined.
Dkernel-parameters.txt2601 Run kdump after running panic-notifiers and dumping
2605 because some panic notifiers can make the crashed
/linux-4.1.27/drivers/media/platform/soc_camera/
Dsoc_camera.c2007 LIST_HEAD(notifiers); in soc_camera_host_unregister()
2015 list_add(&icd->sasc->list, &notifiers); in soc_camera_host_unregister()
2019 list_for_each_entry(sasc, &notifiers, list) { in soc_camera_host_unregister()