mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-03-31 06:56:52 +02:00
monitor: Shorten up printed strings
HT Operation Information strings wrap on 80 character terminals, so shorten up the printed string to avoid that in most cases
This commit is contained in:
parent
a227d0b00f
commit
4f5013515d
@ -1083,24 +1083,24 @@ static void print_ie_ht_operation(unsigned int level, const char *label,
|
|||||||
|
|
||||||
i = bytes[1] & 0x03;
|
i = bytes[1] & 0x03;
|
||||||
print_attr (level + 1,
|
print_attr (level + 1,
|
||||||
"HT Operation Information: Secondary Channel Offset: %s",
|
"Information: Secondary Channel Offset: %s",
|
||||||
secondary_offset[i]);
|
secondary_offset[i]);
|
||||||
|
|
||||||
i = (bytes[1] & 0x04) >> 2;
|
i = (bytes[1] & 0x04) >> 2;
|
||||||
print_attr (level + 1,
|
print_attr (level + 1,
|
||||||
"HT Operation Information: Channel width: bit 2: %s",
|
"Information: Channel width: bit 2: %s",
|
||||||
channel_width[i]);
|
channel_width[i]);
|
||||||
|
|
||||||
memset(bytemask, 0, sizeof(bytemask));
|
memset(bytemask, 0, sizeof(bytemask));
|
||||||
bytemask[0] = 0xf8;
|
bytemask[0] = 0xf8;
|
||||||
|
|
||||||
print_ie_bitfield(level + 1,
|
print_ie_bitfield(level + 1,
|
||||||
"HT Operation Information", &bytes[1], bytemask,
|
"Information", &bytes[1], bytemask,
|
||||||
sizeof(bytemask), ht_ops_bitfield);
|
sizeof(bytemask), ht_ops_bitfield);
|
||||||
|
|
||||||
i = bytes[2] & 0x03;
|
i = bytes[2] & 0x03;
|
||||||
print_attr(level + 1,
|
print_attr(level + 1,
|
||||||
"HT Operation Information: HT Protection: bits 8 - 9: %s",
|
"Information: HT Protection: bits 8 - 9: %s",
|
||||||
ht_protection[i]);
|
ht_protection[i]);
|
||||||
|
|
||||||
bytemask[0] = 0x00;
|
bytemask[0] = 0x00;
|
||||||
@ -1108,7 +1108,7 @@ static void print_ie_ht_operation(unsigned int level, const char *label,
|
|||||||
bytemask[2] = 0xff;
|
bytemask[2] = 0xff;
|
||||||
bytemask[3] = 0xff;
|
bytemask[3] = 0xff;
|
||||||
bytemask[4] = 0xff;
|
bytemask[4] = 0xff;
|
||||||
print_ie_bitfield(level + 1, "HT Operation Information", &bytes[1],
|
print_ie_bitfield(level + 1, "Information", &bytes[1],
|
||||||
bytemask, sizeof(bytemask), ht_ops_bitfield);
|
bytemask, sizeof(bytemask), ht_ops_bitfield);
|
||||||
|
|
||||||
print_ie_mcs(level + 1, "Basic MCS set", &bytes[6], 16);
|
print_ie_mcs(level + 1, "Basic MCS set", &bytes[6], 16);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user