From owner-svn-src-head@freebsd.org Fri Apr 10 01:32:53 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 B7D452AD545; Fri, 10 Apr 2020 01:32:53 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48z0rP44BWz4ZcK; Fri, 10 Apr 2020 01:32:53 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mail-qt1-f182.google.com (mail-qt1-f182.google.com [209.85.160.182]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: kevans) by smtp.freebsd.org (Postfix) with ESMTPSA id 7DD101CD1A; Fri, 10 Apr 2020 01:32:53 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mail-qt1-f182.google.com with SMTP id b10so442819qtt.9; Thu, 09 Apr 2020 18:32:53 -0700 (PDT) X-Gm-Message-State: AGi0PuYWd0Z04CNwFLmdLpioltuzQtbJrqmt62INqXn3lVNZfTJvdDGV bv0RNTgBZu9XZDD7nDE6HalxhZPKuEVv45g+TII= X-Google-Smtp-Source: APiQypIaFKHk+mX5g3tXfIxlFQVrVCYVgH/0B01yo7jP3iVVqeEnR3jVaZvgAFrMTBUkcRUE8WgqonAF9An7DvM+cy4= X-Received: by 2002:aed:2ee3:: with SMTP id k90mr2178616qtd.211.1586482372987; Thu, 09 Apr 2020 18:32:52 -0700 (PDT) MIME-Version: 1.0 References: <202003270029.02R0TX25062379@repo.freebsd.org> In-Reply-To: <202003270029.02R0TX25062379@repo.freebsd.org> From: Kyle Evans Date: Thu, 9 Apr 2020 20:32:41 -0500 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r359346 - in head/sys: amd64/vmm/amd contrib/dev/acpica contrib/dev/acpica/common contrib/dev/acpica/compiler contrib/dev/acpica/components/debugger contrib/dev/acpica/components/dispat... To: Jung-uk Kim Cc: src-committers , svn-src-all , svn-src-head Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.29 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: Fri, 10 Apr 2020 01:32:53 -0000 On Thu, Mar 26, 2020 at 7:32 PM Jung-uk Kim wrote: > > Author: jkim > Date: Fri Mar 27 00:29:33 2020 > New Revision: 359346 > URL: https://svnweb.freebsd.org/changeset/base/359346 > > Log: > Merge ACPICA 20200326. > Hello! Any projection on if/when this will get merged back to stable/12 (and 11, but it looks like it's not getting ACPICA updates anymore)? Below is, in particular, the subset of the diff I care about as it resolves -fno-common issues. Thanks, Kyle Evans universe12a% svn diff sys/contrib Index: sys/contrib/dev/acpica/compiler/aslcompiler.l =================================================================== --- sys/contrib/dev/acpica/compiler/aslcompiler.l (revision 359763) +++ sys/contrib/dev/acpica/compiler/aslcompiler.l (working copy) @@ -156,7 +156,6 @@ #include #include -YYSTYPE AslCompilerlval; /* * Generation: Use the following command line: Index: sys/contrib/dev/acpica/compiler/dtcompiler.h =================================================================== --- sys/contrib/dev/acpica/compiler/dtcompiler.h (revision 359763) +++ sys/contrib/dev/acpica/compiler/dtcompiler.h (working copy) @@ -461,7 +461,6 @@ /* dtparser - lex/yacc files */ -UINT64 DtCompilerParserResult; /* Expression return value */ int DtCompilerParserparse ( void); Index: sys/contrib/dev/acpica/compiler/dtcompilerparser.y =================================================================== --- sys/contrib/dev/acpica/compiler/dtcompilerparser.y (revision 359763) +++ sys/contrib/dev/acpica/compiler/dtcompilerparser.y (working copy) @@ -170,7 +170,6 @@ extern DT_FIELD *AslGbl_CurrentField; extern int DtLabelByteOffset; -extern UINT64 DtCompilerParserResult; /* Expression return value */ extern UINT64 DtCompilerParserlineno; /* Current line number */ extern UINT32 DtTokenFirstLine; Index: sys/contrib/dev/acpica/compiler/dtparser.l =================================================================== --- sys/contrib/dev/acpica/compiler/dtparser.l (revision 359763) +++ sys/contrib/dev/acpica/compiler/dtparser.l (working copy) @@ -208,7 +208,7 @@ /* * Local support functions */ -YY_BUFFER_STATE LexBuffer; +static YY_BUFFER_STATE LexBuffer; /****************************************************************************** * Index: sys/contrib/dev/acpica/compiler/prparser.l =================================================================== --- sys/contrib/dev/acpica/compiler/prparser.l (revision 359763) +++ sys/contrib/dev/acpica/compiler/prparser.l (working copy) @@ -224,7 +224,7 @@ /* * Local support functions */ -YY_BUFFER_STATE LexBuffer; +static YY_BUFFER_STATE LexBuffer; /******************************************************************************