From owner-svn-src-head@freebsd.org Mon Oct 19 21:45:37 2020 Return-Path: Delivered-To: svn-src-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1FB37435518; Mon, 19 Oct 2020 21:45:37 +0000 (UTC) (envelope-from br@bsdpad.com) Received: from sc1.bsdpad.com (sc1.bsdpad.com [163.172.212.18]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4CFVg45TJpz4Ftr; Mon, 19 Oct 2020 21:45:36 +0000 (UTC) (envelope-from br@bsdpad.com) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=bsdpad.com; s=20190317; h=Subject:To:From; bh=eDaH8jQczThHkIZtvtXIoz/DDope4JdU/4WqJtLwoYc=; b=QaRxz+mGwxaOKlh+2YMtJxjzec 61QK4l8V+rnapz9caCES8KuVeaysv78hFe5p+jutJmE0qUitTs2GZtUx04Top4Hm/YStbnCwQ9x+/ qDrf5rophHOapCoqyYf9CzdtJB7GsY15xev3ycimLJf2hE/rXg7Ivim3ZIpZlLpctyotZ+ztY2nR9 7CzQkOdMpezgtY6SmSU41WDQ0aB8+0b0GFTLdcA+/A6V/tsIP9EIgdUM+OdzKpg9jLF0OArxbtHoE GNqEBGJ7xb2D1cUzBcIMsfhVMKs2yODkiltJ4ma6V3Q+yL6IUJ1bE2hyxjYpw1EMiVldbP8P5Uu3y //rXsFGw==; Received: from localhost ([127.0.0.1] helo=bsdpad.com) by sc1.bsdpad.com with smtp (Exim 4.91 (FreeBSD)) (envelope-from ) id 1kUctw-0007cx-Cx; Mon, 19 Oct 2020 22:41:08 +0100 Received: by bsdpad.com (nbSMTP-1.00) for uid 1001 br@bsdpad.com; Mon, 19 Oct 2020 22:41:08 +0100 (BST) Date: Mon, 19 Oct 2020 22:41:08 +0100 From: Ruslan Bukin To: Jessica Clarke Cc: src-committers , svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r366833 - in head/sys: dev/iommu kern sys Message-ID: <20201019214108.GA29097@bsdpad.com> References: <202010191310.09JDALHp000954@repo.freebsd.org> <917B04A7-C9CA-439B-8334-C602F1E68005@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <917B04A7-C9CA-439B-8334-C602F1E68005@freebsd.org> X-Rspamd-Queue-Id: 4CFVg45TJpz4Ftr X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:12876, ipnet:163.172.208.0/20, country:FR] X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.33 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: Mon, 19 Oct 2020 21:45:37 -0000 On Mon, Oct 19, 2020 at 03:08:32PM +0100, Jessica Clarke wrote: > On 19 Oct 2020, at 14:10, Ruslan Bukin wrote: > > > > +#ifndef _DEV_IOMMU_IOMMU_MSI_H_ > > +#define _DEV_IOMMU_IOMMU_MSI_H_ > > + > > +#include > > + > > +struct iommu_unit; > > This seems unused, perhaps left from a previous patch version? > The forward declaration is not needed here, indeed. Thanks. Ruslan