Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
f15a1daf
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
f15a1daf
编写于
5月 15, 2006
作者:
T
Tejun Heo
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[PATCH] libata: use ATA printk helpers
Use ATA printk helpers. Signed-off-by:
N
Tejun Heo
<
htejun@gmail.com
>
上级
61440db6
变更
10
隐藏空白更改
内联
并排
Showing
10 changed file
with
124 addition
and
137 deletion
+124
-137
drivers/scsi/ahci.c
drivers/scsi/ahci.c
+3
-5
drivers/scsi/ata_piix.c
drivers/scsi/ata_piix.c
+2
-2
drivers/scsi/libata-core.c
drivers/scsi/libata-core.c
+92
-107
drivers/scsi/libata-eh.c
drivers/scsi/libata-eh.c
+3
-2
drivers/scsi/libata-scsi.c
drivers/scsi/libata-scsi.c
+5
-4
drivers/scsi/sata_mv.c
drivers/scsi/sata_mv.c
+4
-4
drivers/scsi/sata_promise.c
drivers/scsi/sata_promise.c
+4
-3
drivers/scsi/sata_sil.c
drivers/scsi/sata_sil.c
+4
-4
drivers/scsi/sata_sil24.c
drivers/scsi/sata_sil24.c
+3
-3
drivers/scsi/sata_sx4.c
drivers/scsi/sata_sx4.c
+4
-3
未找到文件。
drivers/scsi/ahci.c
浏览文件 @
f15a1daf
...
...
@@ -655,8 +655,7 @@ static int ahci_softreset(struct ata_port *ap, unsigned int *class)
fail_restart:
ahci_start_engine
(
ap
);
fail:
printk
(
KERN_ERR
"ata%u: softreset failed (%s)
\n
"
,
ap
->
id
,
reason
);
ata_port_printk
(
ap
,
KERN_ERR
,
"softreset failed (%s)
\n
"
,
reason
);
return
rc
;
}
...
...
@@ -798,9 +797,8 @@ static void ahci_restart_port(struct ata_port *ap, u32 irq_stat)
if
((
ap
->
device
[
0
].
class
!=
ATA_DEV_ATAPI
)
||
((
irq_stat
&
PORT_IRQ_TF_ERR
)
==
0
))
printk
(
KERN_WARNING
"ata%u:
port reset, "
ata_port_printk
(
ap
,
KERN_WARNING
,
"
port reset, "
"p_is %x is %x pis %x cmd %x tf %x ss %x se %x
\n
"
,
ap
->
id
,
irq_stat
,
readl
(
mmio
+
HOST_IRQ_STAT
),
readl
(
port_mmio
+
PORT_IRQ_STAT
),
...
...
@@ -840,7 +838,7 @@ static void ahci_eng_timeout(struct ata_port *ap)
struct
ata_queued_cmd
*
qc
;
unsigned
long
flags
;
printk
(
KERN_WARNING
"ata%u: handling error/timeout
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_WARNING
,
"handling error/timeout
\n
"
);
spin_lock_irqsave
(
&
host_set
->
lock
,
flags
);
...
...
drivers/scsi/ata_piix.c
浏览文件 @
f15a1daf
...
...
@@ -484,7 +484,7 @@ static int piix_pata_probe_reset(struct ata_port *ap, unsigned int *classes)
struct
pci_dev
*
pdev
=
to_pci_dev
(
ap
->
host_set
->
dev
);
if
(
!
pci_test_config_bits
(
pdev
,
&
piix_enable_bits
[
ap
->
hard_port_no
]))
{
printk
(
KERN_INFO
"ata%u: port disabled. ignoring.
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_INFO
,
"port disabled. ignoring.
\n
"
);
return
0
;
}
...
...
@@ -565,7 +565,7 @@ static unsigned int piix_sata_probe (struct ata_port *ap)
static
int
piix_sata_probe_reset
(
struct
ata_port
*
ap
,
unsigned
int
*
classes
)
{
if
(
!
piix_sata_probe
(
ap
))
{
printk
(
KERN_INFO
"ata%u: SATA port has no device.
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_INFO
,
"SATA port has no device.
\n
"
);
return
0
;
}
...
...
drivers/scsi/libata-core.c
浏览文件 @
f15a1daf
...
...
@@ -412,8 +412,7 @@ static const char *sata_spd_string(unsigned int spd)
void
ata_dev_disable
(
struct
ata_device
*
dev
)
{
if
(
ata_dev_enabled
(
dev
))
{
printk
(
KERN_WARNING
"ata%u: dev %u disabled
\n
"
,
dev
->
ap
->
id
,
dev
->
devno
);
ata_dev_printk
(
dev
,
KERN_WARNING
,
"disabled
\n
"
);
dev
->
class
++
;
}
}
...
...
@@ -1021,8 +1020,9 @@ unsigned ata_exec_internal(struct ata_device *dev,
if
(
qc
->
flags
&
ATA_QCFLAG_ACTIVE
)
{
qc
->
err_mask
=
AC_ERR_TIMEOUT
;
ata_qc_complete
(
qc
);
printk
(
KERN_WARNING
"ata%u: qc timeout (cmd 0x%x)
\n
"
,
ap
->
id
,
command
);
ata_dev_printk
(
dev
,
KERN_WARNING
,
"qc timeout (cmd 0x%x)
\n
"
,
command
);
}
spin_unlock_irqrestore
(
&
ap
->
host_set
->
lock
,
flags
);
...
...
@@ -1187,8 +1187,8 @@ static int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class,
return
0
;
err_out:
printk
(
KERN_WARNING
"ata%u: dev %u failed to IDENTIFY (%s)
\n
"
,
ap
->
id
,
dev
->
devno
,
reason
);
ata_dev_printk
(
dev
,
KERN_WARNING
,
"failed to IDENTIFY "
"(%s, err_mask=0x%x)
\n
"
,
reason
,
err_mask
);
return
rc
;
}
...
...
@@ -1228,10 +1228,10 @@ static int ata_dev_configure(struct ata_device *dev, int print_info)
/* print device capabilities */
if
(
print_info
)
printk
(
KERN_DEBUG
"ata%u: dev %u
cfg 49:%04x 82:%04x 83:%04x "
"84:%04x 85:%04x 86:%04x 87:%04x 88:%04x
\n
"
,
ap
->
id
,
dev
->
devno
,
id
[
49
],
id
[
82
],
id
[
83
],
id
[
84
],
id
[
85
],
id
[
86
],
id
[
87
],
id
[
88
]);
ata_dev_printk
(
dev
,
KERN_DEBUG
,
"
cfg 49:%04x 82:%04x 83:%04x "
"84:%04x 85:%04x 86:%04x 87:%04x 88:%04x
\n
"
,
id
[
49
],
id
[
82
],
id
[
83
],
id
[
84
],
id
[
85
],
id
[
86
],
id
[
87
],
id
[
88
]);
/* initialize to-be-configured parameters */
dev
->
flags
&=
~
ATA_DFLAG_CFG_MASK
;
...
...
@@ -1267,13 +1267,12 @@ static int ata_dev_configure(struct ata_device *dev, int print_info)
/* print device info to dmesg */
if
(
print_info
)
printk
(
KERN_INFO
"ata%u: dev %u ATA-%d, "
"max %s, %Lu sectors: %s
\n
"
,
ap
->
id
,
dev
->
devno
,
ata_id_major_version
(
id
),
ata_mode_string
(
xfer_mask
),
(
unsigned
long
long
)
dev
->
n_sectors
,
lba_desc
);
ata_dev_printk
(
dev
,
KERN_INFO
,
"ATA-%d, "
"max %s, %Lu sectors: %s
\n
"
,
ata_id_major_version
(
id
),
ata_mode_string
(
xfer_mask
),
(
unsigned
long
long
)
dev
->
n_sectors
,
lba_desc
);
}
else
{
/* CHS */
...
...
@@ -1291,13 +1290,12 @@ static int ata_dev_configure(struct ata_device *dev, int print_info)
/* print device info to dmesg */
if
(
print_info
)
printk
(
KERN_INFO
"ata%u: dev %u ATA-%d, "
"max %s, %Lu sectors: CHS %u/%u/%u
\n
"
,
ap
->
id
,
dev
->
devno
,
ata_id_major_version
(
id
),
ata_mode_string
(
xfer_mask
),
(
unsigned
long
long
)
dev
->
n_sectors
,
dev
->
cylinders
,
dev
->
heads
,
dev
->
sectors
);
ata_dev_printk
(
dev
,
KERN_INFO
,
"ATA-%d, "
"max %s, %Lu sectors: CHS %u/%u/%u
\n
"
,
ata_id_major_version
(
id
),
ata_mode_string
(
xfer_mask
),
(
unsigned
long
long
)
dev
->
n_sectors
,
dev
->
cylinders
,
dev
->
heads
,
dev
->
sectors
);
}
dev
->
cdb_len
=
16
;
...
...
@@ -1307,7 +1305,8 @@ static int ata_dev_configure(struct ata_device *dev, int print_info)
else
if
(
dev
->
class
==
ATA_DEV_ATAPI
)
{
rc
=
atapi_cdb_len
(
id
);
if
((
rc
<
12
)
||
(
rc
>
ATAPI_CDB_LEN
))
{
printk
(
KERN_WARNING
"ata%u: unsupported CDB len
\n
"
,
ap
->
id
);
ata_dev_printk
(
dev
,
KERN_WARNING
,
"unsupported CDB len
\n
"
);
rc
=
-
EINVAL
;
goto
err_out_nosup
;
}
...
...
@@ -1315,8 +1314,8 @@ static int ata_dev_configure(struct ata_device *dev, int print_info)
/* print device info to dmesg */
if
(
print_info
)
printk
(
KERN_INFO
"ata%u: dev %u
ATAPI, max %s
\n
"
,
ap
->
id
,
dev
->
devno
,
ata_mode_string
(
xfer_mask
));
ata_dev_printk
(
dev
,
KERN_INFO
,
"
ATAPI, max %s
\n
"
,
ata_mode_string
(
xfer_mask
));
}
ap
->
host
->
max_cmd_len
=
0
;
...
...
@@ -1328,8 +1327,8 @@ static int ata_dev_configure(struct ata_device *dev, int print_info)
/* limit bridge transfers to udma5, 200 sectors */
if
(
ata_dev_knobble
(
dev
))
{
if
(
print_info
)
printk
(
KERN_INFO
"ata%u(%u): applying bridge limits
\n
"
,
ap
->
id
,
dev
->
devno
);
ata_dev_printk
(
dev
,
KERN_INFO
,
"applying bridge limits
\n
"
);
dev
->
udma_mask
&=
ATA_UDMA5
;
dev
->
max_sectors
=
ATA_MAX_SECTORS
;
}
...
...
@@ -1382,7 +1381,8 @@ static int ata_bus_probe(struct ata_port *ap)
if
(
ap
->
ops
->
probe_reset
)
{
rc
=
ap
->
ops
->
probe_reset
(
ap
,
classes
);
if
(
rc
)
{
printk
(
"ata%u: reset failed (errno=%d)
\n
"
,
ap
->
id
,
rc
);
ata_port_printk
(
ap
,
KERN_ERR
,
"reset failed (errno=%d)
\n
"
,
rc
);
return
rc
;
}
}
else
{
...
...
@@ -1495,13 +1495,13 @@ static void sata_print_link_status(struct ata_port *ap)
if
(
ata_port_online
(
ap
))
{
tmp
=
(
sstatus
>>
4
)
&
0xf
;
printk
(
KERN_INFO
"ata%u:
SATA link up %s (SStatus %X SControl %X)
\n
"
,
ap
->
id
,
sata_spd_string
(
tmp
),
sstatus
,
scontrol
);
ata_port_printk
(
ap
,
KERN_INFO
,
"
SATA link up %s (SStatus %X SControl %X)
\n
"
,
sata_spd_string
(
tmp
),
sstatus
,
scontrol
);
}
else
{
printk
(
KERN_INFO
"ata%u:
SATA link down (SStatus %X SControl %X)
\n
"
,
ap
->
id
,
sstatus
,
scontrol
);
ata_port_printk
(
ap
,
KERN_INFO
,
"
SATA link down (SStatus %X SControl %X)
\n
"
,
sstatus
,
scontrol
);
}
}
...
...
@@ -1655,8 +1655,8 @@ int sata_down_spd_limit(struct ata_port *ap)
ap
->
sata_spd_limit
=
mask
;
printk
(
KERN_WARNING
"ata%u:
limiting SATA link speed to %s
\n
"
,
ap
->
id
,
sata_spd_string
(
fls
(
mask
)));
ata_port_printk
(
ap
,
KERN_WARNING
,
"
limiting SATA link speed to %s
\n
"
,
sata_spd_string
(
fls
(
mask
)));
return
0
;
}
...
...
@@ -1896,7 +1896,6 @@ int ata_timing_compute(struct ata_device *adev, unsigned short speed,
*/
int
ata_down_xfermask_limit
(
struct
ata_device
*
dev
,
int
force_pio0
)
{
struct
ata_port
*
ap
=
dev
->
ap
;
unsigned
long
xfer_mask
;
int
highbit
;
...
...
@@ -1919,8 +1918,8 @@ int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0)
ata_unpack_xfermask
(
xfer_mask
,
&
dev
->
pio_mask
,
&
dev
->
mwdma_mask
,
&
dev
->
udma_mask
);
printk
(
KERN_WARNING
"ata%u: dev %u
limiting speed to %s
\n
"
,
ap
->
id
,
dev
->
devno
,
ata_mode_string
(
xfer_mask
));
ata_dev_printk
(
dev
,
KERN_WARNING
,
"
limiting speed to %s
\n
"
,
ata_mode_string
(
xfer_mask
));
return
0
;
...
...
@@ -1930,7 +1929,6 @@ int ata_down_xfermask_limit(struct ata_device *dev, int force_pio0)
static
int
ata_dev_set_mode
(
struct
ata_device
*
dev
)
{
struct
ata_port
*
ap
=
dev
->
ap
;
unsigned
int
err_mask
;
int
rc
;
...
...
@@ -1940,9 +1938,8 @@ static int ata_dev_set_mode(struct ata_device *dev)
err_mask
=
ata_dev_set_xfermode
(
dev
);
if
(
err_mask
)
{
printk
(
KERN_ERR
"ata%u: failed to set xfermode (err_mask=0x%x)
\n
"
,
ap
->
id
,
err_mask
);
ata_dev_printk
(
dev
,
KERN_ERR
,
"failed to set xfermode "
"(err_mask=0x%x)
\n
"
,
err_mask
);
return
-
EIO
;
}
...
...
@@ -1953,9 +1950,8 @@ static int ata_dev_set_mode(struct ata_device *dev)
DPRINTK
(
"xfer_shift=%u, xfer_mode=0x%x
\n
"
,
dev
->
xfer_shift
,
(
int
)
dev
->
xfer_mode
);
printk
(
KERN_INFO
"ata%u: dev %u configured for %s
\n
"
,
ap
->
id
,
dev
->
devno
,
ata_mode_string
(
ata_xfer_mode2mask
(
dev
->
xfer_mode
)));
ata_dev_printk
(
dev
,
KERN_INFO
,
"configured for %s
\n
"
,
ata_mode_string
(
ata_xfer_mode2mask
(
dev
->
xfer_mode
)));
return
0
;
}
...
...
@@ -2023,8 +2019,7 @@ int ata_set_mode(struct ata_port *ap, struct ata_device **r_failed_dev)
continue
;
if
(
!
dev
->
pio_mode
)
{
printk
(
KERN_WARNING
"ata%u: dev %u no PIO support
\n
"
,
ap
->
id
,
dev
->
devno
);
ata_dev_printk
(
dev
,
KERN_WARNING
,
"no PIO support
\n
"
);
rc
=
-
EINVAL
;
goto
out
;
}
...
...
@@ -2123,8 +2118,8 @@ unsigned int ata_busy_sleep (struct ata_port *ap,
}
if
(
status
&
ATA_BUSY
)
printk
(
KERN_WARNING
"ata%u is slow to respond, "
"please be patient
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_WARNING
,
"port is slow to respond, please be patient
\n
"
);
timeout
=
timer_start
+
tmout
;
while
((
status
&
ATA_BUSY
)
&&
(
time_before
(
jiffies
,
timeout
)))
{
...
...
@@ -2133,8 +2128,8 @@ unsigned int ata_busy_sleep (struct ata_port *ap,
}
if
(
status
&
ATA_BUSY
)
{
printk
(
KERN_ERR
"ata%u failed to respond (%lu secs)
\n
"
,
ap
->
id
,
tmout
/
HZ
);
ata_port_printk
(
ap
,
KERN_ERR
,
"port failed to respond "
"(%lu secs)
\n
"
,
tmout
/
HZ
);
return
1
;
}
...
...
@@ -2227,7 +2222,7 @@ static unsigned int ata_bus_softreset(struct ata_port *ap,
* pulldown resistor.
*/
if
(
ata_check_status
(
ap
)
==
0xFF
)
{
printk
(
KERN_ERR
"ata%u: SRST failed (status 0xFF)
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_ERR
,
"SRST failed (status 0xFF)
\n
"
);
return
AC_ERR_OTHER
;
}
...
...
@@ -2321,7 +2316,7 @@ void ata_bus_reset(struct ata_port *ap)
return
;
err_out:
printk
(
KERN_ERR
"ata%u: disabling port
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_ERR
,
"disabling port
\n
"
);
ap
->
ops
->
port_disable
(
ap
);
DPRINTK
(
"EXIT
\n
"
);
...
...
@@ -2424,8 +2419,8 @@ int ata_std_softreset(struct ata_port *ap, unsigned int *classes)
DPRINTK
(
"about to softreset, devmask=%x
\n
"
,
devmask
);
err_mask
=
ata_bus_softreset
(
ap
,
devmask
);
if
(
err_mask
)
{
printk
(
KERN_ERR
"ata%u:
SRST failed (err_mask=0x%x)
\n
"
,
ap
->
id
,
err_mask
);
ata_port_printk
(
ap
,
KERN_ERR
,
"
SRST failed (err_mask=0x%x)
\n
"
,
err_mask
);
return
-
EIO
;
}
...
...
@@ -2503,8 +2498,8 @@ int sata_std_hardreset(struct ata_port *ap, unsigned int *class)
}
if
(
ata_busy_sleep
(
ap
,
ATA_TMOUT_BOOT_QUICK
,
ATA_TMOUT_BOOT
))
{
printk
(
KERN_ERR
"ata%u: COMRESET failed (device not ready)
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_ERR
,
"COMRESET failed (device not ready)
\n
"
);
return
-
EIO
;
}
...
...
@@ -2662,8 +2657,8 @@ int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
rc
=
ata_do_reset
(
ap
,
softreset
,
classes
);
if
(
rc
==
0
&&
classes
[
0
]
!=
ATA_DEV_UNKNOWN
)
goto
done
;
printk
(
KERN_INFO
"ata%u: softreset failed, will try
"
"hardreset in 5 secs
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_INFO
,
"softreset failed,
"
"will try hardreset in 5 secs
\n
"
);
ssleep
(
5
);
}
...
...
@@ -2681,15 +2676,15 @@ int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
if
(
sata_down_spd_limit
(
ap
))
goto
done
;
printk
(
KERN_INFO
"ata%u: hardreset failed, will retry
"
"in 5 secs
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_INFO
,
"hardreset failed,
"
"will retry in 5 secs
\n
"
);
ssleep
(
5
);
}
if
(
softreset
)
{
printk
(
KERN_INFO
"ata%u: hardreset succeeded without "
"classification, will retry softreset in 5 secs
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_INFO
,
"hardreset succeeded without classification, "
"will retry softreset in 5 secs
\n
"
);
ssleep
(
5
);
rc
=
ata_do_reset
(
ap
,
softreset
,
classes
);
...
...
@@ -2724,15 +2719,13 @@ int ata_drive_probe_reset(struct ata_port *ap, ata_probeinit_fn_t probeinit,
static
int
ata_dev_same_device
(
struct
ata_device
*
dev
,
unsigned
int
new_class
,
const
u16
*
new_id
)
{
struct
ata_port
*
ap
=
dev
->
ap
;
const
u16
*
old_id
=
dev
->
id
;
unsigned
char
model
[
2
][
41
],
serial
[
2
][
21
];
u64
new_n_sectors
;
if
(
dev
->
class
!=
new_class
)
{
printk
(
KERN_INFO
"ata%u: dev %u class mismatch %d != %d
\n
"
,
ap
->
id
,
dev
->
devno
,
dev
->
class
,
new_class
);
ata_dev_printk
(
dev
,
KERN_INFO
,
"class mismatch %d != %d
\n
"
,
dev
->
class
,
new_class
);
return
0
;
}
...
...
@@ -2743,24 +2736,22 @@ static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
new_n_sectors
=
ata_id_n_sectors
(
new_id
);
if
(
strcmp
(
model
[
0
],
model
[
1
]))
{
printk
(
KERN_INFO
"ata%u: dev %u model number mismatch '%s' != '%s'
\n
"
,
ap
->
id
,
dev
->
devno
,
model
[
0
],
model
[
1
]);
ata_dev_printk
(
dev
,
KERN_INFO
,
"model number mismatch "
"'%s' != '%s'
\n
"
,
model
[
0
],
model
[
1
]);
return
0
;
}
if
(
strcmp
(
serial
[
0
],
serial
[
1
]))
{
printk
(
KERN_INFO
"ata%u: dev %u serial number mismatch '%s' != '%s'
\n
"
,
ap
->
id
,
dev
->
devno
,
serial
[
0
],
serial
[
1
]);
ata_dev_printk
(
dev
,
KERN_INFO
,
"serial number mismatch "
"'%s' != '%s'
\n
"
,
serial
[
0
],
serial
[
1
]);
return
0
;
}
if
(
dev
->
class
==
ATA_DEV_ATA
&&
dev
->
n_sectors
!=
new_n_sectors
)
{
printk
(
KERN_INFO
"ata%u: dev %u n_sectors mismatch
%llu != %llu
\n
"
,
ap
->
id
,
dev
->
devno
,
(
unsigned
long
long
)
dev
->
n_sectors
,
(
unsigned
long
long
)
new_n_sectors
);
ata_dev_printk
(
dev
,
KERN_INFO
,
"n_sectors mismatch "
"
%llu != %llu
\n
"
,
(
unsigned
long
long
)
dev
->
n_sectors
,
(
unsigned
long
long
)
new_n_sectors
);
return
0
;
}
...
...
@@ -2783,9 +2774,8 @@ static int ata_dev_same_device(struct ata_device *dev, unsigned int new_class,
*/
int
ata_dev_revalidate
(
struct
ata_device
*
dev
,
int
post_reset
)
{
struct
ata_port
*
ap
=
dev
->
ap
;
unsigned
int
class
=
dev
->
class
;
u16
*
id
=
(
void
*
)
ap
->
sector_buf
;
u16
*
id
=
(
void
*
)
dev
->
ap
->
sector_buf
;
int
rc
;
if
(
!
ata_dev_enabled
(
dev
))
{
...
...
@@ -2812,8 +2802,7 @@ int ata_dev_revalidate(struct ata_device *dev, int post_reset)
return
0
;
fail:
printk
(
KERN_ERR
"ata%u: dev %u revalidation failed (errno=%d)
\n
"
,
ap
->
id
,
dev
->
devno
,
rc
);
ata_dev_printk
(
dev
,
KERN_ERR
,
"revalidation failed (errno=%d)
\n
"
,
rc
);
return
rc
;
}
...
...
@@ -2941,8 +2930,8 @@ static void ata_dev_xfermask(struct ata_device *dev)
}
if
(
ata_dma_blacklisted
(
dev
))
printk
(
KERN_WARNING
"ata%u: dev %u is on DMA blacklist, "
"disabling DMA
\n
"
,
ap
->
id
,
dev
->
devno
);
ata_dev_printk
(
dev
,
KERN_WARNING
,
"device is on DMA blacklist, disabling DMA
\n
"
);
if
(
hs
->
flags
&
ATA_HOST_SIMPLEX
)
{
if
(
hs
->
simplex_claimed
)
...
...
@@ -3733,8 +3722,8 @@ static void __atapi_pio_bytes(struct ata_queued_cmd *qc, unsigned int bytes)
unsigned
int
i
;
if
(
words
)
/* warning if bytes > 1 */
printk
(
KERN_WARNING
"ata%u: %u bytes trailing data
\n
"
,
ap
->
id
,
bytes
);
ata_dev_printk
(
qc
->
dev
,
KERN_WARNING
,
"%u bytes trailing data
\n
"
,
bytes
);
for
(
i
=
0
;
i
<
words
;
i
++
)
ata_data_xfer
(
ap
,
(
unsigned
char
*
)
pad_buf
,
2
,
do_write
);
...
...
@@ -3817,8 +3806,7 @@ static void atapi_pio_bytes(struct ata_queued_cmd *qc)
return
;
err_out:
printk
(
KERN_INFO
"ata%u: dev %u: ATAPI check failed
\n
"
,
ap
->
id
,
dev
->
devno
);
ata_dev_printk
(
dev
,
KERN_INFO
,
"ATAPI check failed
\n
"
);
qc
->
err_mask
|=
AC_ERR_HSM
;
ap
->
hsm_task_state
=
HSM_ST_ERR
;
}
...
...
@@ -3887,8 +3875,7 @@ static void ata_pio_error(struct ata_queued_cmd *qc)
struct
ata_port
*
ap
=
qc
->
ap
;
if
(
qc
->
tf
.
command
!=
ATA_CMD_PACKET
)
printk
(
KERN_WARNING
"ata%u: dev %u PIO error
\n
"
,
ap
->
id
,
qc
->
dev
->
devno
);
ata_dev_printk
(
qc
->
dev
,
KERN_WARNING
,
"PIO error
\n
"
);
/* make sure qc->err_mask is available to
* know what's wrong and recover
...
...
@@ -4314,7 +4301,7 @@ inline unsigned int ata_host_intr (struct ata_port *ap,
#ifdef ATA_IRQ_TRAP
if
((
ap
->
stats
.
idle_irq
%
1000
)
==
0
)
{
ata_irq_ack
(
ap
,
0
);
/* debug trap */
printk
(
KERN_WARNING
"ata%d: irq trap
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_WARNING
,
"irq trap
\n
"
);
return
1
;
}
#endif
...
...
@@ -4522,8 +4509,8 @@ static int ata_do_simple_cmd(struct ata_device *dev, u8 cmd)
err
=
ata_exec_internal
(
dev
,
&
tf
,
NULL
,
DMA_NONE
,
NULL
,
0
);
if
(
err
)
printk
(
KERN_ERR
"%s: ata command failed: %d
\n
"
,
__FUNCTION__
,
err
);
ata_dev_printk
(
dev
,
KERN_ERR
,
"%s: ata command failed: %d
\n
"
,
__FUNCTION__
,
err
);
return
err
;
}
...
...
@@ -4863,15 +4850,14 @@ int ata_device_add(const struct ata_probe_ent *ent)
(
ap
->
pio_mask
<<
ATA_SHIFT_PIO
);
/* print per-port info to dmesg */
printk
(
KERN_INFO
"ata%u: %cATA max %s cmd 0x%lX ctl 0x%lX "
"bmdma 0x%lX irq %lu
\n
"
,
ap
->
id
,
ap
->
flags
&
ATA_FLAG_SATA
?
'S'
:
'P'
,
ata_mode_string
(
xfer_mode_mask
),
ap
->
ioaddr
.
cmd_addr
,
ap
->
ioaddr
.
ctl_addr
,
ap
->
ioaddr
.
bmdma_addr
,
ent
->
irq
);
ata_port_printk
(
ap
,
KERN_INFO
,
"%cATA max %s cmd 0x%lX "
"ctl 0x%lX bmdma 0x%lX irq %lu
\n
"
,
ap
->
flags
&
ATA_FLAG_SATA
?
'S'
:
'P'
,
ata_mode_string
(
xfer_mode_mask
),
ap
->
ioaddr
.
cmd_addr
,
ap
->
ioaddr
.
ctl_addr
,
ap
->
ioaddr
.
bmdma_addr
,
ent
->
irq
);
ata_chk_status
(
ap
);
host_set
->
ops
->
irq_clear
(
ap
);
...
...
@@ -4909,8 +4895,7 @@ int ata_device_add(const struct ata_probe_ent *ent)
rc
=
scsi_add_host
(
ap
->
host
,
dev
);
if
(
rc
)
{
printk
(
KERN_ERR
"ata%u: scsi_add_host failed
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_ERR
,
"scsi_add_host failed
\n
"
);
/* FIXME: do something useful here */
/* FIXME: handle unconditional calls to
* scsi_scan_host and ata_host_remove, below,
...
...
drivers/scsi/libata-eh.c
浏览文件 @
f15a1daf
...
...
@@ -167,8 +167,9 @@ static void ata_qc_timeout(struct ata_queued_cmd *qc)
/* ack bmdma irq events */
ap
->
ops
->
irq_clear
(
ap
);
printk
(
KERN_ERR
"ata%u: command 0x%x timeout, stat 0x%x host_stat 0x%x
\n
"
,
ap
->
id
,
qc
->
tf
.
command
,
drv_stat
,
host_stat
);
ata_dev_printk
(
qc
->
dev
,
KERN_ERR
,
"command 0x%x timeout, "
"stat 0x%x host_stat 0x%x
\n
"
,
qc
->
tf
.
command
,
drv_stat
,
host_stat
);
/* complete taskfile transaction */
qc
->
err_mask
|=
ac_err_mask
(
drv_stat
);
...
...
drivers/scsi/libata-scsi.c
浏览文件 @
f15a1daf
...
...
@@ -1261,8 +1261,8 @@ static void ata_scsi_translate(struct ata_device *dev, struct scsi_cmnd *cmd,
if
(
cmd
->
sc_data_direction
==
DMA_FROM_DEVICE
||
cmd
->
sc_data_direction
==
DMA_TO_DEVICE
)
{
if
(
unlikely
(
cmd
->
request_bufflen
<
1
))
{
printk
(
KERN_WARNING
"ata%u(%u): WARNING: zero len r/w req
\n
"
,
dev
->
ap
->
id
,
dev
->
devno
);
ata_dev_printk
(
dev
,
KERN_WARNING
,
"WARNING: zero len r/w req
\n
"
);
goto
err_did
;
}
...
...
@@ -2200,8 +2200,9 @@ ata_scsi_find_dev(struct ata_port *ap, const struct scsi_device *scsidev)
if
(
!
atapi_enabled
||
(
ap
->
flags
&
ATA_FLAG_NO_ATAPI
))
{
if
(
unlikely
(
dev
->
class
==
ATA_DEV_ATAPI
))
{
printk
(
KERN_WARNING
"ata%u(%u): WARNING: ATAPI is %s, device ignored.
\n
"
,
ap
->
id
,
dev
->
devno
,
atapi_enabled
?
"not supported with this driver"
:
"disabled"
);
ata_dev_printk
(
dev
,
KERN_WARNING
,
"WARNING: ATAPI is %s, device ignored.
\n
"
,
atapi_enabled
?
"not supported with this driver"
:
"disabled"
);
return
NULL
;
}
}
...
...
drivers/scsi/sata_mv.c
浏览文件 @
f15a1daf
...
...
@@ -680,7 +680,7 @@ static void mv_stop_dma(struct ata_port *ap)
}
if
(
EDMA_EN
&
reg
)
{
printk
(
KERN_ERR
"ata%u: Unable to stop eDMA
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_ERR
,
"Unable to stop eDMA
\n
"
);
/* FIXME: Consider doing a reset here to recover */
}
}
...
...
@@ -1964,8 +1964,8 @@ static void __mv_phy_reset(struct ata_port *ap, int can_sleep)
ata_port_probe
(
ap
);
}
else
{
sata_scr_read
(
ap
,
SCR_STATUS
,
&
sstatus
);
printk
(
KERN_INFO
"ata%u: no device found (phy stat %08x)
\n
"
,
ap
->
id
,
sstatus
);
ata_port_printk
(
ap
,
KERN_INFO
,
"no device found (phy stat %08x)
\n
"
,
sstatus
);
ata_port_disable
(
ap
);
return
;
}
...
...
@@ -2023,7 +2023,7 @@ static void mv_eng_timeout(struct ata_port *ap)
{
struct
ata_queued_cmd
*
qc
;
printk
(
KERN_ERR
"ata%u: Entering mv_eng_timeout
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_ERR
,
"Entering mv_eng_timeout
\n
"
);
DPRINTK
(
"All regs @ start of eng_timeout
\n
"
);
mv_dump_all_regs
(
ap
->
host_set
->
mmio_base
,
ap
->
port_no
,
to_pci_dev
(
ap
->
host_set
->
dev
));
...
...
drivers/scsi/sata_promise.c
浏览文件 @
f15a1daf
...
...
@@ -435,7 +435,7 @@ static void pdc_eng_timeout(struct ata_port *ap)
switch
(
qc
->
tf
.
protocol
)
{
case
ATA_PROT_DMA
:
case
ATA_PROT_NODATA
:
printk
(
KERN_ERR
"ata%u: command timeout
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_ERR
,
"command timeout
\n
"
);
drv_stat
=
ata_wait_idle
(
ap
);
qc
->
err_mask
|=
__ac_err_mask
(
drv_stat
);
break
;
...
...
@@ -443,8 +443,9 @@ static void pdc_eng_timeout(struct ata_port *ap)
default:
drv_stat
=
ata_busy_wait
(
ap
,
ATA_BUSY
|
ATA_DRQ
,
1000
);
printk
(
KERN_ERR
"ata%u: unknown timeout, cmd 0x%x stat 0x%x
\n
"
,
ap
->
id
,
qc
->
tf
.
command
,
drv_stat
);
ata_port_printk
(
ap
,
KERN_ERR
,
"unknown timeout, cmd 0x%x stat 0x%x
\n
"
,
qc
->
tf
.
command
,
drv_stat
);
qc
->
err_mask
|=
ac_err_mask
(
drv_stat
);
break
;
...
...
drivers/scsi/sata_sil.c
浏览文件 @
f15a1daf
...
...
@@ -360,16 +360,16 @@ static void sil_dev_config(struct ata_port *ap, struct ata_device *dev)
if
(
slow_down
||
((
ap
->
flags
&
SIL_FLAG_MOD15WRITE
)
&&
(
quirks
&
SIL_QUIRK_MOD15WRITE
)))
{
printk
(
KERN_INFO
"ata%u(%u): applying Seagate errata fix (mod15write workaround)
\n
"
,
ap
->
id
,
dev
->
devno
);
ata_dev_printk
(
dev
,
KERN_INFO
,
"applying Seagate errata fix "
"(mod15write workaround)
\n
"
);
dev
->
max_sectors
=
15
;
return
;
}
/* limit to udma5 */
if
(
quirks
&
SIL_QUIRK_UDMA5MAX
)
{
printk
(
KERN_INFO
"ata%u(%u): applying Maxtor errata fix %s
\n
"
,
ap
->
id
,
dev
->
devno
,
model_num
);
ata_dev_printk
(
dev
,
KERN_INFO
,
"applying Maxtor errata fix %s
\n
"
,
model_num
);
dev
->
udma_mask
&=
ATA_UDMA5
;
return
;
}
...
...
drivers/scsi/sata_sil24.c
浏览文件 @
f15a1daf
...
...
@@ -516,7 +516,7 @@ static int sil24_softreset(struct ata_port *ap, unsigned int *class)
return
0
;
err:
printk
(
KERN_ERR
"ata%u: softreset failed (%s)
\n
"
,
ap
->
id
,
reason
);
ata_port_printk
(
ap
,
KERN_ERR
,
"softreset failed (%s)
\n
"
,
reason
);
return
-
EIO
;
}
...
...
@@ -561,7 +561,7 @@ static int sil24_hardreset(struct ata_port *ap, unsigned int *class)
return
0
;
err:
printk
(
KERN_ERR
"ata%u: hardreset failed (%s)
\n
"
,
ap
->
id
,
reason
);
ata_port_printk
(
ap
,
KERN_ERR
,
"hardreset failed (%s)
\n
"
,
reason
);
return
-
EIO
;
}
...
...
@@ -721,7 +721,7 @@ static void sil24_eng_timeout(struct ata_port *ap)
qc
=
ata_qc_from_tag
(
ap
,
ap
->
active_tag
);
printk
(
KERN_ERR
"ata%u: command timeout
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_ERR
,
"command timeout
\n
"
);
qc
->
err_mask
|=
AC_ERR_TIMEOUT
;
ata_eh_qc_complete
(
qc
);
...
...
drivers/scsi/sata_sx4.c
浏览文件 @
f15a1daf
...
...
@@ -868,15 +868,16 @@ static void pdc_eng_timeout(struct ata_port *ap)
switch
(
qc
->
tf
.
protocol
)
{
case
ATA_PROT_DMA
:
case
ATA_PROT_NODATA
:
printk
(
KERN_ERR
"ata%u: command timeout
\n
"
,
ap
->
id
);
ata_port_printk
(
ap
,
KERN_ERR
,
"command timeout
\n
"
);
qc
->
err_mask
|=
__ac_err_mask
(
ata_wait_idle
(
ap
));
break
;
default:
drv_stat
=
ata_busy_wait
(
ap
,
ATA_BUSY
|
ATA_DRQ
,
1000
);
printk
(
KERN_ERR
"ata%u: unknown timeout, cmd 0x%x stat 0x%x
\n
"
,
ap
->
id
,
qc
->
tf
.
command
,
drv_stat
);
ata_port_printk
(
ap
,
KERN_ERR
,
"unknown timeout, cmd 0x%x stat 0x%x
\n
"
,
qc
->
tf
.
command
,
drv_stat
);
qc
->
err_mask
|=
ac_err_mask
(
drv_stat
);
break
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录