aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Schmidt <[email protected]>2009-09-03 14:27:08 +0200
committerJames Bottomley <[email protected]>2009-09-12 09:35:30 -0500
commite71044ee2efa4792e21d243b03d49006db66aec9 (patch)
tree56a673a82d0d5f4fe8308a858a2958600b091ba9
parentb437b95620dbf4bf7bd13af0f9d32fdac82c5d37 (diff)
[SCSI] sg: fix oops in the error path in sg_build_indirect()
When the allocation fails in sg_build_indirect(), an oops happens in the error path. It's caused by an obvious typo. Signed-off-by: Michal Schmidt <[email protected]> Reported-by: Bob Tracy <[email protected]> Acked-by: Douglas Gilbert <[email protected]> Cc: Stable Tree <[email protected]> Signed-off-by: James Bottomley <[email protected]>
-rw-r--r--drivers/scsi/sg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/sg.c b/drivers/scsi/sg.c
index 9230402c45af..4968c4ced385 100644
--- a/drivers/scsi/sg.c
+++ b/drivers/scsi/sg.c
@@ -1811,7 +1811,7 @@ retry:
return 0;
out:
for (i = 0; i < k; i++)
- __free_pages(schp->pages[k], order);
+ __free_pages(schp->pages[i], order);
if (--order >= 0)
goto retry;