mirror of
https://gitlab.steamos.cloud/holo/steamos-manager.git
synced 2025-07-13 09:52:00 -04:00
wifi: Set/clear ath11k debug_mask before/after tracing
This commit is contained in:
parent
4f169ce1ea
commit
def8d180cb
1 changed files with 3 additions and 1 deletions
|
@ -124,12 +124,14 @@ async fn restart_iwd(connection: Connection) -> Result<()> {
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn stop_tracing() -> Result<()> {
|
async fn stop_tracing() -> Result<()> {
|
||||||
run_script(TRACE_CMD_PATH, &["stop"]).await
|
run_script(TRACE_CMD_PATH, &["stop"]).await?;
|
||||||
|
Ok(fs::write(path("/sys/module/ath11k/parameters/debug_mask"), b"0\n").await?)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn start_tracing(buffer_size: u32) -> Result<()> {
|
async fn start_tracing(buffer_size: u32) -> Result<()> {
|
||||||
// Start tracing
|
// Start tracing
|
||||||
let size_str = buffer_size.to_string();
|
let size_str = buffer_size.to_string();
|
||||||
|
fs::write(path("/sys/module/ath11k/parameters/debug_mask"), b"0xffffefff\n").await?;
|
||||||
run_script(
|
run_script(
|
||||||
TRACE_CMD_PATH,
|
TRACE_CMD_PATH,
|
||||||
&["start", "-e", "ath11k_wmi_diag", "-b", &size_str],
|
&["start", "-e", "ath11k_wmi_diag", "-b", &size_str],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue