Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
b7bfcf7c
Commit
b7bfcf7c
authored
Jan 16, 2006
by
Jens Axboe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[BLOCK] elevator: if specified scheduler is not found, fall back to default
Signed-off-by:
Jens Axboe
<
axboe@suse.de
>
parent
752a3b79
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
block/elevator.c
block/elevator.c
+2
-2
No files found.
block/elevator.c
View file @
b7bfcf7c
...
...
@@ -157,12 +157,12 @@ static void elevator_setup_default(void)
strcpy
(
chosen_elevator
,
"anticipatory"
);
/*
* If the given scheduler is not available, fall back to
no-op.
* If the given scheduler is not available, fall back to
the default
*/
if
((
e
=
elevator_find
(
chosen_elevator
)))
elevator_put
(
e
);
else
strcpy
(
chosen_elevator
,
"noop"
);
strcpy
(
chosen_elevator
,
CONFIG_DEFAULT_IOSCHED
);
}
static
int
__init
elevator_setup
(
char
*
str
)
...
...
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