Blame SOURCES/0277-Fixup-WWN-bytes-for-big-endian-systems.patch

17b0f1
From 2a62c3c66698148f1439176bd6ca5a946b8de550 Mon Sep 17 00:00:00 2001
17b0f1
From: Tom Lyon <pugs@drivescale.com>
17b0f1
Date: Mon, 21 Sep 2015 14:36:32 -0700
17b0f1
Subject: [PATCH] Fixup WWN bytes for big-endian systems
17b0f1
17b0f1
Cherry-picked from: cf22cddcfd07d10fecd7b03ef465e957054daec2
17b0f1
Resolves: #1273306
17b0f1
---
17b0f1
 src/udev/ata_id/ata_id.c | 4 ++++
17b0f1
 1 file changed, 4 insertions(+)
17b0f1
17b0f1
diff --git a/src/udev/ata_id/ata_id.c b/src/udev/ata_id/ata_id.c
17b0f1
index 4adec44960..ef05fba263 100644
17b0f1
--- a/src/udev/ata_id/ata_id.c
17b0f1
+++ b/src/udev/ata_id/ata_id.c
17b0f1
@@ -485,6 +485,10 @@ int main(int argc, char *argv[])
17b0f1
                 disk_identify_fixup_uint16(identify.byte,  90);     /* time required for enhanced SECURITY ERASE UNIT */
17b0f1
                 disk_identify_fixup_uint16(identify.byte,  91);     /* current APM values */
17b0f1
                 disk_identify_fixup_uint16(identify.byte,  94);     /* current AAM value */
17b0f1
+                disk_identify_fixup_uint16(identify.byte, 108);     /* wwn */
17b0f1
+                disk_identify_fixup_uint16(identify.byte, 109);     /* wwn */
17b0f1
+                disk_identify_fixup_uint16(identify.byte, 110);     /* wwn */
17b0f1
+                disk_identify_fixup_uint16(identify.byte, 111);     /* wwn */
17b0f1
                 disk_identify_fixup_uint16(identify.byte, 128);     /* device lock function */
17b0f1
                 disk_identify_fixup_uint16(identify.byte, 217);     /* nominal media rotation rate */
17b0f1
                 memcpy(&id, identify.byte, sizeof id);