/linux-4.1.27/kernel/power/ |
D | user.c | 39 bool frozen; member 100 data->frozen = false; in snapshot_open() 119 if (data->frozen) { in snapshot_release() 221 if (data->frozen) in snapshot_ioctl() 236 data->frozen = true; in snapshot_ioctl() 241 if (!data->frozen || data->ready) in snapshot_ioctl() 247 data->frozen = false; in snapshot_ioctl() 251 if (data->mode != O_RDONLY || !data->frozen || data->ready) { in snapshot_ioctl() 266 if (data->mode != O_WRONLY || !data->frozen || in snapshot_ioctl() 332 if (!data->frozen) { in snapshot_ioctl()
|
D | process.c | 98 && freezing(p) && !frozen(p)) in try_to_freeze_tasks()
|
D | Kconfig | 17 done, no tasks are frozen for suspend to RAM/standby.
|
/linux-4.1.27/fs/ |
D | super.c | 621 if (!s || s->s_writers.frozen == SB_UNFROZEN) in get_super_thawed() 625 s->s_writers.frozen == SB_UNFROZEN); in get_super_thawed() 703 if (sb->s_writers.frozen != SB_UNFROZEN) in do_remount_sb() 720 if (sb->s_writers.frozen != SB_UNFROZEN) in do_remount_sb() 1194 if (unlikely(sb->s_writers.frozen >= level)) { in __sb_start_write() 1198 sb->s_writers.frozen < level); in __sb_start_write() 1210 if (unlikely(sb->s_writers.frozen >= level)) { in __sb_start_write() 1296 if (sb->s_writers.frozen != SB_UNFROZEN) { in freeze_super() 1308 sb->s_writers.frozen = SB_FREEZE_COMPLETE; in freeze_super() 1314 sb->s_writers.frozen = SB_FREEZE_WRITE; in freeze_super() [all …]
|
/linux-4.1.27/kernel/ |
D | freezer.c | 135 if (!freezing(p) || frozen(p)) { in freeze_task() 154 if (frozen(p)) in __thaw_task()
|
D | kthread.c | 112 bool frozen = false; in kthread_freezable_should_stop() local 117 frozen = __refrigerator(true); in kthread_freezable_should_stop() 120 *was_frozen = frozen; in kthread_freezable_should_stop()
|
D | cgroup_freezer.c | 284 if (!frozen(task) && !freezer_should_skip(task)) in update_if_frozen()
|
/linux-4.1.27/drivers/media/usb/gspca/ |
D | finepix.c | 103 if (gspca_dev->frozen) in dostream() 114 if (gspca_dev->frozen) in dostream() 133 if (gspca_dev->frozen) in dostream()
|
D | gspca.h | 201 char frozen; /* suspend - resume */ member
|
D | benq.c | 168 if (gspca_dev->frozen) in sd_isoc_irq()
|
D | sq905c.c | 153 if (gspca_dev->frozen) in sq905c_dostream()
|
D | vicam.c | 198 if (gspca_dev->frozen) in vicam_dostream()
|
D | sq905.c | 236 if (gspca_dev->frozen) in sq905_dostream()
|
D | jl2005bcd.c | 338 if (gspca_dev->frozen) in jl2005c_dostream()
|
D | konica.c | 277 if (gspca_dev->frozen) in sd_isoc_irq()
|
D | gspca.c | 312 if (gspca_dev->frozen) in fill_frame() 385 if (gspca_dev->frozen) in bulk_irq() 2221 gspca_dev->frozen = 1; /* avoid urb error messages */ in gspca_suspend() 2241 gspca_dev->frozen = 0; in gspca_resume()
|
D | zc3xx.c | 5951 if (gspca_dev->frozen) in transfer_update()
|
/linux-4.1.27/Documentation/power/ |
D | freezing-of-tasks.txt | 29 'frozen' and therefore the set of functions handling this mechanism is referred 32 frozen before kernel threads. 36 if the task is to be frozen and makes the task enter __refrigerator(). 42 that combine interruptible sleep with checking if the task is to be frozen and 64 order to clear the PF_FROZEN flag for each frozen task. Then, the tasks that 65 have been frozen leave __refrigerator() and continue running. 148 be frozen before the driver's .suspend() callback is executed and it will be 159 disable nonboot CPUs during the hibernation, if this process is not frozen, it 170 and B is frozen in the meantime, then A will be blocked until B is thawed, which 190 fail, because the user land process that should respond to the request is frozen [all …]
|
D | notifiers.txt | 10 .resume() or .complete() routines (user land processes are frozen at these 12 are frozen and upload it from there in the .resume() routine. 18 PM_HIBERNATION_PREPARE The system is going to hibernate, tasks will be frozen
|
D | userland-swsusp.txt | 34 not frozen); this is required for SNAPSHOT_CREATE_IMAGE 37 SNAPSHOT_UNFREEZE - thaw user space processes frozen by SNAPSHOT_FREEZE 113 unfreeze user space processes frozen by SNAPSHOT_UNFREEZE if they are 114 still frozen when the device is being closed).
|
D | suspend-and-cpuhotplug.txt | 148 argument. But during suspend, since the tasks are already frozen by the time 254 tasks could have been frozen by an out-of-band event such as a suspend 268 it will now start waiting on the frozen userspace in the
|
D | swsusp.txt | 242 suspend(PMSG_FREEZE): devices are frozen so that they don't interfere 265 suspend(PMSG_FREEZE): devices are frozen so that they don't interfere
|
D | basic-pm-debugging.txt | 101 If the "freezer" test fails, there is a task that cannot be frozen (in that case
|
D | devices.txt | 276 various phases always run after tasks have been frozen and before they are 466 callbacks. These phases always run after tasks have been frozen and memory has 663 management notifiers that are called before tasks are frozen and after they have
|
D | pci.txt | 425 after tasks have been frozen. 545 image is created atomically and all devices are quiesced, or frozen, before that 577 devices are frozen and they cannot handle I/O, while their ability to handle 631 kernel. For this purpose all devices are frozen just like before creating
|
/linux-4.1.27/include/linux/ |
D | freezer.h | 24 static inline bool frozen(struct task_struct *p) in frozen() function 260 static inline bool frozen(struct task_struct *p) { return false; } in frozen() function
|
D | mm_types.h | 106 unsigned frozen:1; member
|
D | fs.h | 1269 int frozen; /* Is sb frozen? */ member
|
/linux-4.1.27/Documentation/cgroups/ |
D | freezer-subsystem.txt | 49 being frozen. This allows the bash example above and gdb to run as 67 belonging to the cgroup and its descendants become frozen. Note that 70 frozen. 91 frozen; otherwise, 1.
|
/linux-4.1.27/drivers/mfd/ |
D | ucb1x00-ts.c | 211 bool frozen, ignore = false; in ucb1x00_thread() local 216 while (!kthread_freezable_should_stop(&frozen)) { in ucb1x00_thread() 220 if (frozen) in ucb1x00_thread()
|
/linux-4.1.27/mm/ |
D | slub.c | 359 page->frozen = tmp.frozen; in set_page_slub_counters() 1450 page->frozen = 1; in new_slab() 1596 VM_BUG_ON(new.frozen); in acquire_slab() 1597 new.frozen = 1; in acquire_slab() 1852 VM_BUG_ON(!new.frozen); in deactivate_slab() 1880 VM_BUG_ON(!old.frozen); in deactivate_slab() 1891 new.frozen = 0; in deactivate_slab() 1992 VM_BUG_ON(!old.frozen); in unfreeze_partials() 1997 new.frozen = 0; in unfreeze_partials() 2276 VM_BUG_ON(!new.frozen); in get_freelist() [all …]
|
/linux-4.1.27/fs/gfs2/ |
D | sys.c | 97 int frozen = (sb->s_writers.frozen == SB_UNFROZEN) ? 0 : 1; in freeze_show() local 99 return snprintf(buf, PAGE_SIZE, "%d\n", frozen); in freeze_show()
|
/linux-4.1.27/Documentation/devicetree/bindings/ |
D | ABI.txt | 10 frozen for all time. Grant said there are ways to change bindings that
|
/linux-4.1.27/fs/ext4/ |
D | ext4_jbd2.c | 48 WARN_ON(sb->s_writers.frozen == SB_FREEZE_COMPLETE); in ext4_journal_check_start()
|
/linux-4.1.27/drivers/media/platform/soc_camera/ |
D | sh_mobile_ceu_camera.c | 133 unsigned int frozen:1; member 302 if (!pcdev->frozen) in sh_mobile_ceu_capture() 317 if (pcdev->frozen) { in sh_mobile_ceu_capture() 1598 pcdev->frozen = 1; in sh_mobile_ceu_set_livecrop() 1635 pcdev->frozen = 0; in sh_mobile_ceu_set_livecrop()
|
/linux-4.1.27/Documentation/device-mapper/ |
D | dm-raid.txt | 179 frozen - The current action has been halted. 205 "frozen" - Freeze the current sync action.
|
/linux-4.1.27/Documentation/networking/ |
D | netdevices.txt | 90 Synchronization: netif_tx_lock spinlock; all TX queues frozen.
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/pcie/ |
D | internal.h | 237 bool frozen; member
|
D | trans.c | 1528 if (txq->frozen == freeze) in iwl_trans_pcie_freeze_txq_timer() 1534 txq->frozen = freeze; in iwl_trans_pcie_freeze_txq_timer() 1835 txq->need_update, txq->frozen, in iwl_dbgfs_tx_queue_read()
|
D | tx.c | 941 if (txq->frozen) in iwl_pcie_txq_progress() 1273 trans_pcie->txq[txq_id].frozen = false; in iwl_trans_pcie_txq_disable()
|
/linux-4.1.27/drivers/media/usb/uvc/ |
D | uvcvideo.h | 471 unsigned int frozen : 1; member
|
D | uvc_video.c | 1329 if (stream->frozen) in uvc_video_complete() 1707 stream->frozen = 1; in uvc_video_suspend() 1733 stream->frozen = 0; in uvc_video_resume()
|
/linux-4.1.27/Documentation/ |
D | sysrq.txt | 87 'j' - Forcibly "Just thaw it" - filesystems frozen by the FIFREEZE ioctl. 174 "just thaw it(j)" is useful if your system becomes unresponsive due to a frozen
|
D | cpu-hotplug.txt | 248 CPU is being offlined while tasks are frozen due to a suspend operation in 258 CPU_DEAD (or CPU_DEAD_FROZEN if tasks are frozen due to a suspend while the
|
D | vfio.txt | 390 * frozen.
|
/linux-4.1.27/drivers/ata/ |
D | libata-eh.c | 2424 const char *frozen, *desc; in ata_eh_link_report() local 2452 frozen = ""; in ata_eh_link_report() 2454 frozen = " frozen"; in ata_eh_link_report() 2464 ehc->i.action, frozen, tries_buf); in ata_eh_link_report() 2471 ehc->i.action, frozen, tries_buf); in ata_eh_link_report()
|
/linux-4.1.27/Documentation/powerpc/ |
D | pci_iov_resource_on_powernv.txt | 20 There is thus, in HW, a table of PE states that contains a pair of "frozen" 24 When a PE is frozen, all stores in any direction are dropped and all loads
|
D | eeh-pci-error-recovery.txt | 146 If a frozen slot is detected, code in
|
/linux-4.1.27/fs/f2fs/ |
D | gc.c | 46 if (sbi->sb->s_writers.frozen >= SB_FREEZE_WRITE) { in gc_thread_func()
|
/linux-4.1.27/fs/xfs/ |
D | xfs_trans.c | 78 WARN_ON(mp->m_super->s_writers.frozen == SB_FREEZE_COMPLETE); in _xfs_trans_alloc()
|
D | xfs_mount.c | 1054 if ((mp->m_super->s_writers.frozen >= level) || in xfs_fs_writable()
|
/linux-4.1.27/net/packet/ |
D | af_packet.c | 678 unsigned int frozen; in prb_retire_rx_blk_timer_expired() local 683 frozen = prb_queue_frozen(pkc); in prb_retire_rx_blk_timer_expired() 706 if (!frozen) { in prb_retire_rx_blk_timer_expired()
|
/linux-4.1.27/Documentation/development-process/ |
D | 1.Intro | 228 a self-contained product which uses a frozen kernel version and requires no
|
D | 2.Process | 120 2.6.27 Willy Tarreau (Deep-frozen stable kernel)
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-kernel-slab | 242 a frozen slab (i.e. a remote cpu slab). It can be written to
|
/linux-4.1.27/Documentation/PCI/ |
D | pci-error-recovery.txt | 176 >>> EEH_MAX_FAILS I/O's are attempted to a frozen adapter, EEH
|
/linux-4.1.27/drivers/scsi/aic7xxx/ |
D | aic79xx.reg | 3793 * The queue is frozen so long as the sequencer
|
D | aic79xx.seq | 419 * if select-outs are currently frozen or we have
|
/linux-4.1.27/Documentation/scsi/ |
D | ChangeLog.1992-1997 | 1467 * The linux 1.0 development tree is now effectively frozen except
|
/linux-4.1.27/Documentation/laptops/ |
D | thinkpad-acpi.txt | 84 interface is mostly frozen, and will change very little if at all: it
|