Commit 0c52e423 authored by Mike Rapoport's avatar Mike Rapoport Committed by Greg Kroah-Hartman

staging: lustre: get rid of OBD_PAGE_ALLOC/FREE

Use alloc_page and __free_page instead
Signed-off-by: default avatarMike Rapoport <mike.rapoport@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2a96be0d
...@@ -1595,7 +1595,7 @@ static int echo_client_kbrw(struct echo_device *ed, int rw, struct obdo *oa, ...@@ -1595,7 +1595,7 @@ static int echo_client_kbrw(struct echo_device *ed, int rw, struct obdo *oa,
LASSERT(pgp->pg == NULL); /* for cleanup */ LASSERT(pgp->pg == NULL); /* for cleanup */
rc = -ENOMEM; rc = -ENOMEM;
OBD_PAGE_ALLOC(pgp->pg, gfp_mask); pgp->pg = alloc_page(gfp_mask);
if (pgp->pg == NULL) if (pgp->pg == NULL)
goto out; goto out;
...@@ -1631,7 +1631,7 @@ static int echo_client_kbrw(struct echo_device *ed, int rw, struct obdo *oa, ...@@ -1631,7 +1631,7 @@ static int echo_client_kbrw(struct echo_device *ed, int rw, struct obdo *oa,
if (vrc != 0 && rc == 0) if (vrc != 0 && rc == 0)
rc = vrc; rc = vrc;
} }
OBD_PAGE_FREE(pgp->pg); __free_page(pgp->pg);
} }
kfree(pga); kfree(pga);
kfree(pages); kfree(pages);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment