mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
monitor: print QoS Map
The actual data in the map is very low level, but this at least shows us that the IE was included.
This commit is contained in:
parent
8d3b065022
commit
2fd667af94
@ -1854,6 +1854,13 @@ static void print_ie_supported_operating_classes(unsigned int level,
|
||||
print_ie_error(level, label, size, -EINVAL);
|
||||
}
|
||||
|
||||
static void print_qos_map(unsigned int level, const char *label,
|
||||
const void *data,
|
||||
uint16_t size)
|
||||
{
|
||||
print_attr(level, "QoS Map");
|
||||
}
|
||||
|
||||
static struct attr_entry ie_entry[] = {
|
||||
{ IE_TYPE_SSID, "SSID",
|
||||
ATTR_CUSTOM, { .function = print_ie_ssid } },
|
||||
@ -1902,6 +1909,8 @@ static struct attr_entry ie_entry[] = {
|
||||
{ IE_TYPE_SUPPORTED_OPERATING_CLASSES, "Supported Operating Classes",
|
||||
ATTR_CUSTOM,
|
||||
{ .function = print_ie_supported_operating_classes } },
|
||||
{ IE_TYPE_QOS_MAP_SET, "QoS Map",
|
||||
ATTR_CUSTOM, { .function = print_qos_map } },
|
||||
{ },
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user