Re: [PATCH] ath10k: fix debug cal data file
From: Valo, Kalle <hidden>
Date: 2016-09-28 13:26:43
Nikolay Martynov [off-list ref] writes:
It got broken by 0b8e3c4ca29fe2c0efd3d41a76e34a657b9f17a4 Signed-off-by: Nikolay Martynov <redacted>
Good catch, I'll queue this to 4.9.
There was one checkpatch warning I fixed:
drivers/net/wireless/ath/ath10k/debug.c:1477: Prefer vmalloc(sizeof(*data).=
..) over vmalloc(sizeof(struct ath10k_debug_cal_data)...)
The commit log is quite short so added more information about the bug.
The full patch is in the pending branch.
Author: Nikolay Martynov [off-list ref]
Date: Wed Sep 28 15:11:52 2016 +0300
ath10k: fix debug cal data file
=20
Commit 0b8e3c4ca29f ("ath10k: move cal data len to hw_params") broke re=
trieving
the calibration data from cal_data debugfs file. The length of file was=
always
zero. The reason is:
=20
static ssize_t ath10k_debug_cal_data_read(struct file *file,
char __user *user_buf,
size_t count, loff_t *ppos)
{
struct ath10k *ar =3D file->private_data;
void *buf =3D file->private_data;
=20
=20
This is obviously bogus, private_data cannot contain both struct ath10k=
and the
buffer. Fix it by introducing a new temporary structure for storing bot=
h the
length of the buffer and the actual buffer, then struct ath10k is not n=
eeded
anymore.
=20
Fixes: 0b8e3c4ca29f ("ath10k: move cal data len to hw_params")
Cc: stable@vger.kernel.org # 4.7+
Signed-off-by: Nikolay Martynov [off-list ref]
[kvalo@qca.qualcomm.com: improve commit log, fix a checkpatch warning]
Signed-off-by: Kalle Valo [off-list ref]
--=20
Kalle Valo=