Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
ea13e5ab
Commit
ea13e5ab
authored
Jan 23, 2020
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau: signal pending fences when channel has been killed
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
0181f4bf
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
drivers/gpu/drm/nouveau/nouveau_chan.c
drivers/gpu/drm/nouveau/nouveau_chan.c
+2
-0
drivers/gpu/drm/nouveau/nouveau_fence.c
drivers/gpu/drm/nouveau/nouveau_fence.c
+9
-1
drivers/gpu/drm/nouveau/nouveau_fence.h
drivers/gpu/drm/nouveau/nouveau_fence.h
+1
-0
No files found.
drivers/gpu/drm/nouveau/nouveau_chan.c
View file @
ea13e5ab
...
...
@@ -55,6 +55,8 @@ nouveau_channel_killed(struct nvif_notify *ntfy)
struct
nouveau_cli
*
cli
=
(
void
*
)
chan
->
user
.
client
;
NV_PRINTK
(
warn
,
cli
,
"channel %d killed!
\n
"
,
chan
->
chid
);
atomic_set
(
&
chan
->
killed
,
1
);
if
(
chan
->
fence
)
nouveau_fence_context_kill
(
chan
->
fence
,
-
ENODEV
);
return
NVIF_NOTIFY_DROP
;
}
...
...
drivers/gpu/drm/nouveau/nouveau_fence.c
View file @
ea13e5ab
...
...
@@ -87,7 +87,7 @@ nouveau_local_fence(struct dma_fence *fence, struct nouveau_drm *drm)
}
void
nouveau_fence_context_
del
(
struct
nouveau_fence_chan
*
fctx
)
nouveau_fence_context_
kill
(
struct
nouveau_fence_chan
*
fctx
,
int
error
)
{
struct
nouveau_fence
*
fence
;
...
...
@@ -95,11 +95,19 @@ nouveau_fence_context_del(struct nouveau_fence_chan *fctx)
while
(
!
list_empty
(
&
fctx
->
pending
))
{
fence
=
list_entry
(
fctx
->
pending
.
next
,
typeof
(
*
fence
),
head
);
if
(
error
)
dma_fence_set_error
(
&
fence
->
base
,
error
);
if
(
nouveau_fence_signal
(
fence
))
nvif_notify_put
(
&
fctx
->
notify
);
}
spin_unlock_irq
(
&
fctx
->
lock
);
}
void
nouveau_fence_context_del
(
struct
nouveau_fence_chan
*
fctx
)
{
nouveau_fence_context_kill
(
fctx
,
0
);
nvif_notify_fini
(
&
fctx
->
notify
);
fctx
->
dead
=
1
;
...
...
drivers/gpu/drm/nouveau/nouveau_fence.h
View file @
ea13e5ab
...
...
@@ -63,6 +63,7 @@ struct nouveau_fence_priv {
void
nouveau_fence_context_new
(
struct
nouveau_channel
*
,
struct
nouveau_fence_chan
*
);
void
nouveau_fence_context_del
(
struct
nouveau_fence_chan
*
);
void
nouveau_fence_context_free
(
struct
nouveau_fence_chan
*
);
void
nouveau_fence_context_kill
(
struct
nouveau_fence_chan
*
,
int
error
);
int
nv04_fence_create
(
struct
nouveau_drm
*
);
int
nv04_fence_mthd
(
struct
nouveau_channel
*
,
u32
,
u32
,
u32
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment