Commit 58f01aa9 authored by Marcel Holtmann's avatar Marcel Holtmann Committed by Johan Hedberg

Bluetooth: Fix UUID values in debugfs file

The uuid entry struct is used for the UUID byte stream. That is
actually the wrong value. The correct value is uuid->uuid.

Besides fixing this up, use the %pUb modifier to print the UUID
string. However since the UUID is stored in big endian with
reversed byte order, change the byte order before printing.
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
parent 4b4148e9
...@@ -193,18 +193,16 @@ static int uuids_show(struct seq_file *f, void *p) ...@@ -193,18 +193,16 @@ static int uuids_show(struct seq_file *f, void *p)
hci_dev_lock(hdev); hci_dev_lock(hdev);
list_for_each_entry(uuid, &hdev->uuids, list) { list_for_each_entry(uuid, &hdev->uuids, list) {
u32 data0, data5; u8 i, val[16];
u16 data1, data2, data3, data4;
/* The Bluetooth UUID values are stored in big endian,
data5 = get_unaligned_le32(uuid); * but with reversed byte order. So convert them into
data4 = get_unaligned_le16(uuid + 4); * the right order for the %pUb modifier.
data3 = get_unaligned_le16(uuid + 6); */
data2 = get_unaligned_le16(uuid + 8); for (i = 0; i < 16; i++)
data1 = get_unaligned_le16(uuid + 10); val[i] = uuid->uuid[15 - i];
data0 = get_unaligned_le32(uuid + 12);
seq_printf(f, "%pUb\n", val);
seq_printf(f, "%.8x-%.4x-%.4x-%.4x-%.4x%.8x\n",
data0, data1, data2, data3, data4, data5);
} }
hci_dev_unlock(hdev); hci_dev_unlock(hdev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment