From: Gerd Hoffmann <kraxel@redhat.com>
To: "Gabriel L. Somlo" <gsomlo@gmail.com>
Cc: armbru@redhat.com, agraf@suse.de, qemu-devel@nongnu.org,
alex.williamson@redhat.com, kevin@koconnor.net,
lersek@redhat.com
Subject: Re: [Qemu-devel] SMBIOS (Set of 10 patches)
Date: Tue, 11 Mar 2014 11:03:06 +0100 [thread overview]
Message-ID: <1394532186.22422.24.camel@nilsson.home.kraxel.org> (raw)
In-Reply-To: <20140310165606.GH17184@ERROL.INI.CMU.EDU>
Hi,
> On Thu, Mar 06, 2014 at 10:03:32AM +0100, Gerd Hoffmann wrote:
> > So, if we manage to get the patches into shape in time for qemu 2.0 your
> > way to do that is fine. We are pretty close to the 2.0 freeze though,
> > so maybe we should better plan for post-2.0 anyway, especially as you
> > plan to add more tables.
>
> Hopefully it's not too late, and the patches are in good enough shape :)
I don't feel like rushing it, and hard freeze is tomorrow ...
Issue #1: There are checkpatch errors (scripts/checkpatch.pl).
Issue #2: There is one build warning:
/home/kraxel/projects/qemu/hw/i386/smbios.c: In function
'smbios_build_type_16_table':
/home/kraxel/projects/qemu/hw/i386/smbios.c:520:5: warning: comparison
is always true due to limited range of data type [-Wtype-limits]
t->maximum_capacity = ram_size < 2ULL << 40 ? ram_size >> 10 :
0x80000000;
^
Issue #3: Running a diff on the dmidecode output with and without the
patches yields this:
--- dmidecode.master 2014-03-11 10:38:06.799233009 +0100
+++ dmidecode.smbios 2014-03-11 10:39:36.664377785 +0100
@@ -1,20 +1,20 @@
# dmidecode 2.12
SMBIOS 2.4 present.
-10 structures occupying 304 bytes.
-Table at 0x000F09D0.
+10 structures occupying 351 bytes.
+Table at 0x000F09A0.
That comes from upgrading some of the tables to newer versions, ok.
Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
- Vendor: Bochs
- Version: Bochs
- Release Date: 01/01/2011
+ Vendor: QEMU
+ Version: pc-i440fx-2.0
+ Release Date: 01/01/2014
Address: 0xE8000
Runtime Size: 96 kB
ROM Size: 64 kB
Characteristics:
BIOS characteristics not supported
Targeted content distribution is supported
- BIOS Revision: 1.0
+ BIOS Revision: 0.0
I think we should not generate a type0 table unless -smbios type0=... is
explicitly specified on the qemu command line. It is about the
firmware, and we should leave it to the firmware to fill it by default.
If you are running OVMF (EFI) instead of SeaBIOS you should see it in
the dmidecode output.
Handle 0x0300, DMI type 3, 20 bytes
Chassis Information
- Manufacturer: Bochs
+ Manufacturer: QEMU
Type: Other
Lock: Not Present
- Version: Not Specified
+ Version: pc-i440fx-2.0
Serial Number: Not Specified
Asset Tag: Not Specified
Boot-up State: Safe
That is ok I think.
-Handle 0x0401, DMI type 4, 32 bytes
+Handle 0x0400, DMI type 4, 35 bytes
Processor Information
- Socket Designation: CPU 1
+ Socket Designation: CPU 0
Hmm?
Type: Central Processor
Family: Other
- Manufacturer: Bochs
+ Manufacturer: QEMU
ID: 63 06 00 00 FD FB 8B 07
- Version: Not Specified
+ Version: pc-i440fx-2.0
Voltage: Unknown
External Clock: Unknown
Ok.
- Max Speed: 2000 MHz
- Current Speed: 2000 MHz
+ Max Speed: Unknown
+ Current Speed: Unknown
Where does 2000 MHz come from? Does SeaBIOS pull something out of thin
air or does it try to measure the speed?
-Handle 0x1100, DMI type 17, 21 bytes
+Handle 0x1100, DMI type 17, 27 bytes
Memory Device
Array Handle: 0x1000
- Error Information Handle: 0x0003
+ Error Information Handle: Not Provided
Same question.
cheers,
Gerd
next prev parent reply other threads:[~2014-03-11 10:03 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-10 16:56 [Qemu-devel] SMBIOS (Set of 10 patches) Gabriel L. Somlo
2014-03-10 17:55 ` Eric Blake
2014-03-10 18:17 ` Gabriel L. Somlo
2014-03-10 18:31 ` Gabriel L. Somlo
2014-03-10 19:14 ` Eric Blake
2014-03-10 19:22 ` Eric Blake
2014-03-10 19:31 ` Eric Blake
2014-03-11 10:03 ` Gerd Hoffmann [this message]
2014-03-11 13:27 ` Kevin O'Connor
2014-03-12 8:31 ` Gerd Hoffmann
2014-03-11 15:16 ` [Qemu-devel] [v2 PATCH 00/13] SMBIOS: build full tables in QEMU Gabriel L. Somlo
2014-03-11 15:16 ` [Qemu-devel] [v2 PATCH 01/13] SMBIOS: Update all table definitions to smbios spec v2.3 Gabriel L. Somlo
2014-03-11 15:16 ` [Qemu-devel] [v2 PATCH 02/13] SMBIOS: Rename smbios_set_type1_defaults() for more general use Gabriel L. Somlo
2014-03-11 15:16 ` [Qemu-devel] [v2 PATCH 03/13] SMBIOS: Use macro to set smbios defaults Gabriel L. Somlo
2014-03-11 15:16 ` [Qemu-devel] [v2 PATCH 04/13] SMBIOS: Use bitmaps to check for smbios table collisions Gabriel L. Somlo
2014-03-11 15:16 ` [Qemu-devel] [v2 PATCH 05/13] SMBIOS: Add code to build full smbios tables; build type 2 table Gabriel L. Somlo
2014-03-11 16:28 ` [Qemu-devel] [v3 " Gabriel L. Somlo
2014-03-11 15:16 ` [Qemu-devel] [v2 PATCH 06/13] SMBIOS: Build full tables for types 0 and 1 Gabriel L. Somlo
2014-03-11 15:16 ` [Qemu-devel] [v2 PATCH 07/13] SMBIOS: Remove unused code for passing individual fields to bios Gabriel L. Somlo
2014-03-11 15:16 ` [Qemu-devel] [v2 PATCH 08/13] SMBIOS: Build full type 3 table Gabriel L. Somlo
2014-03-11 15:16 ` [Qemu-devel] [v2 PATCH 09/13] SMBIOS: Build full type 4 tables Gabriel L. Somlo
2014-03-11 15:16 ` [Qemu-devel] [v2 PATCH 10/13] SMBIOS: Build full smbios v2.3 compliant type 16 and 17 tables Gabriel L. Somlo
2014-03-11 15:16 ` [Qemu-devel] [v2 PATCH 11/13] SMBIOS: Build full type 19 tables Gabriel L. Somlo
2014-03-12 8:27 ` Gerd Hoffmann
2014-03-12 13:05 ` Gabriel L. Somlo
2014-03-12 13:24 ` Gerd Hoffmann
2014-03-12 14:44 ` Gabriel L. Somlo
2014-03-12 15:51 ` Gerd Hoffmann
2014-03-12 16:45 ` Gabriel L. Somlo
2014-03-12 18:04 ` Gabriel L. Somlo
2014-03-12 18:17 ` Gabriel L. Somlo
2014-03-11 15:16 ` [Qemu-devel] [v2 PATCH 12/13] SMBIOS: Build full type 20 tables Gabriel L. Somlo
2014-03-11 15:16 ` [Qemu-devel] [v2 PATCH 13/13] SMBIOS: Build full tables for type 32 and 127 Gabriel L. Somlo
2014-03-11 15:46 ` [Qemu-devel] [v2 PATCH 00/13] SMBIOS: build full tables in QEMU Kevin O'Connor
2014-03-11 16:58 ` Gabriel L. Somlo
2014-03-12 8:20 ` Gerd Hoffmann
2014-03-12 16:39 ` [Qemu-devel] [v3 " Gabriel L. Somlo
2014-03-12 16:40 ` [Qemu-devel] [v3 PATCH 01/13] SMBIOS: Rename smbios_set_type1_defaults() for more general use Gabriel L. Somlo
2014-03-12 16:40 ` [Qemu-devel] [v3 PATCH 02/13] SMBIOS: Use macro to set smbios defaults Gabriel L. Somlo
2014-03-12 16:40 ` [Qemu-devel] [v3 PATCH 03/13] SMBIOS: Use bitmaps to check for smbios table collisions Gabriel L. Somlo
2014-03-12 16:40 ` [Qemu-devel] [v3 PATCH 04/13] SMBIOS: Add code to build full smbios tables; build type 2 table Gabriel L. Somlo
2014-03-12 16:40 ` [Qemu-devel] [v3 PATCH 05/13] SMBIOS: Build full tables for types 0 and 1 Gabriel L. Somlo
2014-03-12 16:40 ` [Qemu-devel] [v3 PATCH 06/13] SMBIOS: Remove unused code for passing individual fields to bios Gabriel L. Somlo
2014-03-12 16:40 ` [Qemu-devel] [v3 PATCH 07/13] SMBIOS: Build full type 3 table Gabriel L. Somlo
2014-03-12 16:40 ` [Qemu-devel] [v3 PATCH 08/13] SMBIOS: Build full type 4 tables Gabriel L. Somlo
2014-03-12 16:40 ` [Qemu-devel] [v3 PATCH 09/13] SMBIOS: Build full smbios type 16 and 17 tables Gabriel L. Somlo
2014-03-12 16:40 ` [Qemu-devel] [v3 PATCH 10/13] SMBIOS: Build full type 19 tables Gabriel L. Somlo
2014-03-12 16:40 ` [Qemu-devel] [v3 PATCH 11/13] SMBIOS: Build full type 20 tables Gabriel L. Somlo
2014-03-12 16:40 ` [Qemu-devel] [v3 PATCH 12/13] SMBIOS: Build full tables for type 32 and 127 Gabriel L. Somlo
2014-03-12 16:40 ` [Qemu-devel] [v3 PATCH 13/13] SMBIOS: Update all table definitions to smbios spec v2.3 Gabriel L. Somlo
2014-03-12 16:48 ` [Qemu-devel] [v3 PATCH 00/13] SMBIOS: build full tables in QEMU Eric Blake
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1394532186.22422.24.camel@nilsson.home.kraxel.org \
--to=kraxel@redhat.com \
--cc=agraf@suse.de \
--cc=alex.williamson@redhat.com \
--cc=armbru@redhat.com \
--cc=gsomlo@gmail.com \
--cc=kevin@koconnor.net \
--cc=lersek@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).