Commit 01de6fe4 authored by Russell King's avatar Russell King Committed by Kalle Valo
Browse files

wlcore: fix read pointer update



When reading the fw_log structure from the device's memory, we could
race with the firmware updating the actual_buff_size and buff_write_ptr
members of this structure. This would lead to bytes being dropped from
the log.

Fix this by writing back the actual - now fixed - clear_ptr which
reflects where we read up to in the buffer.

This also means that we must not check that the clear_ptr matches the
current write pointer, so remove that check.

Signed-off-by: default avatarRussell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/E1lolvi-0003Ri-39@rmk-PC.armlinux.org.uk
parent 87ab9cba
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -96,15 +96,9 @@ int wlcore_event_fw_logger(struct wl1271 *wl)
		clear_ptr = addr_ptr + WL18XX_LOGGER_BUFF_OFFSET + len;
	}

	/* double check that clear address and write pointer are the same */
	if (clear_ptr != le32_to_cpu(fw_log.buff_write_ptr)) {
		wl1271_error("Calculate of clear addr Clear = %x, write = %x",
			     clear_ptr, le32_to_cpu(fw_log.buff_write_ptr));
	}

	/* indicate FW about Clear buffer */
	/* Update the read pointer */
	ret = wlcore_write32(wl, addr + WL18XX_LOGGER_READ_POINT_OFFSET,
			     fw_log.buff_write_ptr);
			     clear_ptr);
free_out:
	kfree(buffer);
out: