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
nexedi
linux
Commits
2dbb232c
Commit
2dbb232c
authored
Oct 25, 2006
by
=?utf-8?q?Michel_D=C3=A4nzer?=
Committed by
airlied
Dec 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm: i915: Fix 'sequence has passed' condition in i915_vblank_swap().
Signed-off-by:
Dave Airlie
<
airlied@linux.ie
>
parent
376642cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
drivers/char/drm/i915_irq.c
drivers/char/drm/i915_irq.c
+1
-1
No files found.
drivers/char/drm/i915_irq.c
View file @
2dbb232c
...
...
@@ -439,7 +439,7 @@ int i915_vblank_swap(DRM_IOCTL_ARGS)
swap
.
sequence
+=
curseq
;
break
;
case
_DRM_VBLANK_ABSOLUTE
:
if
((
curseq
-
swap
.
sequence
)
>
(
1
<<
23
))
{
if
((
curseq
-
swap
.
sequence
)
<=
(
1
<<
23
))
{
spin_unlock_irqrestore
(
&
dev_priv
->
swaps_lock
,
irqflags
);
DRM_DEBUG
(
"Missed target sequence
\n
"
);
return
DRM_ERR
(
EINVAL
);
...
...
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