svn commit: r288806 - stable/10/sys/cam/ctl
Alexander Motin
mav at FreeBSD.org
Mon Oct 5 11:26:47 UTC 2015
Author: mav
Date: Mon Oct 5 11:26:46 2015
New Revision: 288806
URL: https://svnweb.freebsd.org/changeset/base/288806
Log:
MFC r288260: Remove few more unused variables.
Modified:
stable/10/sys/cam/ctl/ctl.c
stable/10/sys/cam/ctl/ctl_private.h
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/cam/ctl/ctl.c
==============================================================================
--- stable/10/sys/cam/ctl/ctl.c Mon Oct 5 11:25:48 2015 (r288805)
+++ stable/10/sys/cam/ctl/ctl.c Mon Oct 5 11:26:46 2015 (r288806)
@@ -1755,7 +1755,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: stable/10/sys/cam/ctl/ctl_private.h
==============================================================================
--- stable/10/sys/cam/ctl/ctl_private.h Mon Oct 5 11:25:48 2015 (r288805)
+++ stable/10/sys/cam/ctl/ctl_private.h Mon Oct 5 11:26:46 2015 (r288806)
@@ -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];
More information about the svn-src-stable
mailing list