From owner-svn-src-all@freebsd.org Tue Jan 29 22:11:14 2019 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9FBD914A9D9F; Tue, 29 Jan 2019 22:11:14 +0000 (UTC) (envelope-from kib@freebsd.org) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (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 03BC86DA00; Tue, 29 Jan 2019 22:11:13 +0000 (UTC) (envelope-from kib@freebsd.org) Received: from tom.home (kib@localhost [127.0.0.1]) by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id x0TMB6t3095930 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 30 Jan 2019 00:11:09 +0200 (EET) (envelope-from kib@freebsd.org) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua x0TMB6t3095930 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id x0TMB6gY095929; Wed, 30 Jan 2019 00:11:06 +0200 (EET) (envelope-from kib@freebsd.org) X-Authentication-Warning: tom.home: kostik set sender to kib@freebsd.org using -f Date: Wed, 30 Jan 2019 00:11:06 +0200 From: Konstantin Belousov To: "David E. O'Brien" Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r343561 - in head/sys: arm64/include riscv/include Message-ID: <20190129221106.GN24863@kib.kiev.ua> References: <201901292010.x0TKAR6G090826@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201901292010.x0TKAR6G090826@repo.freebsd.org> User-Agent: Mutt/1.11.2 (2019-01-07) X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on tom.home X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 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: Tue, 29 Jan 2019 22:11:14 -0000 On Tue, Jan 29, 2019 at 08:10:27PM +0000, David E. O'Brien wrote: > Author: obrien > Date: Tue Jan 29 20:10:27 2019 > New Revision: 343561 > URL: https://svnweb.freebsd.org/changeset/base/343561 > > Log: > Follow arm[32] and sparc64 KAPI and provide the FreeBSD standard spelling > across all architectures for this header. > > Reviewed by: stevek > Obtained from: Juniper Networks > > Added: > head/sys/arm64/include/sigframe.h > - copied unchanged from r343560, head/sys/arm/include/sigframe.h > head/sys/riscv/include/sigframe.h > - copied unchanged from r343560, head/sys/arm/include/sigframe.h > > Copied: head/sys/arm64/include/sigframe.h (from r343560, head/sys/arm/include/sigframe.h) > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/sys/arm64/include/sigframe.h Tue Jan 29 20:10:27 2019 (r343561, copy of r343560, head/sys/arm/include/sigframe.h) > @@ -0,0 +1,2 @@ > +/* $FreeBSD$ */ > +#include > > Copied: head/sys/riscv/include/sigframe.h (from r343560, head/sys/arm/include/sigframe.h) > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/sys/riscv/include/sigframe.h Tue Jan 29 20:10:27 2019 (r343561, copy of r343560, head/sys/arm/include/sigframe.h) > @@ -0,0 +1,2 @@ > +/* $FreeBSD$ */ > +#include All other architectures are careful to only provide sigframe definition in machine/sigframe.h. For instance trapframes are not exposed. This is the main reason why frame.h and sigframe.h both exist.