Home
last modified time | relevance | path

Searched refs:last_busy (Results 1 – 6 of 6) sorted by relevance

/linux-6.6.21/drivers/scsi/
Dinitio.c803 if (host->last_busy != NULL) { in initio_append_busy_scb()
804 host->last_busy->next = scbp; in initio_append_busy_scb()
805 host->last_busy = scbp; in initio_append_busy_scb()
808 host->last_busy = scbp; in initio_append_busy_scb()
820 host->last_busy = NULL; in initio_pop_busy_scb()
847 host->last_busy = NULL; in initio_unlink_busy_scb()
850 if (tmp == host->last_busy) in initio_unlink_busy_scb()
851 host->last_busy = prev; in initio_unlink_busy_scb()
976 host->last_busy = NULL; in initio_abort_srb()
979 if (tmp == host->last_busy) in initio_abort_srb()
[all …]
Dinitio.h507 struct scsi_ctrl_blk *last_busy; /* 4C */ member
/linux-6.6.21/include/linux/
Dpm_runtime.h231 WRITE_ONCE(dev->power.last_busy, ktime_get_mono_fast_ns()); in pm_runtime_mark_last_busy()
Dpm.h715 u64 last_busy; member
/linux-6.6.21/Documentation/power/
Druntime_pm.rst299 `unsigned long last_busy;`
503 - set the power.last_busy field to the current time
526 based on power.last_busy and power.autosuspend_delay; if the delay time
866 Inactivity is determined based on the power.last_busy field. Drivers should
/linux-6.6.21/drivers/base/power/
Druntime.c175 expires = READ_ONCE(dev->power.last_busy); in pm_runtime_autosuspend_expiration()