From bbb1a36020ff68865bfd55d8f387d6dba447e4d7 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Tue, 6 Nov 2018 16:03:24 +0100 Subject: [PATCH] modemu: fix subsystem hash endianness Tested on a really really big endian IBM POWER. Also turn an accompanying comment into a slightly more sensible one. https://github.com/NetworkManager/NetworkManager/pull/246 --- contrib/test/modemu.pl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/contrib/test/modemu.pl b/contrib/test/modemu.pl index 26182ffdc..e8ed116c3 100755 --- a/contrib/test/modemu.pl +++ b/contrib/test/modemu.pl @@ -100,7 +100,7 @@ sub send_netlink my %props = @_; my $props = join '', map { $_, '=', $props{$_}, "\0" } keys %props; - my $head = pack 'a8NLLLLLLL', + my $head = pack 'a8NLLLNLLL', # signature + magic 'libudev', 0xfeedcafe, @@ -108,8 +108,9 @@ sub send_netlink # 40 octets is the length of this header 40, 40, 40 + length ($props), - # SUBSYS=tty hash. Precomputed somehow. - 0xc890fa8a, + # Digest::MurmurHash2::Neutral::murmur_hash2_neutral("tty") + 0x8afa90c8, + 0x00000000, 0x00040002, 0x00008010;