From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 73987339870 for ; Fri, 16 Jan 2026 15:08:12 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768576092; cv=none; b=lE3iIyV4vgZhao+4IusBHjlCkdkB/+UxEj3A/tCDOECmTLKU9ZC7dRzsqZKJyBmG4MWKsD1hIxrhlySxbmjfcUC25SZnb3t3Fko5jLBvWnR/MxbwA8Dgpag3gnS3cC+FC46Wpy6LP9h5QoI1RtnkLXDkfRLIUQfETZIk2oyhirc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768576092; c=relaxed/simple; bh=LVzhJrf9KnGD5jCKKlsWTjt7qaMqVUMyybUvb9IGdeM=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=iIwUiG/hHFBoXpTZFLrHQVbxoEuE5dNlTYFhd8ZZw8XsNKbZBb66FBLwGXRWJkRwTQ2i64pa07VAPbnjp42ln41tnbHzNKSUiuSOgIgSbELl5OupV//oz7cE4OeR77zlrY+/cFs60apXOI7vasmXE+dZVnOC8Ujntd4HvMwBe30= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=qtpLT/z/; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="qtpLT/z/" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AB11EC19421; Fri, 16 Jan 2026 15:08:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1768576092; bh=LVzhJrf9KnGD5jCKKlsWTjt7qaMqVUMyybUvb9IGdeM=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=qtpLT/z/gT9e2a1J1j9a4QYAwdeyjloraQoiFkO4sRJy1tuxb0TpLv8N+Lwq/lteW jFbHsuZzF/0TGEh0sg3xmvWLKoBq6QTy1l0SgBEwFos0uOkP5+WBKCd7kYdwXNFVqi CZDY7JroP8kmek9lzdEUdiVDVXtiZWPgfBiri1hLW/B/lSkWDThr4fAJmt5IZ61omu 4B8TZyjiee+HC3fKKjwJxSO37dTqL+F1xtydaxPbbj4cuBe3AHYMkCOUyPVbnJxGkG Ku8Z64vPsp5jZHanubeJgBMH5uVS8TK9inaMgIbqmTRK9jq+3Fh/Wr27L6Ngx7nvCT PZKiB1KoZoZoQ== Message-ID: <8e0d404a-ed3d-4c24-b887-26445b057dca@kernel.org> Date: Fri, 16 Jan 2026 09:08:10 -0600 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v3 0/5] Parse SMBIOS additional entries To: Yazen Ghannam Cc: Jean Delvare , linux-kernel@vger.kernel.org, Borislav Petkov References: <20260110134835.1296600-1-superm1@kernel.org> <20260116150318.GA402070@yaz-khff2.amd.com> Content-Language: en-US From: "Mario Limonciello (AMD) (kernel.org)" In-Reply-To: <20260116150318.GA402070@yaz-khff2.amd.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit On 1/16/2026 9:03 AM, Yazen Ghannam wrote: > On Sat, Jan 10, 2026 at 07:48:29AM -0600, Mario Limonciello (AMD) wrote: >> The SMBIOS additional entries on AMD Zen4+ systems running an AGESA >> based BIOS contain information about the AGESA version which can be >> useful for matching the software stack when debugging an issue. >> >> Add support for parsing this from SMBIOS tables and output it into >> the logs at bootup. Additionally export the information to debugfs >> in case users are interested in any other strings. >> >> v3: >> * Drop / merge patches from feedback >> * Don't save additional strings, only show AGESA string if found >> >> Mario Limonciello (1): >> firmware: dmi: Add pr_fmt() for dmi_scan.c >> >> Mario Limonciello (AMD) (4): >> firmware: dmi: Correct an indexing error in dmi.h >> firmware: dmi: Adjust dmi_decode() to use enums >> firmware: dmi: Add missing DMI entry types >> firmware: dmi: Read additional information when decoding DMI table >> > > One patch is authored with a different email. Is this intentional? > > Not a problem, but wanted to ask just in case. > It was an oversight because I worked on two different machines and forgot I had git configured differently when I made the commits. If there are other changes needed for the series I'll fix it in next version, otherwise leaving it as is is totally fine for me.