From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id EF093AC166E for ; Mon, 21 Aug 2023 14:42:06 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=PtVcE5zmqGbSesi07cGk5xVJ/YTfIxLvvwYI0FZLJb0=; c=relaxed/simple; d=groups.io; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version:In-Reply-To:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Type:Content-Disposition; s=20140610; t=1692628925; v=1; b=RmM0NJycSMCd9MNytm/9g/1hy2YMB9dzWPr7MSNtGIYB1cGKzU9Mi57nYbM/ZIp03C/wC57a mxvf3LuxYEgrBlrV07TAWMoDLeHZjMY4uRi+cIfoaTtJDBdG70qM5vIF3Quo6UA6JDU3sPmchgD jMVMUZohv9iqPEGUcVWiDWD4= X-Received: by 127.0.0.2 with SMTP id d8K4YY7687511xhiecr2h09J; Mon, 21 Aug 2023 07:42:05 -0700 X-Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mx.groups.io with SMTP id smtpd.web10.1118.1692628924882770525 for ; Mon, 21 Aug 2023 07:42:05 -0700 X-Received: from mimecast-mx02.redhat.com (66.187.233.73 [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-169-QYfFgVUUMU2eFvFn2Pz5Zw-1; Mon, 21 Aug 2023 10:41:58 -0400 X-MC-Unique: QYfFgVUUMU2eFvFn2Pz5Zw-1 X-Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 7E5493827DEA; Mon, 21 Aug 2023 14:41:58 +0000 (UTC) X-Received: from sirius.home.kraxel.org (unknown [10.39.194.126]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 432A440C206F; Mon, 21 Aug 2023 14:41:56 +0000 (UTC) X-Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id 8AD4D18009DC; Mon, 21 Aug 2023 16:41:55 +0200 (CEST) Date: Mon, 21 Aug 2023 16:41:55 +0200 From: "Gerd Hoffmann" To: Zhenyu Zhang Cc: devel@edk2.groups.io, michael.d.kinney@intel.com, gaoliming@byosoft.com.cn, zhiguang.liu@intel.com, osteffen@redhat.com, shahuang@redhat.com, shan.gavin@gmail.com Subject: Re: [edk2-devel] [PATCH 1/1] MdeModulePkg:Add variable store exceed maximum debug info Message-ID: References: <20230808025826.2381948-1-zhenyzha@redhat.com> MIME-Version: 1.0 In-Reply-To: <20230808025826.2381948-1-zhenyzha@redhat.com> X-Scanned-By: MIMEDefang 3.1 on 10.11.54.1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,kraxel@redhat.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: oFBiIXiVEJnE5Bz2CfqMEBoax7686176AA= Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=RmM0NJyc; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=redhat.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io On Mon, Aug 07, 2023 at 10:58:26PM -0400, Zhenyu Zhang wrote: > When the variable store is full, edk2 will directly assert. > Add debug information to help users understand what caused > the assertion. > > Actual results: > RecordVarErrorFlag (0xEF) 9A144FE2A47E:937FE521-95AE-4D1A-8929- > 48BCD90AD31A - 0x00000003 - 0x7E > CommonVariableSpace = 0x3FF9C - CommonVariableTotalSize = > 0x3FF98 > RecordVarErrorFlag (0xEF) 9A144FE2A47E:937FE521-95AE-4D1A-8929- > 48BCD90AD31A - 0x00000003 - 0x92 > CommonVariableSpace = 0x3FF9C - CommonVariableTotalSize = 0x3FF98 > > Synchronous Exception at 0x000000023CA60374 > ...... > ASSERT [ArmCpuDxe] /builddir/build/BUILD/edk2-f80f052277c8/ArmPkg/ > Library/DefaultExceptionHandlerLib/AArch64/ > DefaultExceptionHandler.c(333): ((BOOLEAN) (0==1)) > > Cc: Oliver Steffen > Cc: Gerd Hoffmann > Cc: Gavin Shan > Cc: Shaoqin Huang > Signed-off-by: Zhenyu Zhang You should also Cc the MdeModulePkg maintainers. BaseTools/Scripts/GetMaintainer.py helps with finding them. take care, Gerd -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#107921): https://edk2.groups.io/g/devel/message/107921 Mute This Topic: https://groups.io/mt/100623349/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-