]> git.baikalelectronics.ru Git - kernel.git/commit
r8152: Set memory to all 0xFFs on failed reg reads
authorPrashant Malani <pmalani@chromium.org>
Sat, 24 Aug 2019 08:36:19 +0000 (01:36 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 26 Aug 2019 02:52:59 +0000 (19:52 -0700)
commit6bef88242c321e6b2899150456ae018f0ec37603
treea6fb436fa2844b808f326a64e62ae315d9204b1d
parent84278b4a2599879ee557677a4be8293088288503
r8152: Set memory to all 0xFFs on failed reg reads

get_registers() blindly copies the memory written to by the
usb_control_msg() call even if the underlying urb failed.

This could lead to junk register values being read by the driver, since
some indirect callers of get_registers() ignore the return values. One
example is:
  ocp_read_dword() ignores the return value of generic_ocp_read(), which
  calls get_registers().

So, emulate PCI "Master Abort" behavior by setting the buffer to all
0xFFs when usb_control_msg() fails.

This patch is copied from the r8152 driver (v2.12.0) published by
Realtek (www.realtek.com).

Signed-off-by: Prashant Malani <pmalani@chromium.org>
Acked-by: Hayes Wang <hayeswang@realtek.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/usb/r8152.c