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

Commit b6a694b8 authored by Vladimir Kondratiev's avatar Vladimir Kondratiev Committed by Ian Maund
Browse files

wil6210: improve debugfs for reorder buffer



When printing debugfs for the reorder buffer, include BACK
parameters: window size and timeout

Change-Id: If35aa897f153fe2ff7ae3cfc0ee8ef82fa908654
Signed-off-by: default avatarVladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
Git-commit: 56637e7b53d1800a071a1117a80144bb88f52038
Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git


Signed-off-by: default avatarHamad Kadmany <hkadmany@codeaurora.org>
parent b8f3d077
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1158,7 +1158,8 @@ static void wil_print_rxtid(struct seq_file *s, struct wil_tid_ampdu_rx *r)
	int i;
	u16 index = ((r->head_seq_num - r->ssn) & 0xfff) % r->buf_size;

	seq_printf(s, "0x%03x [", r->head_seq_num);
	seq_printf(s, "([%2d] %3d TU) 0x%03x [", r->buf_size, r->timeout,
		   r->head_seq_num);
	for (i = 0; i < r->buf_size; i++) {
		if (i == index)
			seq_printf(s, "%c", r->reorder_buf[i] ? 'O' : '|');