| /linux/drivers/android/binder/ |
| H A D | freeze.rs | 95 let freeze = freeze_entry.get_mut(); in do_work() localVariable 97 if freeze.num_cleared_duplicates > 0 { in do_work() 98 freeze.num_cleared_duplicates -= 1; in do_work() 105 if freeze.is_pending { in do_work() 108 if freeze.is_clearing { in do_work() 109 kernel::warn_on!(freeze.num_cleared_duplicates != 0); in do_work() 110 if freeze.num_pending_duplicates > 0 { in do_work() 113 freeze.num_pending_duplicates -= 1; in do_work() 114 freeze.is_pending = true; in do_work() 115 freeze.is_clearing = true; in do_work() [all …]
|
| /linux/kernel/cgroup/ |
| H A D | freezer.c | 152 static void cgroup_freeze_task(struct task_struct *task, bool freeze) in cgroup_freeze_task() argument 160 if (freeze) { in cgroup_freeze_task() 174 static void cgroup_do_freeze(struct cgroup *cgrp, bool freeze, u64 ts_nsec) in cgroup_do_freeze() argument 183 if (freeze) { in cgroup_do_freeze() 194 if (freeze) in cgroup_do_freeze() 195 TRACE_CGROUP_PATH(freeze, cgrp); in cgroup_do_freeze() 207 cgroup_freeze_task(task, freeze); in cgroup_do_freeze() 263 void cgroup_freeze(struct cgroup *cgrp, bool freeze) in cgroup_freeze() argument 277 if (cgrp->freezer.freeze == freeze) in cgroup_freeze() 280 cgrp->freezer.freeze = freeze; in cgroup_freeze() [all …]
|
| H A D | legacy_freezer.c | 338 static void freezer_apply_state(struct freezer *freezer, bool freeze, in freezer_apply_state() argument 347 if (freeze) { in freezer_apply_state() 374 static void freezer_change_state(struct freezer *freezer, bool freeze) in freezer_change_state() argument 395 freezer_apply_state(pos_f, freeze, in freezer_change_state() 413 bool freeze; in freezer_write() local 418 freeze = false; in freezer_write() 422 freeze = true; in freezer_write() 426 freezer_change_state(css_freezer(of_css(of)), freeze); in freezer_write()
|
| /linux/tools/power/pm-graph/config/ |
| H A D | freeze.cfg | 9 # sudo ./sleepgraph.py -config config/freeze.cfg 21 # e.g. standby, mem, freeze, disk (default: mem) 22 mode: freeze 26 output-dir: freeze-{hostname}-{date}-{time} 42 # Command to execute in lieu of freeze (default: "") 43 # command: echo freeze > /sys/power/state
|
| H A D | freeze-dev.cfg | 9 # sudo ./sleepgraph.py -config config/freeze-dev.cfg 21 # e.g. standby, mem, freeze, disk (default: mem) 22 mode: freeze 26 output-dir: freeze-{hostname}-{date}-{time}-dev 42 # Command to execute in lieu of freeze (default: "") 43 # command: echo freeze > /sys/power/state
|
| H A D | freeze-callgraph.cfg | 9 # sudo ./sleepgraph.py -config config/freeze-callgraph.cfg 22 # e.g. standby, mem, freeze, disk (default: mem) 23 mode: freeze 27 output-dir: freeze-{hostname}-{date}-{time}-cg 43 # Command to execute in lieu of freeze (default: "") 44 # command: echo freeze > /sys/power/state
|
| /linux/arch/powerpc/platforms/powermac/ |
| H A D | smp.c | 66 static void (*pmac_tb_freeze)(int freeze); 503 static void smp_core99_cypress_tb_freeze(int freeze) in smp_core99_cypress_tb_freeze() argument 519 data = (data & 0xf3) | (freeze ? 0x00 : 0x0c); in smp_core99_cypress_tb_freeze() 529 freeze ? "freeze" : "unfreeze", rc); in smp_core99_cypress_tb_freeze() 535 static void smp_core99_pulsar_tb_freeze(int freeze) in smp_core99_pulsar_tb_freeze() argument 548 data = (data & 0x88) | (freeze ? 0x11 : 0x22); in smp_core99_pulsar_tb_freeze() 557 freeze ? "freeze" : "unfreeze", rc); in smp_core99_pulsar_tb_freeze() 628 static void smp_core99_pfunc_tb_freeze(int freeze) in smp_core99_pfunc_tb_freeze() argument 636 args.u[0].v = !freeze; in smp_core99_pfunc_tb_freeze() 649 static void smp_core99_gpio_tb_freeze(int freeze) in smp_core99_gpio_tb_freeze() argument [all …]
|
| /linux/arch/powerpc/sysdev/ |
| H A D | fsl_rcpm.c | 284 static void rcpm_common_freeze_time_base(u32 *tben_reg, int freeze) in rcpm_common_freeze_time_base() argument 288 if (freeze) { in rcpm_common_freeze_time_base() 299 static void rcpm_v1_freeze_time_base(bool freeze) in rcpm_v1_freeze_time_base() argument 301 rcpm_common_freeze_time_base(&rcpm_v1_regs->ctbenr, freeze); in rcpm_v1_freeze_time_base() 304 static void rcpm_v2_freeze_time_base(bool freeze) in rcpm_v2_freeze_time_base() argument 306 rcpm_common_freeze_time_base(&rcpm_v2_regs->pctbenr, freeze); in rcpm_v2_freeze_time_base()
|
| /linux/drivers/ssb/ |
| H A D | sprom.c | 107 struct ssb_freeze_context freeze; in ssb_attr_sprom_store() local 130 err = ssb_devices_freeze(bus, &freeze); in ssb_attr_sprom_store() 136 err = ssb_devices_thaw(&freeze); in ssb_attr_sprom_store()
|
| /linux/tools/power/pm-graph/ |
| H A D | Makefile | 41 $(INSTALL_DATA) config/freeze-callgraph.cfg $(DESTDIR)$(LIBDIR)/pm-graph/config 42 $(INSTALL_DATA) config/freeze.cfg $(DESTDIR)$(LIBDIR)/pm-graph/config 43 $(INSTALL_DATA) config/freeze-dev.cfg $(DESTDIR)$(LIBDIR)/pm-graph/config
|
| H A D | README | 129 ['freeze', 'mem', 'disk'] 230 Mode to initiate for suspend e.g. mem, freeze, standby (default: mem). 306 Simple suspend/resume with basic timeline (mem/freeze/standby) 308 config/freeze.cfg 311 Dev mode suspend/resume with dev timeline (mem/freeze/standby) 313 config/freeze-dev.cfg 316 Simple suspend/resume with timeline and callgraph (mem/freeze/standby) 318 config/freeze-callgraph.cfg 352 # Suspend Mode: e.g. standby, mem, freeze, disk (def: mem) 614 modes : freeze mem
|
| /linux/arch/powerpc/platforms/85xx/ |
| H A D | mpc85xx_pm_ops.c | 57 static void mpc85xx_freeze_time_base(bool freeze) in mpc85xx_freeze_time_base() argument 62 if (freeze) in mpc85xx_freeze_time_base()
|
| /linux/drivers/ata/ |
| H A D | sata_inic162x.c | 331 bool freeze = false; in inic_host_err_intr() local 342 freeze = true; in inic_host_err_intr() 347 freeze = true; in inic_host_err_intr() 356 freeze = true; in inic_host_err_intr() 365 freeze = true; in inic_host_err_intr() 372 freeze = true; in inic_host_err_intr() 376 if (freeze) in inic_host_err_intr() 732 .freeze = inic_freeze,
|
| H A D | sata_sil24.c | 393 .freeze = sil24_freeze, 978 int abort = 0, freeze = 0; in sil24_error_intr() 1002 freeze = 1; in sil24_error_intr() 1009 freeze = 1; in sil24_error_intr() 1031 freeze = 1; in sil24_error_intr() 1050 freeze = 1; in sil24_error_intr() 1064 freeze = 1; in sil24_error_intr() 1069 freeze = 1; in sil24_error_intr() 1087 /* freeze or abort */ in sil24_error_intr() 1088 if (freeze) in sil24_error_intr() 979 int abort = 0, freeze = 0; sil24_error_intr() local [all...] |
| H A D | sata_rcar.c | 625 .freeze = sata_rcar_freeze, 654 int freeze = 0; in sata_rcar_serr_interrupt() local 671 freeze = serror & SERR_COMM_WAKE ? 0 : 1; in sata_rcar_serr_interrupt() 675 if (freeze) in sata_rcar_serr_interrupt() 1003 .freeze = sata_rcar_suspend,
|
| /linux/drivers/android/ |
| H A D | binder.c | 1225 if (ref->freeze) { in binder_cleanup_ref_olocked() 1226 binder_dequeue_work(ref->proc, &ref->freeze->work); in binder_cleanup_ref_olocked() 1357 kfree(ref->freeze); in binder_free_ref() 3924 struct binder_ref_freeze *freeze; in binder_request_freeze_notification() 3927 freeze = kzalloc_obj(*freeze); in binder_request_freeze_notification() 3928 if (!freeze) in binder_request_freeze_notification() 3936 kfree(freeze); in binder_request_freeze_notification() 3941 if (ref->freeze) { in binder_request_freeze_notification() 3946 kfree(freeze); in binder_request_freeze_notification() 3926 struct binder_ref_freeze *freeze; binder_request_freeze_notification() local 3979 struct binder_ref_freeze *freeze; binder_clear_freeze_notification() local 4038 struct binder_ref_freeze *freeze = NULL; binder_freeze_notification_done() local 4984 struct binder_ref_freeze *freeze; binder_thread_read() local 5006 struct binder_ref_freeze *freeze = binder_thread_read() local 5230 struct binder_ref_freeze *freeze; binder_release_work() local [all...] |
| /linux/drivers/scsi/ |
| H A D | scsi_pm.c | 29 return pm && pm->freeze ? pm->freeze(dev) : 0; in do_scsi_freeze() 265 .freeze = scsi_bus_freeze,
|
| /linux/Documentation/driver-api/nvdimm/ |
| H A D | security.rst | 11 "unlock unit", "freeze lock", "secure erase", and "overwrite". A security_ops 30 freeze - freeze changing of security states. 85 The freeze operation does not require any keys. The security config can be
|
| /linux/Documentation/power/ |
| H A D | freezing-of-tasks.rst | 48 that put the task to sleep (TASK_INTERRUPTIBLE) or freeze it (TASK_FROZEN) if 90 - freezes all tasks (including kernel threads) because we can't freeze 125 usually making them almost impossible to repair). We therefore freeze 150 "RJW:> Why we freeze tasks at all or why we freeze kernel threads? 160 So in practice, the 'at all' may become a 'why freeze kernel threads?' and 241 consequence, the freezer would not be able to freeze that task, leading to 254 /sys/power/pm_freeze_timeout controls how long it will cost at most to freeze
|
| /linux/arch/powerpc/include/asm/ |
| H A D | fsl_pm.h | 34 void (*freeze_time_base)(bool freeze);
|
| /linux/Documentation/staging/ |
| H A D | magic-number.rst | 45 we are in feature freeze time it is very unlikely that 53 Updated the magic table to Linux 2.5.45. Right over the feature freeze,
|
| /linux/tools/testing/selftests/cgroup/ |
| H A D | test_freezer.c | 50 static int cg_freeze_nowait(const char *cgroup, bool freeze) in cg_freeze_nowait() argument 52 return cg_write(cgroup, "cgroup.freeze", freeze ? "1" : "0"); in cg_freeze_nowait() 93 static int cg_freeze_wait(const char *cgroup, bool freeze) in cg_freeze_wait() argument 101 ret = cg_freeze_nowait(cgroup, freeze); in cg_freeze_wait() 111 ret = cg_check_frozen(cgroup, freeze); in cg_freeze_wait() 133 * running processes and freeze it. Then unfreeze it. Then it kills all 186 * Then it tries to freeze and unfreeze the whole tree. 356 * The test runs a fork bomb in a cgroup and tries to freeze it. 663 * Test that it's possible to freeze [all...] |
| /linux/Documentation/translations/sp_SP/process/ |
| H A D | magic-number.rst | 51 estamos en fase de "feature freeze", es muy poco probable que 60 freeze, pero es posible que algunos nuevos números mágicos se cuelen en
|
| /linux/drivers/mfd/ |
| H A D | wm831x-spi.c | 74 .freeze = wm831x_spi_suspend,
|
| /linux/drivers/gpu/host1x/ |
| H A D | dev.h | 44 void (*freeze)(struct host1x_cdma *cdma); member 310 host->cdma_op->freeze(cdma); in host1x_hw_cdma_freeze()
|