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
4992a7ce
Commit
4992a7ce
authored
Dec 30, 2003
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge davem@nuts.ninka.net:/disk1/davem/BK/sparc-2.6
into kernel.bkbits.net:/home/davem/sparc-2.6
parents
768d7861
f6fb237b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
Makefile
Makefile
+2
-2
include/linux/ide.h
include/linux/ide.h
+2
-2
No files found.
Makefile
View file @
4992a7ce
VERSION
=
2
PATCHLEVEL
=
6
SUBLEVEL
=
0
EXTRAVERSION
=
SUBLEVEL
=
1
EXTRAVERSION
=
-rc1
# *DOCUMENTATION*
# To see a list of typical targets execute "make help"
...
...
include/linux/ide.h
View file @
4992a7ce
...
...
@@ -246,11 +246,11 @@ typedef unsigned char byte; /* used everywhere */
/*
* Timeouts for various operations:
*/
#define WAIT_DRQ (
5*HZ/100)
/* 5
0msec - spec allows up to 20ms */
#define WAIT_DRQ (
HZ/10)
/* 10
0msec - spec allows up to 20ms */
#if defined(CONFIG_APM) || defined(CONFIG_APM_MODULE)
#define WAIT_READY (5*HZ)
/* 5sec - some laptops are very slow */
#else
#define WAIT_READY (
3*HZ/100)
/* 3
0msec - should be instantaneous */
#define WAIT_READY (
HZ/10)
/* 10
0msec - should be instantaneous */
#endif
/* CONFIG_APM || CONFIG_APM_MODULE */
#define WAIT_PIDENTIFY (10*HZ)
/* 10sec - should be less than 3ms (?), if all ATAPI CD is closed at boot */
#define WAIT_WORSTCASE (30*HZ)
/* 30sec - worst case when spinning up */
...
...
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