From owner-svn-src-all@FreeBSD.ORG Sun Apr 14 10:14:27 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6F07C280; Sun, 14 Apr 2013 10:14:27 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 620DA965; Sun, 14 Apr 2013 10:14:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r3EAERDv032102; Sun, 14 Apr 2013 10:14:27 GMT (envelope-from mav@svn.freebsd.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r3EAERjD032100; Sun, 14 Apr 2013 10:14:27 GMT (envelope-from mav@svn.freebsd.org) Message-Id: <201304141014.r3EAERjD032100@svn.freebsd.org> From: Alexander Motin Date: Sun, 14 Apr 2013 10:14:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r249470 - head/sys/cam X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Apr 2013 10:14:27 -0000 Author: mav Date: Sun Apr 14 10:14:26 2013 New Revision: 249470 URL: http://svnweb.freebsd.org/changeset/base/249470 Log: Remove owner field from struct cam_ed, unused at least since FreeBSD 7. Modified: head/sys/cam/cam_xpt.c head/sys/cam/cam_xpt_internal.h Modified: head/sys/cam/cam_xpt.c ============================================================================== --- head/sys/cam/cam_xpt.c Sun Apr 14 09:59:41 2013 (r249469) +++ head/sys/cam/cam_xpt.c Sun Apr 14 10:14:26 2013 (r249470) @@ -4428,7 +4428,6 @@ xpt_alloc_device(struct cam_eb *bus, str SLIST_INIT(&device->asyncs); SLIST_INIT(&device->periphs); device->generation = 0; - device->owner = NULL; device->flags = CAM_DEV_UNCONFIGURED; device->tag_delay_count = 0; device->tag_saved_openings = 0; Modified: head/sys/cam/cam_xpt_internal.h ============================================================================== --- head/sys/cam/cam_xpt_internal.h Sun Apr 14 09:59:41 2013 (r249469) +++ head/sys/cam/cam_xpt_internal.h Sun Apr 14 10:14:26 2013 (r249470) @@ -83,7 +83,6 @@ struct cam_ed { struct async_list asyncs; /* Async callback info for this B/T/L */ struct periph_list periphs; /* All attached devices */ u_int generation; /* Generation number */ - struct cam_periph *owner; /* Peripheral driver's ownership tag */ void *quirk; /* Oddities about this device */ u_int maxtags; u_int mintags;