svn commit: r356971 - head/sys/cam
Gleb Smirnoff
glebius at FreeBSD.org
Wed Jan 22 05:31:38 UTC 2020
Author: glebius
Date: Wed Jan 22 05:31:37 2020
New Revision: 356971
URL: https://svnweb.freebsd.org/changeset/base/356971
Log:
In compatibility structure substitute 'struct callout_handle'
to 'struct callout *' pointer of the same size.
Modified:
head/sys/cam/cam_compat.h
Modified: head/sys/cam/cam_compat.h
==============================================================================
--- head/sys/cam/cam_compat.h Wed Jan 22 02:38:46 2020 (r356970)
+++ head/sys/cam/cam_compat.h Wed Jan 22 05:31:37 2020 (r356971)
@@ -72,7 +72,7 @@ struct ccb_hdr_0x17 {
ccb_ppriv_area periph_priv;
ccb_spriv_area sim_priv;
u_int32_t timeout; /* Hard timeout value in seconds */
- struct callout_handle timeout_ch;
+ struct callout *timeout_ch;
};
struct ccb_pathinq_0x17 {
More information about the svn-src-all
mailing list