]> git.baikalelectronics.ru Git - kernel.git/commit
xhci: Fix invalid loop check in xhci_free_tt_info()
authorTakashi Iwai <tiwai@suse.de>
Fri, 1 Jun 2012 08:06:23 +0000 (10:06 +0200)
committerSarah Sharp <sarah.a.sharp@linux.intel.com>
Wed, 13 Jun 2012 23:37:28 +0000 (16:37 -0700)
commit87b20532176ba9262db411634eede189103b66fa
tree222dcd651ee6e84e1877da9881f28f4cd91964d0
parent5c1a516123aa6a4fe25b5d3d473a4adcb4842bd4
xhci: Fix invalid loop check in xhci_free_tt_info()

xhci_free_tt_info() may access the invalid memory when it removes the
last entry but the list is not empty.  Then tt_next reaches to the
list head but it still tries to check the tt_info of that entry.

This patch fixes the bug and cleans up the messy code by rewriting
with a simple list_for_each_entry_safe().

This patch should be backported to kernels as old as 3.2, that contain
the commit 2f32af165b4f40ae84a8fc55a235be439c9e19e5 "xhci: Store
information about roothubs and TTs."

Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Reviewed-by: Oliver Neukum <oneukum@suse.de>
Cc: <stable@vger.kernel.org>
drivers/usb/host/xhci-mem.c