git: 135c269d87c4 - main - Fix build. Sorry.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 07 Jan 2022 19:34:49 UTC
The branch main has been updated by mav: URL: https://cgit.FreeBSD.org/src/commit/?id=135c269d87c47890cc27309bdfedb98fe04021be commit 135c269d87c47890cc27309bdfedb98fe04021be Author: Alexander Motin <mav@FreeBSD.org> AuthorDate: 2022-01-07 19:33:51 +0000 Commit: Alexander Motin <mav@FreeBSD.org> CommitDate: 2022-01-07 19:33:51 +0000 Fix build. Sorry. MFC after: 2 weeks --- 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 7b2c73693f9c..7ad62894509b 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); } }