git: d0cb410baa19 - stable/13 - Fix build. Sorry.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 21 Jan 2022 01:59:42 UTC
The branch stable/13 has been updated by mav: URL: https://cgit.FreeBSD.org/src/commit/?id=d0cb410baa1934159275644a172387f15a7925ac commit d0cb410baa1934159275644a172387f15a7925ac Author: Alexander Motin <mav@FreeBSD.org> AuthorDate: 2022-01-07 19:33:51 +0000 Commit: Alexander Motin <mav@FreeBSD.org> CommitDate: 2022-01-21 01:59:34 +0000 Fix build. Sorry. MFC after: 2 weeks (cherry picked from commit 135c269d87c47890cc27309bdfedb98fe04021be) --- sys/cam/ctl/ctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/cam/ctl/ctl.c b/sys/cam/ctl/ctl.c index 47176a5cb981..bc7f386bc091 100644 --- a/sys/cam/ctl/ctl.c +++ b/sys/cam/ctl/ctl.c @@ -5903,7 +5903,7 @@ ctl_ie_timer(void *arg) t = scsi_4btoul(lun->MODE_IE.interval_timer); if (t == 0 || t == UINT32_MAX) t = 3000; /* 5 min */ - callout_schedule(&lun->ie_callout, SBT_1S / 10 * t, + callout_schedule_sbt(&lun->ie_callout, SBT_1S / 10 * t, SBT_1S / 10, 0); } }