git: 9f0febd6a44c - main - cam_sim: remove unused sim_doneq member

Warner Losh imp at FreeBSD.org
Mon Jun 28 22:24:14 UTC 2021


The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=9f0febd6a44cab90659f2a1b98a8bb3f766e18fd

commit 9f0febd6a44cab90659f2a1b98a8bb3f766e18fd
Author:     Warner Losh <imp at FreeBSD.org>
AuthorDate: 2021-06-28 22:04:54 +0000
Commit:     Warner Losh <imp at FreeBSD.org>
CommitDate: 2021-06-28 22:13:03 +0000

    cam_sim: remove unused sim_doneq member
    
    Its use was removed in 227d67aa54 by mav when locking was revamped.
    
    Reviewed by:            scottl@, mav@
    Sponsored by:           Netflix
    Differential Revision:  https://reviews.freebsd.org/D30890
---
 sys/cam/cam_sim.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys/cam/cam_sim.h b/sys/cam/cam_sim.h
index 47f395854c01..54e0ae3ed8d4 100644
--- a/sys/cam/cam_sim.h
+++ b/sys/cam/cam_sim.h
@@ -94,7 +94,6 @@ struct cam_sim {
 	const char		*sim_name;
 	void			*softc;
 	struct mtx		*mtx;
-	TAILQ_HEAD(, ccb_hdr)	sim_doneq;
 	TAILQ_ENTRY(cam_sim)	links;
 	u_int32_t		path_id;/* The Boot device may set this to 0? */
 	u_int32_t		unit_number;


More information about the dev-commits-src-all mailing list