Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1296797

[PATCH 0/1] dmi_scan: uuid: fix endianess for smbios >= 0x206

From Andrea Arcangeli <aarcange@redhat.com>
Newsgroups linux.kernel
Subject [PATCH 0/1] dmi_scan: uuid: fix endianess for smbios >= 0x206
Date 2015-12-22 15:00 +0100
Message-ID <qIvDP-4ET-1@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Hello,

this fixes https://bugzilla.kernel.org/show_bug.cgi?id=109731

Without this fix when this code runs:

	if (dmi_ver >= 0x020600)
		sprintf(s, "%pUL", d);
	else
		sprintf(s, "%pUB", d);

dmi_ver is still set to the old 0x20X instead of 0x20X00 as intended
after commit 95be58df74a5b21e5a78e45fddb2fd59112524c5.

Andrea Arcangeli (1):
  dmi_scan: uuid: fix endianess for smbios >= 0x206

 drivers/firmware/dmi_scan.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH 0/1] dmi_scan: uuid: fix endianess for smbios >= 0x206 Andrea Arcangeli <aarcange@redhat.com> - 2015-12-22 15:00 +0100
  [PATCH 1/1] dmi_scan: uuid: fix endianess for smbios >= 0x206 Andrea Arcangeli <aarcange@redhat.com> - 2015-12-22 15:00 +0100
    Re: [PATCH 1/1] dmi_scan: uuid: fix endianess for smbios >= 0x206 Matt Fleming <matt@codeblueprint.co.uk> - 2015-12-22 16:20 +0100

csiph-web