Hi Jean, Thanks for the quick response and sharing the update.
Best Regards, Shveta Gupta From: Jean Delvare <[email protected]> Date: Monday, December 15, 2025 at 5:17 AM To: Shveta Gupta <[email protected]> Cc: [email protected] <[email protected]> Subject: Re: [PATCH] dmidecode: Add support for CAMM memory device form factor [You don't often get email from [email protected]. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ] External email: Use caution opening links or attachments Hi Shveta, On Fri, 12 Dec 2025 08:49:30 -0800, Shveta Gupta wrote: > Signed-off-by: Shveta Gupta <[email protected]> > --- > dmidecode.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/dmidecode.c b/dmidecode.c > index 0d3d825..ae955ce 100644 > --- a/dmidecode.c > +++ b/dmidecode.c > @@ -3,6 +3,7 @@ > * > * Copyright (C) 2000-2002 Alan Cox <[email protected]> > * Copyright (C) 2002-2025 Jean Delvare <[email protected]> > + * Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. > * > * This program is free software; you can redistribute it and/or modify > * it under the terms of the GNU General Public License as published by > @@ -2844,10 +2845,11 @@ static const char *dmi_memory_device_form_factor(u8 > code) > "SODIMM", > "SRIMM", > "FB-DIMM", > - "Die" /* 0x10 */ > + "Die", > + "CAMM" /* 0x11 */ > }; > > - if (code >= 0x01 && code <= 0x10) > + if (code >= 0x01 && code <= 0x11) > return form_factor[code - 0x01]; > return out_of_spec; > } Thanks for your contribution. However, support for the CAMM memory device form factor was already just added as part of implementing support for version 3.9.0 of the SMBIOS specification: https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcgit.git.savannah.gnu.org%2Fcgit%2Fdmidecode.git%2Fcommit%2F%3Fid%3Dda1c4dc35b724506c16366ff87c678a50efc407f&data=05%7C02%7Cshvetag%40nvidia.com%7Cffa434e8714b42a94e9208de3bcb8619%7C43083d15727340c1b7db39efd9ccc17a%7C0%7C0%7C639013942518495020%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=8OtmClAZAhkjwfIgNPW%2B8SAKTfMy0p5LE0isIVlaL9E%3D&reserved=0<https://cgit.git.savannah.gnu.org/cgit/dmidecode.git/commit/?id=da1c4dc35b724506c16366ff87c678a50efc407f> -- Jean Delvare SUSE L3 Support
