summaryrefslogtreecommitdiff
path: root/net/lapb/lapb_timer.c
diff options
context:
space:
mode:
authorPaul Zimmerman <Paul.Zimmerman@synopsys.com>2011-02-13 01:07:57 +0300
committerSarah Sharp <sarah.a.sharp@linux.intel.com>2011-02-20 18:01:28 +0300
commitbcd2fde05341cef0052e49566ec88b406a521cf3 (patch)
treee2d101797ba072dea57c465b47b2892e7e4a19a3 /net/lapb/lapb_timer.c
parent5807795bd4dececdf553719cc02869e633395787 (diff)
downloadlinux-bcd2fde05341cef0052e49566ec88b406a521cf3.tar.xz
xhci: Fix an error in count_sg_trbs_needed()
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> Cc: stable@kernel.org
Diffstat (limited to 'net/lapb/lapb_timer.c')
0 files changed, 0 insertions, 0 deletions