Author: mav
Date: Sat Sep 26 11:39:54 2015
New Revision: 288260
URL: https://svnweb.freebsd.org/changeset/base/288260

Log:
  Remove few more unused variables.

Modified:
  head/sys/cam/ctl/ctl.c
  head/sys/cam/ctl/ctl_private.h

Modified: head/sys/cam/ctl/ctl.c
==============================================================================
--- head/sys/cam/ctl/ctl.c      Sat Sep 26 11:28:45 2015        (r288259)
+++ head/sys/cam/ctl/ctl.c      Sat Sep 26 11:39:54 2015        (r288260)
@@ -1753,7 +1753,6 @@ ctl_init(void)
        mtx_init(&softc->ctl_lock, "CTL mutex", NULL, MTX_DEF);
        softc->io_zone = uma_zcreate("CTL IO", sizeof(union ctl_io),
            NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
-       softc->open_count = 0;
        softc->flags = 0;
 
        SYSCTL_ADD_INT(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree),

Modified: head/sys/cam/ctl/ctl_private.h
==============================================================================
--- head/sys/cam/ctl/ctl_private.h      Sat Sep 26 11:28:45 2015        
(r288259)
+++ head/sys/cam/ctl/ctl_private.h      Sat Sep 26 11:39:54 2015        
(r288260)
@@ -419,8 +419,6 @@ struct tpc_token;
 struct ctl_softc {
        struct mtx ctl_lock;
        struct cdev *dev;
-       int open_count;
-       int num_disks;
        int num_luns;
        ctl_gen_flags flags;
        ctl_ha_mode ha_mode;
@@ -436,7 +434,6 @@ struct ctl_softc {
        struct sysctl_oid *sysctl_tree;
        void *othersc_pool;
        struct proc *ctl_proc;
-       int targ_online;
        uint32_t ctl_lun_mask[(CTL_MAX_LUNS + 31) / 32];
        struct ctl_lun *ctl_luns[CTL_MAX_LUNS];
        uint32_t ctl_port_mask[(CTL_MAX_PORTS + 31) / 32];
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to