Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
ebbb7594
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
ebbb7594
编写于
10月 16, 2016
作者:
J
James Bottomley
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'mkp-scsi/4.9/scsi-fixes' into fixes
上级
1001354c
8a4236a2
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
6 addition
and
11 deletion
+6
-11
drivers/s390/scsi/zfcp_dbf.c
drivers/s390/scsi/zfcp_dbf.c
+1
-1
drivers/scsi/ipr.c
drivers/scsi/ipr.c
+1
-2
drivers/scsi/scsi_dh.c
drivers/scsi/scsi_dh.c
+3
-3
drivers/scsi/scsi_scan.c
drivers/scsi/scsi_scan.c
+1
-5
未找到文件。
drivers/s390/scsi/zfcp_dbf.c
浏览文件 @
ebbb7594
...
...
@@ -384,7 +384,7 @@ void zfcp_dbf_san(char *tag, struct zfcp_dbf *dbf,
/* if (len > rec_len):
* dump data up to cap_len ignoring small duplicate in rec->payload
*/
spin_lock
_irqsave
(
&
dbf
->
pay_lock
,
flags
);
spin_lock
(
&
dbf
->
pay_lock
);
memset
(
payload
,
0
,
sizeof
(
*
payload
));
memcpy
(
payload
->
area
,
paytag
,
ZFCP_DBF_TAG_LEN
);
payload
->
fsf_req_id
=
req_id
;
...
...
drivers/scsi/ipr.c
浏览文件 @
ebbb7594
...
...
@@ -2586,7 +2586,6 @@ static void ipr_process_error(struct ipr_cmnd *ipr_cmd)
struct
ipr_hostrcb
*
hostrcb
=
ipr_cmd
->
u
.
hostrcb
;
u32
ioasc
=
be32_to_cpu
(
ipr_cmd
->
s
.
ioasa
.
hdr
.
ioasc
);
u32
fd_ioasc
;
char
*
envp
[]
=
{
"ASYNC_ERR_LOG=1"
,
NULL
};
if
(
ioa_cfg
->
sis64
)
fd_ioasc
=
be32_to_cpu
(
hostrcb
->
hcam
.
u
.
error64
.
fd_ioasc
);
...
...
@@ -2607,8 +2606,8 @@ static void ipr_process_error(struct ipr_cmnd *ipr_cmd)
}
list_add_tail
(
&
hostrcb
->
queue
,
&
ioa_cfg
->
hostrcb_report_q
);
schedule_work
(
&
ioa_cfg
->
work_q
);
hostrcb
=
ipr_get_free_hostrcb
(
ioa_cfg
);
kobject_uevent_env
(
&
ioa_cfg
->
host
->
shost_dev
.
kobj
,
KOBJ_CHANGE
,
envp
);
ipr_send_hcam
(
ioa_cfg
,
IPR_HCAM_CDB_OP_CODE_LOG_DATA
,
hostrcb
);
}
...
...
drivers/scsi/scsi_dh.c
浏览文件 @
ebbb7594
...
...
@@ -36,9 +36,9 @@ struct scsi_dh_blist {
};
static
const
struct
scsi_dh_blist
scsi_dh_blist
[]
=
{
{
"DGC"
,
"RAID"
,
"
clariion
"
},
{
"DGC"
,
"DISK"
,
"
clariion
"
},
{
"DGC"
,
"VRAID"
,
"
clariion
"
},
{
"DGC"
,
"RAID"
,
"
emc
"
},
{
"DGC"
,
"DISK"
,
"
emc
"
},
{
"DGC"
,
"VRAID"
,
"
emc
"
},
{
"COMPAQ"
,
"MSA1000 VOLUME"
,
"hp_sw"
},
{
"COMPAQ"
,
"HSV110"
,
"hp_sw"
},
...
...
drivers/scsi/scsi_scan.c
浏览文件 @
ebbb7594
...
...
@@ -1307,7 +1307,6 @@ static void scsi_sequential_lun_scan(struct scsi_target *starget,
static
int
scsi_report_lun_scan
(
struct
scsi_target
*
starget
,
int
bflags
,
enum
scsi_scan_mode
rescan
)
{
char
devname
[
64
];
unsigned
char
scsi_cmd
[
MAX_COMMAND_SIZE
];
unsigned
int
length
;
u64
lun
;
...
...
@@ -1349,9 +1348,6 @@ static int scsi_report_lun_scan(struct scsi_target *starget, int bflags,
}
}
sprintf
(
devname
,
"host %d channel %d id %d"
,
shost
->
host_no
,
sdev
->
channel
,
sdev
->
id
);
/*
* Allocate enough to hold the header (the same size as one scsi_lun)
* plus the number of luns we are requesting. 511 was the default
...
...
@@ -1470,12 +1466,12 @@ static int scsi_report_lun_scan(struct scsi_target *starget, int bflags,
out_err:
kfree
(
lun_data
);
out:
scsi_device_put
(
sdev
);
if
(
scsi_device_created
(
sdev
))
/*
* the sdev we used didn't appear in the report luns scan
*/
__scsi_remove_device
(
sdev
);
scsi_device_put
(
sdev
);
return
ret
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录