From owner-svn-src-head@freebsd.org Sat Sep 23 08:26:44 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 39085E2AAFA; Sat, 23 Sep 2017 08:26:44 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F1BCD6C002; Sat, 23 Sep 2017 08:26:43 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8N8QhY2030873; Sat, 23 Sep 2017 08:26:43 GMT (envelope-from scottl@FreeBSD.org) Received: (from scottl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8N8QgBd030871; Sat, 23 Sep 2017 08:26:42 GMT (envelope-from scottl@FreeBSD.org) Message-Id: <201709230826.v8N8QgBd030871@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: scottl set sender to scottl@FreeBSD.org using -f From: Scott Long Date: Sat, 23 Sep 2017 08:26:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r323946 - in head/sys/dev: mpr mps X-SVN-Group: head X-SVN-Commit-Author: scottl X-SVN-Commit-Paths: in head/sys/dev: mpr mps X-SVN-Commit-Revision: 323946 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Sep 2017 08:26:44 -0000 Author: scottl Date: Sat Sep 23 08:26:42 2017 New Revision: 323946 URL: https://svnweb.freebsd.org/changeset/base/323946 Log: Garbage collect usued fields Sponsored by: Netflix Modified: head/sys/dev/mpr/mpr_sas.h head/sys/dev/mps/mps_sas.h Modified: head/sys/dev/mpr/mpr_sas.h ============================================================================== --- head/sys/dev/mpr/mpr_sas.h Sat Sep 23 06:00:17 2017 (r323945) +++ head/sys/dev/mpr/mpr_sas.h Sat Sep 23 08:26:42 2017 (r323946) @@ -70,9 +70,6 @@ struct mprsas_target { uint16_t parent_handle; uint64_t parent_sasaddr; uint32_t parent_devinfo; - struct sysctl_ctx_list sysctl_ctx; - struct sysctl_oid *sysctl_tree; - TAILQ_ENTRY(mprsas_target) sysctl_link; uint64_t issued; uint64_t completed; unsigned int outstanding; Modified: head/sys/dev/mps/mps_sas.h ============================================================================== --- head/sys/dev/mps/mps_sas.h Sat Sep 23 06:00:17 2017 (r323945) +++ head/sys/dev/mps/mps_sas.h Sat Sep 23 08:26:42 2017 (r323946) @@ -67,9 +67,6 @@ struct mpssas_target { uint16_t parent_handle; uint64_t parent_sasaddr; uint32_t parent_devinfo; - struct sysctl_ctx_list sysctl_ctx; - struct sysctl_oid *sysctl_tree; - TAILQ_ENTRY(mpssas_target) sysctl_link; uint64_t issued; uint64_t completed; unsigned int outstanding;