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
cd492197
Commit
cd492197
authored
Jun 26, 2003
by
Bartlomiej Zolnierkiewicz
Committed by
Jeff Garzik
Jun 26, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] ide: fix drive->unmask handling for taskfile PIO
parent
17959b7f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
drivers/ide/ide-taskfile.c
drivers/ide/ide-taskfile.c
+6
-0
No files found.
drivers/ide/ide-taskfile.c
View file @
cd492197
...
...
@@ -954,6 +954,9 @@ ide_startstop_t pre_task_out_intr (ide_drive_t *drive, struct request *rq)
return
startstop
;
}
if
(
!
drive
->
unmask
)
local_irq_disable
();
return
task_out_intr
(
drive
);
}
EXPORT_SYMBOL
(
pre_task_out_intr
);
...
...
@@ -1030,6 +1033,9 @@ ide_startstop_t pre_task_mulout_intr (ide_drive_t *drive, struct request *rq)
return
startstop
;
}
if
(
!
drive
->
unmask
)
local_irq_disable
();
return
task_mulout_intr
(
drive
);
}
EXPORT_SYMBOL
(
pre_task_mulout_intr
);
...
...
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