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
35cfc45c
Commit
35cfc45c
authored
Jan 17, 2006
by
Jeff Garzik
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'lba48-opt'
parents
8a6d498e
0825788f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
27 deletions
+33
-27
drivers/scsi/libata-scsi.c
drivers/scsi/libata-scsi.c
+21
-27
include/linux/ata.h
include/linux/ata.h
+12
-0
No files found.
drivers/scsi/libata-scsi.c
View file @
35cfc45c
...
...
@@ -985,9 +985,13 @@ static unsigned int ata_scsi_verify_xlat(struct ata_queued_cmd *qc, const u8 *sc
if
(
dev
->
flags
&
ATA_DFLAG_LBA
)
{
tf
->
flags
|=
ATA_TFLAG_LBA
;
if
(
dev
->
flags
&
ATA_DFLAG_LBA48
)
{
if
(
n_block
>
(
64
*
1024
))
goto
invalid_fld
;
if
(
lba_28_ok
(
block
,
n_block
))
{
/* use LBA28 */
tf
->
command
=
ATA_CMD_VERIFY
;
tf
->
device
|=
(
block
>>
24
)
&
0xf
;
}
else
if
(
lba_48_ok
(
block
,
n_block
))
{
if
(
!
(
dev
->
flags
&
ATA_DFLAG_LBA48
))
goto
out_of_range
;
/* use LBA48 */
tf
->
flags
|=
ATA_TFLAG_LBA48
;
...
...
@@ -998,15 +1002,9 @@ static unsigned int ata_scsi_verify_xlat(struct ata_queued_cmd *qc, const u8 *sc
tf
->
hob_lbah
=
(
block
>>
40
)
&
0xff
;
tf
->
hob_lbam
=
(
block
>>
32
)
&
0xff
;
tf
->
hob_lbal
=
(
block
>>
24
)
&
0xff
;
}
else
{
if
(
n_block
>
256
)
goto
invalid_fld
;
/* use LBA28 */
tf
->
command
=
ATA_CMD_VERIFY
;
tf
->
device
|=
(
block
>>
24
)
&
0xf
;
}
}
else
/* request too large even for LBA48 */
goto
out_of_range
;
tf
->
nsect
=
n_block
&
0xff
;
...
...
@@ -1019,8 +1017,8 @@ static unsigned int ata_scsi_verify_xlat(struct ata_queued_cmd *qc, const u8 *sc
/* CHS */
u32
sect
,
head
,
cyl
,
track
;
if
(
n_block
>
256
)
goto
invalid_fld
;
if
(
!
lba_28_ok
(
block
,
n_block
)
)
goto
out_of_range
;
/* Convert LBA to CHS */
track
=
(
u32
)
block
/
dev
->
sectors
;
...
...
@@ -1139,9 +1137,11 @@ static unsigned int ata_scsi_rw_xlat(struct ata_queued_cmd *qc, const u8 *scsicm
if
(
dev
->
flags
&
ATA_DFLAG_LBA
)
{
tf
->
flags
|=
ATA_TFLAG_LBA
;
if
(
dev
->
flags
&
ATA_DFLAG_LBA48
)
{
/* The request -may- be too large for LBA48. */
if
((
block
>>
48
)
||
(
n_block
>
65536
))
if
(
lba_28_ok
(
block
,
n_block
))
{
/* use LBA28 */
tf
->
device
|=
(
block
>>
24
)
&
0xf
;
}
else
if
(
lba_48_ok
(
block
,
n_block
))
{
if
(
!
(
dev
->
flags
&
ATA_DFLAG_LBA48
))
goto
out_of_range
;
/* use LBA48 */
...
...
@@ -1152,15 +1152,9 @@ static unsigned int ata_scsi_rw_xlat(struct ata_queued_cmd *qc, const u8 *scsicm
tf
->
hob_lbah
=
(
block
>>
40
)
&
0xff
;
tf
->
hob_lbam
=
(
block
>>
32
)
&
0xff
;
tf
->
hob_lbal
=
(
block
>>
24
)
&
0xff
;
}
else
{
/* use LBA28 */
/* The request -may- be too large for LBA28. */
if
((
block
>>
28
)
||
(
n_block
>
256
))
goto
out_of_range
;
tf
->
device
|=
(
block
>>
24
)
&
0xf
;
}
}
else
/* request too large even for LBA48 */
goto
out_of_range
;
if
(
unlikely
(
ata_rwcmd_protocol
(
qc
)
<
0
))
goto
invalid_fld
;
...
...
@@ -1178,7 +1172,7 @@ static unsigned int ata_scsi_rw_xlat(struct ata_queued_cmd *qc, const u8 *scsicm
u32
sect
,
head
,
cyl
,
track
;
/* The request -may- be too large for CHS addressing. */
if
(
(
block
>>
28
)
||
(
n_block
>
256
))
if
(
!
lba_28_ok
(
block
,
n_block
))
goto
out_of_range
;
if
(
unlikely
(
ata_rwcmd_protocol
(
qc
)
<
0
))
...
...
include/linux/ata.h
View file @
35cfc45c
...
...
@@ -302,4 +302,16 @@ static inline int ata_ok(u8 status)
==
ATA_DRDY
);
}
static
inline
int
lba_28_ok
(
u64
block
,
u32
n_block
)
{
/* check the ending block number */
return
((
block
+
n_block
-
1
)
<
((
u64
)
1
<<
28
))
&&
(
n_block
<=
256
);
}
static
inline
int
lba_48_ok
(
u64
block
,
u32
n_block
)
{
/* check the ending block number */
return
((
block
+
n_block
-
1
)
<
((
u64
)
1
<<
48
))
&&
(
n_block
<=
65536
);
}
#endif
/* __LINUX_ATA_H__ */
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