Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
ed6de456
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
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看板
提交
ed6de456
编写于
2月 09, 2017
作者:
J
James Bottomley
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'mkp-scsi/4.10/scsi-fixes' into fixes
上级
ad3efdb7
2dfa6688
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
13 addition
and
6 deletion
+13
-6
drivers/s390/scsi/zfcp_fsf.c
drivers/s390/scsi/zfcp_fsf.c
+4
-4
drivers/scsi/aacraid/comminit.c
drivers/scsi/aacraid/comminit.c
+6
-2
drivers/scsi/mpt3sas/mpt3sas_scsih.c
drivers/scsi/mpt3sas/mpt3sas_scsih.c
+3
-0
未找到文件。
drivers/s390/scsi/zfcp_fsf.c
浏览文件 @
ed6de456
...
...
@@ -1583,7 +1583,7 @@ static void zfcp_fsf_open_wka_port_handler(struct zfcp_fsf_req *req)
int
zfcp_fsf_open_wka_port
(
struct
zfcp_fc_wka_port
*
wka_port
)
{
struct
zfcp_qdio
*
qdio
=
wka_port
->
adapter
->
qdio
;
struct
zfcp_fsf_req
*
req
=
NULL
;
struct
zfcp_fsf_req
*
req
;
int
retval
=
-
EIO
;
spin_lock_irq
(
&
qdio
->
req_q_lock
);
...
...
@@ -1612,7 +1612,7 @@ int zfcp_fsf_open_wka_port(struct zfcp_fc_wka_port *wka_port)
zfcp_fsf_req_free
(
req
);
out:
spin_unlock_irq
(
&
qdio
->
req_q_lock
);
if
(
req
&&
!
IS_ERR
(
req
)
)
if
(
!
retval
)
zfcp_dbf_rec_run_wka
(
"fsowp_1"
,
wka_port
,
req
->
req_id
);
return
retval
;
}
...
...
@@ -1638,7 +1638,7 @@ static void zfcp_fsf_close_wka_port_handler(struct zfcp_fsf_req *req)
int
zfcp_fsf_close_wka_port
(
struct
zfcp_fc_wka_port
*
wka_port
)
{
struct
zfcp_qdio
*
qdio
=
wka_port
->
adapter
->
qdio
;
struct
zfcp_fsf_req
*
req
=
NULL
;
struct
zfcp_fsf_req
*
req
;
int
retval
=
-
EIO
;
spin_lock_irq
(
&
qdio
->
req_q_lock
);
...
...
@@ -1667,7 +1667,7 @@ int zfcp_fsf_close_wka_port(struct zfcp_fc_wka_port *wka_port)
zfcp_fsf_req_free
(
req
);
out:
spin_unlock_irq
(
&
qdio
->
req_q_lock
);
if
(
req
&&
!
IS_ERR
(
req
)
)
if
(
!
retval
)
zfcp_dbf_rec_run_wka
(
"fscwp_1"
,
wka_port
,
req
->
req_id
);
return
retval
;
}
...
...
drivers/scsi/aacraid/comminit.c
浏览文件 @
ed6de456
...
...
@@ -50,9 +50,13 @@ struct aac_common aac_config = {
static
inline
int
aac_is_msix_mode
(
struct
aac_dev
*
dev
)
{
u32
status
;
u32
status
=
0
;
status
=
src_readl
(
dev
,
MUnit
.
OMR
);
if
(
dev
->
pdev
->
device
==
PMC_DEVICE_S6
||
dev
->
pdev
->
device
==
PMC_DEVICE_S7
||
dev
->
pdev
->
device
==
PMC_DEVICE_S8
)
{
status
=
src_readl
(
dev
,
MUnit
.
OMR
);
}
return
(
status
&
AAC_INT_MODE_MSIX
);
}
...
...
drivers/scsi/mpt3sas/mpt3sas_scsih.c
浏览文件 @
ed6de456
...
...
@@ -51,6 +51,7 @@
#include <linux/workqueue.h>
#include <linux/delay.h>
#include <linux/pci.h>
#include <linux/pci-aspm.h>
#include <linux/interrupt.h>
#include <linux/aer.h>
#include <linux/raid_class.h>
...
...
@@ -8761,6 +8762,8 @@ _scsih_probe(struct pci_dev *pdev, const struct pci_device_id *id)
switch
(
hba_mpi_version
)
{
case
MPI2_VERSION
:
pci_disable_link_state
(
pdev
,
PCIE_LINK_STATE_L0S
|
PCIE_LINK_STATE_L1
|
PCIE_LINK_STATE_CLKPM
);
/* Use mpt2sas driver host template for SAS 2.0 HBA's */
shost
=
scsi_host_alloc
(
&
mpt2sas_driver_template
,
sizeof
(
struct
MPT3SAS_ADAPTER
));
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录