Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
kernel
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Linaro
qcomlt
kernel
Commits
2196e8fe
Commit
2196e8fe
authored
11 years ago
by
Rob Clark
Browse files
Options
Downloads
Patches
Plain Diff
drm/gma500: use gem get/put page helpers
Signed-off-by:
Rob Clark
<
robdclark@gmail.com
>
parent
c1fe3618
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
drivers/gpu/drm/gma500/gtt.c
+6
-32
6 additions, 32 deletions
drivers/gpu/drm/gma500/gtt.c
with
6 additions
and
32 deletions
drivers/gpu/drm/gma500/gtt.c
+
6
−
32
View file @
2196e8fe
...
...
@@ -196,37 +196,17 @@ void psb_gtt_roll(struct drm_device *dev, struct gtt_range *r, int roll)
*/
static
int
psb_gtt_attach_pages
(
struct
gtt_range
*
gt
)
{
struct
inode
*
inode
;
struct
address_space
*
mapping
;
int
i
;
struct
page
*
p
;
int
pages
=
gt
->
gem
.
size
/
PAGE_SIZE
;
struct
page
**
pages
;
WARN_ON
(
gt
->
pages
);
/* This is the shared memory object that backs the GEM resource */
i
node
=
file_inode
(
gt
->
gem
.
filp
);
mapping
=
inode
->
i_mapping
;
pages
=
drm_gem_get_pages
(
&
gt
->
gem
,
0
);
i
f
(
IS_ERR
(
pages
))
return
PTR_ERR
(
pages
)
;
gt
->
pages
=
kmalloc
(
pages
*
sizeof
(
struct
page
*
),
GFP_KERNEL
);
if
(
gt
->
pages
==
NULL
)
return
-
ENOMEM
;
gt
->
npage
=
pages
;
gt
->
pages
=
pages
;
for
(
i
=
0
;
i
<
pages
;
i
++
)
{
p
=
shmem_read_mapping_page
(
mapping
,
i
);
if
(
IS_ERR
(
p
))
goto
err
;
gt
->
pages
[
i
]
=
p
;
}
return
0
;
err:
while
(
i
--
)
page_cache_release
(
gt
->
pages
[
i
]);
kfree
(
gt
->
pages
);
gt
->
pages
=
NULL
;
return
PTR_ERR
(
p
);
}
/**
...
...
@@ -240,13 +220,7 @@ static int psb_gtt_attach_pages(struct gtt_range *gt)
*/
static
void
psb_gtt_detach_pages
(
struct
gtt_range
*
gt
)
{
int
i
;
for
(
i
=
0
;
i
<
gt
->
npage
;
i
++
)
{
/* FIXME: do we need to force dirty */
set_page_dirty
(
gt
->
pages
[
i
]);
page_cache_release
(
gt
->
pages
[
i
]);
}
kfree
(
gt
->
pages
);
drm_gem_put_pages
(
&
gt
->
gem
,
gt
->
pages
,
true
,
false
);
gt
->
pages
=
NULL
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment