1
0
Fork 0

[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 <mschmidt@redhat.com>
Reported-by: Bob Tracy <rct@gherkin.frus.com>
Acked-by: Douglas Gilbert <dgilbert@interlog.com>
Cc: Stable Tree <stable@kernel.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
hifive-unleashed-5.1
Michal Schmidt 2009-09-03 14:27:08 +02:00 committed by James Bottomley
parent b437b95620
commit e71044ee2e
1 changed files with 1 additions and 1 deletions

View File

@ -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;