Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Jan 2020 05:31:38 +0000 (UTC)
From:      Gleb Smirnoff <glebius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r356971 - head/sys/cam
Message-ID:  <202001220531.00M5VcC1008223@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001220531.00M5VcC1008223>