remove a bunch of forward-only structs that were found with ctfconv.
authorjasper <jasper@openbsd.org>
Mon, 30 Aug 2021 14:44:39 +0000 (14:44 +0000)
committerjasper <jasper@openbsd.org>
Mon, 30 Aug 2021 14:44:39 +0000 (14:44 +0000)
ok mpi@

sys/dev/ic/gdt_common.c
sys/dev/ic/gdtvar.h
sys/net/if_vlan.c

index 8a1648b..c19ee86 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: gdt_common.c,v 1.83 2020/10/15 00:01:24 krw Exp $     */
+/*     $OpenBSD: gdt_common.c,v 1.84 2021/08/30 14:44:39 jasper Exp $  */
 
 /*
  * Copyright (c) 1999, 2000, 2003 Niklas Hallqvist.  All rights reserved.
@@ -125,7 +125,6 @@ gdt_attach(struct gdt_softc *sc)
 
        TAILQ_INIT(&sc->sc_free_ccb);
        TAILQ_INIT(&sc->sc_ccbq);
-       TAILQ_INIT(&sc->sc_ucmdq);
        SIMPLEQ_INIT(&sc->sc_queue);
 
        mtx_init(&sc->sc_ccb_mtx, IPL_BIO);
index 4ea8b84..fce26c7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: gdtvar.h,v 1.25 2020/07/22 13:16:04 krw Exp $ */
+/*     $OpenBSD: gdtvar.h,v 1.26 2021/08/30 14:44:39 jasper Exp $      */
 
 /*
  * Copyright (c) 1999, 2000 Niklas Hallqvist.  All rights reserved.
@@ -72,7 +72,6 @@ struct gdt_intr_ctx {
 struct gdt_ccb {
        TAILQ_ENTRY(gdt_ccb) gc_chain;
        struct scsi_xfer *gc_xs;
-       struct gdt_ucmd *gc_ucmd;
        bus_dmamap_t gc_dmamap_xfer;
        int gc_timeout;
        u_int32_t gc_info;
@@ -129,7 +128,6 @@ struct gdt_softc {
 
        struct gdt_ccb sc_ccbs[GDT_MAXCMDS];
        TAILQ_HEAD(, gdt_ccb) sc_free_ccb, sc_ccbq;
-       TAILQ_HEAD(, gdt_ucmd) sc_ucmdq;
        struct scsi_xfer_list sc_queue;
 
        struct mutex            sc_ccb_mtx;
index 08973cb..61d7abf 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_vlan.c,v 1.208 2021/08/19 10:22:00 dlg Exp $       */
+/*     $OpenBSD: if_vlan.c,v 1.209 2021/08/30 14:44:39 jasper Exp $    */
 
 /*
  * Copyright 1998 Massachusetts Institute of Technology
@@ -100,7 +100,6 @@ struct vlan_softc {
        struct refcnt            sc_refcnt;
        struct task              sc_ltask;
        struct task              sc_dtask;
-       struct ifih             *sc_ifih;
 };
 
 SMR_SLIST_HEAD(vlan_list, vlan_softc);