diff options
Diffstat (limited to 'drivers/scsi/sg.c')
-rw-r--r-- | drivers/scsi/sg.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/drivers/scsi/sg.c b/drivers/scsi/sg.c index 861e51375d70..2d30b46806bf 100644 --- a/drivers/scsi/sg.c +++ b/drivers/scsi/sg.c | |||
@@ -1886,13 +1886,17 @@ st_unmap_user_pages(struct scatterlist *sgl, const unsigned int nr_pages, | |||
1886 | int i; | 1886 | int i; |
1887 | 1887 | ||
1888 | for (i=0; i < nr_pages; i++) { | 1888 | for (i=0; i < nr_pages; i++) { |
1889 | if (dirtied && !PageReserved(sgl[i].page)) | 1889 | struct page *page = sgl[i].page; |
1890 | SetPageDirty(sgl[i].page); | 1890 | |
1891 | /* unlock_page(sgl[i].page); */ | 1891 | /* XXX: just for debug. Remove when PageReserved is removed */ |
1892 | BUG_ON(PageReserved(page)); | ||
1893 | if (dirtied) | ||
1894 | SetPageDirty(page); | ||
1895 | /* unlock_page(page); */ | ||
1892 | /* FIXME: cache flush missing for rw==READ | 1896 | /* FIXME: cache flush missing for rw==READ |
1893 | * FIXME: call the correct reference counting function | 1897 | * FIXME: call the correct reference counting function |
1894 | */ | 1898 | */ |
1895 | page_cache_release(sgl[i].page); | 1899 | page_cache_release(page); |
1896 | } | 1900 | } |
1897 | 1901 | ||
1898 | return 0; | 1902 | return 0; |