mirror of
https://github.com/torvalds/linux.git
synced 2024-11-20 02:51:44 +00:00
airo : fix printing status info
For some status, reason is encoded in the low byte, but airo_print_status forgot tp mask low byte in status parsing. This make it only work when reason is 0. Signed-off-by: Matthieu CASTET <castet.matthieu@free.fr> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
85373ee817
commit
3bc819e8d4
@ -3193,19 +3193,26 @@ static void airo_print_status(const char *devname, u16 status)
|
||||
{
|
||||
u8 reason = status & 0xFF;
|
||||
|
||||
switch (status) {
|
||||
switch (status & 0xFF00) {
|
||||
case STAT_NOBEACON:
|
||||
airo_print_dbg(devname, "link lost (missed beacons)");
|
||||
break;
|
||||
case STAT_MAXRETRIES:
|
||||
case STAT_MAXARL:
|
||||
airo_print_dbg(devname, "link lost (max retries)");
|
||||
break;
|
||||
case STAT_FORCELOSS:
|
||||
airo_print_dbg(devname, "link lost (local choice)");
|
||||
break;
|
||||
case STAT_TSFSYNC:
|
||||
airo_print_dbg(devname, "link lost (TSF sync lost)");
|
||||
switch (status) {
|
||||
case STAT_NOBEACON:
|
||||
airo_print_dbg(devname, "link lost (missed beacons)");
|
||||
break;
|
||||
case STAT_MAXRETRIES:
|
||||
case STAT_MAXARL:
|
||||
airo_print_dbg(devname, "link lost (max retries)");
|
||||
break;
|
||||
case STAT_FORCELOSS:
|
||||
airo_print_dbg(devname, "link lost (local choice)");
|
||||
break;
|
||||
case STAT_TSFSYNC:
|
||||
airo_print_dbg(devname, "link lost (TSF sync lost)");
|
||||
break;
|
||||
default:
|
||||
airo_print_dbg(devname, "unknow status %x\n", status);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case STAT_DEAUTH:
|
||||
airo_print_dbg(devname, "deauthenticated (reason: %d)", reason);
|
||||
@ -3221,7 +3228,11 @@ static void airo_print_status(const char *devname, u16 status)
|
||||
airo_print_dbg(devname, "authentication failed (reason: %d)",
|
||||
reason);
|
||||
break;
|
||||
case STAT_ASSOC:
|
||||
case STAT_REASSOC:
|
||||
break;
|
||||
default:
|
||||
airo_print_dbg(devname, "unknow status %x\n", status);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user