Commit 1ea56e5
authored
fix: mt7925-tune.py status only printing the AQL table header (#155)
Found from a real run on the target hardware (G16 GA605WV): `status` showed
```
-- AQL Best Effort queue limit --
AC AQL limit low AQL limit high
```
with none of the actual per-access-category values below it.
## Type of change
- [x] `fix`: bug fix (broken link, incorrect command, layout issue)
## Details
`aql_txq_limit` in debugfs is a header line plus one row per access category (VO/VI/BE/BK), not a single value. The status parsing kept only `aql_lines[1]` -- the header row -- and silently dropped the rest of the table, including the row that actually shows whether the tuning took effect.
Fix: join every line after the `EXISTS`/`MISSING` marker instead of taking just the second one, so the full table prints (matching what a plain `cat aql_txq_limit` would show).
Verified the parsing logic against a realistic multi-line debugfs dump (header + 4 AC rows) in isolation, since this sandbox has no `iw`/wireless hardware to exercise the real path end-to-end. Recomputed and republished the checksum in both docs pages.
## Checklist
- [x] PR title follows the commit convention
- [x] Both EN and NL versions updated (checksum only, no content changes)
- [x] Media is in AVIF format (not PNG/JPG) — N/A
- [x] No broken image references — N/A
- [x] Tested locally: compiles.1 parent f5c6e4b commit 1ea56e5
3 files changed
Lines changed: 7 additions & 5 deletions
File tree
- src
- content/docs/networking
- static/scripts
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
| 45 | + | |
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
| 45 | + | |
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
372 | 372 | | |
373 | 373 | | |
374 | 374 | | |
375 | | - | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
376 | 378 | | |
377 | 379 | | |
378 | 380 | | |
| |||
0 commit comments