Files
linux/drivers
Paul Zimmerman cbc0238c26 xhci: Fix an error in count_sg_trbs_needed()
commit bcd2fde053 upstream.

The expression

	while (running_total < sg_dma_len(sg))

does not take into account that the remaining data length can be less
than sg_dma_len(sg). In that case, running_total can end up being
greater than the total data length, so an extra TRB is counted.
Changing the expression to

	while (running_total < sg_dma_len(sg) && running_total < temp)

fixes that.

This patch should be queued for stable kernels back to 2.6.31.

Signed-off-by: Paul Zimmerman <paulz@synopsys.com>
Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2011-03-02 09:47:07 -05:00
..
2011-01-07 14:43:17 -08:00
2011-01-07 14:43:06 -08:00
2010-08-26 16:41:42 -07:00
2009-10-15 09:58:27 -06:00
2009-11-12 07:26:01 -08:00
2011-02-17 15:37:00 -08:00
2010-08-13 13:20:13 -07:00
2011-02-17 15:37:03 -08:00
2010-05-12 14:57:15 -07:00