Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 104847d0 authored by Bojun Pan's avatar Bojun Pan
Browse files

msm: ipa4: gsb: correct the aggregation time limit



Update the aggregation time limit from 1 to 1000 since the unit
is us and the granularity at least 100.

Change-Id: Ic1e6d2c5f4c9dae90f3f854b11cec7863d91c671
Signed-off-by: default avatarBojun Pan <bojunp@codeaurora.org>
parent 8f716eac
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2018, The Linux Foundation. All rights reserved.
 * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
 */

#include <linux/debugfs.h>
@@ -62,7 +62,7 @@ static char dbg_buff[IPA_GSB_MAX_MSG_LEN];
#define IPA_GSB_SKB_HEADROOM 256
#define IPA_GSB_SKB_DUMMY_HEADER 42
#define IPA_GSB_AGGR_BYTE_LIMIT 14
#define IPA_GSB_AGGR_TIME_LIMIT 1
#define IPA_GSB_AGGR_TIME_LIMIT 1000 /* 1000 us */

static struct dentry *dent;
static struct dentry *dfile_stats;