Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
6f85fb81
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
5
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
6f85fb81
编写于
6月 19, 2005
作者:
L
Linus Torvalds
浏览文件
操作
浏览文件
下载
差异文件
Merge 'scsi-fixes' branch of
rsync://rsync.kernel.org/pub/scm/linux/kernel/git/jgarzik/misc-2.6
上级
d411b845
e632ba11
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
6 addition
and
8 deletion
+6
-8
drivers/fc4/fc.c
drivers/fc4/fc.c
+2
-4
drivers/scsi/aic7xxx/aic79xx_osm.c
drivers/scsi/aic7xxx/aic79xx_osm.c
+4
-4
未找到文件。
drivers/fc4/fc.c
浏览文件 @
6f85fb81
...
...
@@ -765,8 +765,6 @@ void fcp_release(fc_channel *fcchain, int count) /* count must > 0 */
static
void
fcp_scsi_done
(
Scsi_Cmnd
*
SCpnt
)
{
unsigned
long
flags
;
if
(
FCP_CMND
(
SCpnt
)
->
done
)
FCP_CMND
(
SCpnt
)
->
done
(
SCpnt
);
}
...
...
@@ -907,8 +905,6 @@ int fcp_scsi_abort(Scsi_Cmnd *SCpnt)
*/
if
(
++
fc
->
abort_count
<
(
fc
->
can_queue
>>
1
))
{
unsigned
long
flags
;
SCpnt
->
result
=
DID_ABORT
;
fcmd
->
done
(
SCpnt
);
printk
(
"FC: soft abort
\n
"
);
...
...
@@ -931,6 +927,7 @@ void fcp_scsi_reset_done(Scsi_Cmnd *SCpnt)
int
fcp_scsi_dev_reset
(
Scsi_Cmnd
*
SCpnt
)
{
unsigned
long
flags
;
fcp_cmd
*
cmd
;
fcp_cmnd
*
fcmd
;
fc_channel
*
fc
=
FC_SCMND
(
SCpnt
);
...
...
@@ -1028,6 +1025,7 @@ static int __fcp_scsi_host_reset(Scsi_Cmnd *SCpnt)
int
fcp_scsi_host_reset
(
Scsi_Cmnd
*
SCpnt
)
{
unsigned
long
flags
;
int
rc
;
spin_lock_irqsave
(
SCpnt
->
device
->
host
->
host_lock
,
flags
);
...
...
drivers/scsi/aic7xxx/aic79xx_osm.c
浏览文件 @
6f85fb81
...
...
@@ -941,7 +941,7 @@ ahd_linux_queue(Scsi_Cmnd * cmd, void (*scsi_done) (Scsi_Cmnd *))
*/
cmd
->
scsi_done
=
scsi_done
;
ahd_lock
(
ahd
,
&
flags
);
ahd_
midlayer_entrypoint_
lock
(
ahd
,
&
flags
);
/*
* Close the race of a command that was in the process of
...
...
@@ -955,7 +955,7 @@ ahd_linux_queue(Scsi_Cmnd * cmd, void (*scsi_done) (Scsi_Cmnd *))
ahd_cmd_set_transaction_status
(
cmd
,
CAM_REQUEUE_REQ
);
ahd_linux_queue_cmd_complete
(
ahd
,
cmd
);
ahd_schedule_completeq
(
ahd
);
ahd_unlock
(
ahd
,
&
flags
);
ahd_
midlayer_entrypoint_
unlock
(
ahd
,
&
flags
);
return
(
0
);
}
dev
=
ahd_linux_get_device
(
ahd
,
cmd
->
device
->
channel
,
...
...
@@ -965,7 +965,7 @@ ahd_linux_queue(Scsi_Cmnd * cmd, void (*scsi_done) (Scsi_Cmnd *))
ahd_cmd_set_transaction_status
(
cmd
,
CAM_RESRC_UNAVAIL
);
ahd_linux_queue_cmd_complete
(
ahd
,
cmd
);
ahd_schedule_completeq
(
ahd
);
ahd_unlock
(
ahd
,
&
flags
);
ahd_
midlayer_entrypoint_
unlock
(
ahd
,
&
flags
);
printf
(
"%s: aic79xx_linux_queue - Unable to allocate device!
\n
"
,
ahd_name
(
ahd
));
return
(
0
);
...
...
@@ -979,7 +979,7 @@ ahd_linux_queue(Scsi_Cmnd * cmd, void (*scsi_done) (Scsi_Cmnd *))
dev
->
flags
|=
AHD_DEV_ON_RUN_LIST
;
ahd_linux_run_device_queues
(
ahd
);
}
ahd_unlock
(
ahd
,
&
flags
);
ahd_
midlayer_entrypoint_
unlock
(
ahd
,
&
flags
);
return
(
0
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录