aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-07-31 07:28:04 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-07-31 07:28:04 +0200
commit9a675a13c3bbb6ff46414b4ffaca5fa6bb54b62a (patch)
tree23a586057bb9b7c6351f2cade0fcc16b22d72916 /drivers/staging
parentstaging: Remove dev_err() usage after platform_get_irq() (diff)
downloadlinux-dev-9a675a13c3bbb6ff46414b4ffaca5fa6bb54b62a.tar.xz
linux-dev-9a675a13c3bbb6ff46414b4ffaca5fa6bb54b62a.zip
Revert "staging: kpc2000: Convert put_page() to put_user_page*()"
This reverts commit 8e7cb7352ec85e9e4fbbd7bfe6c5c5a6806f70e3. Bharath writes: Could you drop this patch from the staging-next tree? This is because John is making some changes to the put_user_page*() functions. He has submitted a patch recently removing put_user_page_dirty() function which is being used in this patch. This might break the kernel build if John's patch gets merged in. I ll submit a patch once the put_user_page*() apis are fixed. Reported-by: Bharath Vedartham <linux.bhar@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/kpc2000/kpc_dma/fileops.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/drivers/staging/kpc2000/kpc_dma/fileops.c b/drivers/staging/kpc2000/kpc_dma/fileops.c
index f15e29209d55..48ca88bc6b0b 100644
--- a/drivers/staging/kpc2000/kpc_dma/fileops.c
+++ b/drivers/staging/kpc2000/kpc_dma/fileops.c
@@ -190,7 +190,9 @@ static int kpc_dma_transfer(struct dev_private_data *priv,
sg_free_table(&acd->sgt);
err_dma_map_sg:
err_alloc_sg_table:
- put_user_pages(acd->user_pages, acd->page_count);
+ for (i = 0 ; i < acd->page_count ; i++) {
+ put_page(acd->user_pages[i]);
+ }
err_get_user_pages:
kfree(acd->user_pages);
err_alloc_userpages:
@@ -209,13 +211,16 @@ void transfer_complete_cb(struct aio_cb_data *acd, size_t xfr_count, u32 flags)
BUG_ON(acd->ldev == NULL);
BUG_ON(acd->ldev->pldev == NULL);
+ for (i = 0 ; i < acd->page_count ; i++) {
+ if (!PageReserved(acd->user_pages[i])) {
+ set_page_dirty(acd->user_pages[i]);
+ }
+ }
+
dma_unmap_sg(&acd->ldev->pldev->dev, acd->sgt.sgl, acd->sgt.nents, acd->ldev->dir);
- for (i = 0; i < acd->page_count; i++) {
- if (!PageReserved(acd->user_pages[i]))
- put_user_pages_dirty(&acd->user_pages[i], 1);
- else
- put_user_page(acd->user_pages[i]);
+ for (i = 0 ; i < acd->page_count ; i++) {
+ put_page(acd->user_pages[i]);
}
sg_free_table(&acd->sgt);