Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
587a1f16
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看板
提交
587a1f16
编写于
7月 23, 2011
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
switch ->is_visible() to returning umode_t
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
9104e427
变更
33
隐藏空白更改
内联
并排
Showing
33 changed file
with
70 addition
and
70 deletion
+70
-70
drivers/firmware/iscsi_ibft.c
drivers/firmware/iscsi_ibft.c
+6
-6
drivers/hwmon/jc42.c
drivers/hwmon/jc42.c
+1
-1
drivers/hwmon/max1668.c
drivers/hwmon/max1668.c
+2
-2
drivers/hwmon/max6650.c
drivers/hwmon/max6650.c
+1
-1
drivers/hwmon/tmp421.c
drivers/hwmon/tmp421.c
+1
-1
drivers/infiniband/ulp/iser/iscsi_iser.c
drivers/infiniband/ulp/iser/iscsi_iser.c
+1
-1
drivers/input/touchscreen/ad7877.c
drivers/input/touchscreen/ad7877.c
+2
-2
drivers/input/touchscreen/tsc2005.c
drivers/input/touchscreen/tsc2005.c
+2
-2
drivers/pci/pci-label.c
drivers/pci/pci-label.c
+2
-2
drivers/platform/x86/asus-laptop.c
drivers/platform/x86/asus-laptop.c
+1
-1
drivers/platform/x86/asus-wmi.c
drivers/platform/x86/asus-wmi.c
+2
-2
drivers/platform/x86/ideapad-laptop.c
drivers/platform/x86/ideapad-laptop.c
+1
-1
drivers/power/power_supply_sysfs.c
drivers/power/power_supply_sysfs.c
+2
-2
drivers/scsi/be2iscsi/be_iscsi.c
drivers/scsi/be2iscsi/be_iscsi.c
+1
-1
drivers/scsi/be2iscsi/be_iscsi.h
drivers/scsi/be2iscsi/be_iscsi.h
+1
-1
drivers/scsi/be2iscsi/be_main.c
drivers/scsi/be2iscsi/be_main.c
+6
-6
drivers/scsi/bnx2i/bnx2i_iscsi.c
drivers/scsi/bnx2i/bnx2i_iscsi.c
+1
-1
drivers/scsi/cxgbi/libcxgbi.c
drivers/scsi/cxgbi/libcxgbi.c
+1
-1
drivers/scsi/cxgbi/libcxgbi.h
drivers/scsi/cxgbi/libcxgbi.h
+1
-1
drivers/scsi/iscsi_boot_sysfs.c
drivers/scsi/iscsi_boot_sysfs.c
+7
-7
drivers/scsi/iscsi_tcp.c
drivers/scsi/iscsi_tcp.c
+1
-1
drivers/scsi/qla4xxx/ql4_os.c
drivers/scsi/qla4xxx/ql4_os.c
+5
-5
drivers/scsi/scsi_transport_iscsi.c
drivers/scsi/scsi_transport_iscsi.c
+4
-4
drivers/scsi/scsi_transport_spi.c
drivers/scsi/scsi_transport_spi.c
+1
-1
drivers/staging/iio/adc/ad7192.c
drivers/staging/iio/adc/ad7192.c
+2
-2
drivers/staging/iio/adc/ad7606_core.c
drivers/staging/iio/adc/ad7606_core.c
+2
-2
drivers/staging/iio/dac/ad5446.c
drivers/staging/iio/dac/ad5446.c
+2
-2
drivers/staging/iio/dds/ad9834.c
drivers/staging/iio/dds/ad9834.c
+2
-2
drivers/usb/core/sysfs.c
drivers/usb/core/sysfs.c
+2
-2
fs/sysfs/group.c
fs/sysfs/group.c
+1
-1
include/linux/iscsi_boot_sysfs.h
include/linux/iscsi_boot_sysfs.h
+4
-4
include/linux/sysfs.h
include/linux/sysfs.h
+1
-1
include/scsi/scsi_transport_iscsi.h
include/scsi/scsi_transport_iscsi.h
+1
-1
未找到文件。
drivers/firmware/iscsi_ibft.c
浏览文件 @
587a1f16
...
...
@@ -433,11 +433,11 @@ static int __init ibft_check_device(void)
* Helper routiners to check to determine if the entry is valid
* in the proper iBFT structure.
*/
static
mode_t
ibft_check_nic_for
(
void
*
data
,
int
type
)
static
u
mode_t
ibft_check_nic_for
(
void
*
data
,
int
type
)
{
struct
ibft_kobject
*
entry
=
data
;
struct
ibft_nic
*
nic
=
entry
->
nic
;
mode_t
rc
=
0
;
u
mode_t
rc
=
0
;
switch
(
type
)
{
case
ISCSI_BOOT_ETH_INDEX
:
...
...
@@ -488,11 +488,11 @@ static mode_t ibft_check_nic_for(void *data, int type)
return
rc
;
}
static
mode_t
__init
ibft_check_tgt_for
(
void
*
data
,
int
type
)
static
u
mode_t
__init
ibft_check_tgt_for
(
void
*
data
,
int
type
)
{
struct
ibft_kobject
*
entry
=
data
;
struct
ibft_tgt
*
tgt
=
entry
->
tgt
;
mode_t
rc
=
0
;
u
mode_t
rc
=
0
;
switch
(
type
)
{
case
ISCSI_BOOT_TGT_INDEX
:
...
...
@@ -524,11 +524,11 @@ static mode_t __init ibft_check_tgt_for(void *data, int type)
return
rc
;
}
static
mode_t
__init
ibft_check_initiator_for
(
void
*
data
,
int
type
)
static
u
mode_t
__init
ibft_check_initiator_for
(
void
*
data
,
int
type
)
{
struct
ibft_kobject
*
entry
=
data
;
struct
ibft_initiator
*
init
=
entry
->
initiator
;
mode_t
rc
=
0
;
u
mode_t
rc
=
0
;
switch
(
type
)
{
case
ISCSI_BOOT_INI_INDEX
:
...
...
drivers/hwmon/jc42.c
浏览文件 @
587a1f16
...
...
@@ -413,7 +413,7 @@ static struct attribute *jc42_attributes[] = {
NULL
};
static
mode_t
jc42_attribute_mode
(
struct
kobject
*
kobj
,
static
u
mode_t
jc42_attribute_mode
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
index
)
{
struct
device
*
dev
=
container_of
(
kobj
,
struct
device
,
kobj
);
...
...
drivers/hwmon/max1668.c
浏览文件 @
587a1f16
...
...
@@ -335,10 +335,10 @@ static struct attribute *max1668_attribute_unique[] = {
NULL
};
static
mode_t
max1668_attribute_mode
(
struct
kobject
*
kobj
,
static
u
mode_t
max1668_attribute_mode
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
index
)
{
in
t
ret
=
S_IRUGO
;
umode_
t
ret
=
S_IRUGO
;
if
(
read_only
)
return
ret
;
if
(
attr
==
&
sensor_dev_attr_temp1_max
.
dev_attr
.
attr
||
...
...
drivers/hwmon/max6650.c
浏览文件 @
587a1f16
...
...
@@ -464,7 +464,7 @@ static SENSOR_DEVICE_ATTR(gpio1_alarm, S_IRUGO, get_alarm, NULL,
static
SENSOR_DEVICE_ATTR
(
gpio2_alarm
,
S_IRUGO
,
get_alarm
,
NULL
,
MAX6650_ALRM_GPIO2
);
static
mode_t
max6650_attrs_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
a
,
static
u
mode_t
max6650_attrs_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
a
,
int
n
)
{
struct
device
*
dev
=
container_of
(
kobj
,
struct
device
,
kobj
);
...
...
drivers/hwmon/tmp421.c
浏览文件 @
587a1f16
...
...
@@ -157,7 +157,7 @@ static ssize_t show_fault(struct device *dev,
return
sprintf
(
buf
,
"0
\n
"
);
}
static
mode_t
tmp421_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
a
,
static
u
mode_t
tmp421_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
a
,
int
n
)
{
struct
device
*
dev
=
container_of
(
kobj
,
struct
device
,
kobj
);
...
...
drivers/infiniband/ulp/iser/iscsi_iser.c
浏览文件 @
587a1f16
...
...
@@ -638,7 +638,7 @@ iscsi_iser_ep_disconnect(struct iscsi_endpoint *ep)
iser_conn_terminate
(
ib_conn
);
}
static
mode_t
iser_attr_is_visible
(
int
param_type
,
int
param
)
static
u
mode_t
iser_attr_is_visible
(
int
param_type
,
int
param
)
{
switch
(
param_type
)
{
case
ISCSI_HOST_PARAM
:
...
...
drivers/input/touchscreen/ad7877.c
浏览文件 @
587a1f16
...
...
@@ -612,10 +612,10 @@ static struct attribute *ad7877_attributes[] = {
NULL
};
static
mode_t
ad7877_attr_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
ad7877_attr_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
n
)
{
mode_t
mode
=
attr
->
mode
;
u
mode_t
mode
=
attr
->
mode
;
if
(
attr
==
&
dev_attr_aux3
.
attr
)
{
if
(
gpio3
)
...
...
drivers/input/touchscreen/tsc2005.c
浏览文件 @
587a1f16
...
...
@@ -450,13 +450,13 @@ static struct attribute *tsc2005_attrs[] = {
NULL
};
static
mode_t
tsc2005_attr_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
tsc2005_attr_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
n
)
{
struct
device
*
dev
=
container_of
(
kobj
,
struct
device
,
kobj
);
struct
spi_device
*
spi
=
to_spi_device
(
dev
);
struct
tsc2005
*
ts
=
spi_get_drvdata
(
spi
);
mode_t
mode
=
attr
->
mode
;
u
mode_t
mode
=
attr
->
mode
;
if
(
attr
==
&
dev_attr_selftest
.
attr
)
{
if
(
!
ts
->
set_reset
)
...
...
drivers/pci/pci-label.c
浏览文件 @
587a1f16
...
...
@@ -89,7 +89,7 @@ find_smbios_instance_string(struct pci_dev *pdev, char *buf,
return
0
;
}
static
mode_t
static
u
mode_t
smbios_instance_string_exist
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
n
)
{
...
...
@@ -275,7 +275,7 @@ device_has_dsm(struct device *dev)
return
FALSE
;
}
static
mode_t
static
u
mode_t
acpi_index_string_exist
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
n
)
{
struct
device
*
dev
;
...
...
drivers/platform/x86/asus-laptop.c
浏览文件 @
587a1f16
...
...
@@ -1477,7 +1477,7 @@ static struct attribute *asus_attributes[] = {
NULL
};
static
mode_t
asus_sysfs_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
asus_sysfs_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
idx
)
{
...
...
drivers/platform/x86/asus-wmi.c
浏览文件 @
587a1f16
...
...
@@ -992,7 +992,7 @@ static struct attribute *hwmon_attributes[] = {
NULL
};
static
mode_t
asus_hwmon_sysfs_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
asus_hwmon_sysfs_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
idx
)
{
struct
device
*
dev
=
container_of
(
kobj
,
struct
device
,
kobj
);
...
...
@@ -1357,7 +1357,7 @@ static struct attribute *platform_attributes[] = {
NULL
};
static
mode_t
asus_sysfs_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
asus_sysfs_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
idx
)
{
struct
device
*
dev
=
container_of
(
kobj
,
struct
device
,
kobj
);
...
...
drivers/platform/x86/ideapad-laptop.c
浏览文件 @
587a1f16
...
...
@@ -368,7 +368,7 @@ static struct attribute *ideapad_attributes[] = {
NULL
};
static
mode_t
ideapad_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
ideapad_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
idx
)
{
...
...
drivers/power/power_supply_sysfs.c
浏览文件 @
587a1f16
...
...
@@ -176,13 +176,13 @@ static struct device_attribute power_supply_attrs[] = {
static
struct
attribute
*
__power_supply_attrs
[
ARRAY_SIZE
(
power_supply_attrs
)
+
1
];
static
mode_t
power_supply_attr_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
power_supply_attr_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
attrno
)
{
struct
device
*
dev
=
container_of
(
kobj
,
struct
device
,
kobj
);
struct
power_supply
*
psy
=
dev_get_drvdata
(
dev
);
mode_t
mode
=
S_IRUSR
|
S_IRGRP
|
S_IROTH
;
u
mode_t
mode
=
S_IRUSR
|
S_IRGRP
|
S_IROTH
;
int
i
;
if
(
attrno
==
POWER_SUPPLY_PROP_TYPE
)
...
...
drivers/scsi/be2iscsi/be_iscsi.c
浏览文件 @
587a1f16
...
...
@@ -733,7 +733,7 @@ void beiscsi_ep_disconnect(struct iscsi_endpoint *ep)
iscsi_destroy_endpoint
(
beiscsi_ep
->
openiscsi_ep
);
}
mode_t
be2iscsi_attr_is_visible
(
int
param_type
,
int
param
)
u
mode_t
be2iscsi_attr_is_visible
(
int
param_type
,
int
param
)
{
switch
(
param_type
)
{
case
ISCSI_HOST_PARAM
:
...
...
drivers/scsi/be2iscsi/be_iscsi.h
浏览文件 @
587a1f16
...
...
@@ -26,7 +26,7 @@
#define BE2_IPV4 0x1
#define BE2_IPV6 0x10
mode_t
be2iscsi_attr_is_visible
(
int
param_type
,
int
param
);
u
mode_t
be2iscsi_attr_is_visible
(
int
param_type
,
int
param
);
void
beiscsi_offload_connection
(
struct
beiscsi_conn
*
beiscsi_conn
,
struct
beiscsi_offload_params
*
params
);
...
...
drivers/scsi/be2iscsi/be_main.c
浏览文件 @
587a1f16
...
...
@@ -325,9 +325,9 @@ static ssize_t beiscsi_show_boot_eth_info(void *data, int type, char *buf)
}
static
mode_t
beiscsi_tgt_get_attr_visibility
(
void
*
data
,
int
type
)
static
u
mode_t
beiscsi_tgt_get_attr_visibility
(
void
*
data
,
int
type
)
{
in
t
rc
;
umode_
t
rc
;
switch
(
type
)
{
case
ISCSI_BOOT_TGT_NAME
:
...
...
@@ -348,9 +348,9 @@ static mode_t beiscsi_tgt_get_attr_visibility(void *data, int type)
return
rc
;
}
static
mode_t
beiscsi_ini_get_attr_visibility
(
void
*
data
,
int
type
)
static
u
mode_t
beiscsi_ini_get_attr_visibility
(
void
*
data
,
int
type
)
{
in
t
rc
;
umode_
t
rc
;
switch
(
type
)
{
case
ISCSI_BOOT_INI_INITIATOR_NAME
:
...
...
@@ -364,9 +364,9 @@ static mode_t beiscsi_ini_get_attr_visibility(void *data, int type)
}
static
mode_t
beiscsi_eth_get_attr_visibility
(
void
*
data
,
int
type
)
static
u
mode_t
beiscsi_eth_get_attr_visibility
(
void
*
data
,
int
type
)
{
in
t
rc
;
umode_
t
rc
;
switch
(
type
)
{
case
ISCSI_BOOT_ETH_FLAGS
:
...
...
drivers/scsi/bnx2i/bnx2i_iscsi.c
浏览文件 @
587a1f16
...
...
@@ -2177,7 +2177,7 @@ static int bnx2i_nl_set_path(struct Scsi_Host *shost, struct iscsi_path *params)
return
0
;
}
static
mode_t
bnx2i_attr_is_visible
(
int
param_type
,
int
param
)
static
u
mode_t
bnx2i_attr_is_visible
(
int
param_type
,
int
param
)
{
switch
(
param_type
)
{
case
ISCSI_HOST_PARAM
:
...
...
drivers/scsi/cxgbi/libcxgbi.c
浏览文件 @
587a1f16
...
...
@@ -2569,7 +2569,7 @@ void cxgbi_iscsi_cleanup(struct iscsi_transport *itp,
}
EXPORT_SYMBOL_GPL
(
cxgbi_iscsi_cleanup
);
mode_t
cxgbi_attr_is_visible
(
int
param_type
,
int
param
)
u
mode_t
cxgbi_attr_is_visible
(
int
param_type
,
int
param
)
{
switch
(
param_type
)
{
case
ISCSI_HOST_PARAM
:
...
...
drivers/scsi/cxgbi/libcxgbi.h
浏览文件 @
587a1f16
...
...
@@ -709,7 +709,7 @@ int cxgbi_conn_xmit_pdu(struct iscsi_task *);
void
cxgbi_cleanup_task
(
struct
iscsi_task
*
task
);
mode_t
cxgbi_attr_is_visible
(
int
param_type
,
int
param
);
u
mode_t
cxgbi_attr_is_visible
(
int
param_type
,
int
param
);
void
cxgbi_get_conn_stats
(
struct
iscsi_cls_conn
*
,
struct
iscsi_stats
*
);
int
cxgbi_set_conn_param
(
struct
iscsi_cls_conn
*
,
enum
iscsi_param
,
char
*
,
int
);
...
...
drivers/scsi/iscsi_boot_sysfs.c
浏览文件 @
587a1f16
...
...
@@ -112,7 +112,7 @@ static struct attribute *target_attrs[] = {
NULL
};
static
mode_t
iscsi_boot_tgt_attr_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
iscsi_boot_tgt_attr_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
i
)
{
struct
iscsi_boot_kobj
*
boot_kobj
=
...
...
@@ -193,7 +193,7 @@ static struct attribute *ethernet_attrs[] = {
NULL
};
static
mode_t
iscsi_boot_eth_attr_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
iscsi_boot_eth_attr_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
i
)
{
struct
iscsi_boot_kobj
*
boot_kobj
=
...
...
@@ -265,7 +265,7 @@ static struct attribute *initiator_attrs[] = {
NULL
};
static
mode_t
iscsi_boot_ini_attr_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
iscsi_boot_ini_attr_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
i
)
{
struct
iscsi_boot_kobj
*
boot_kobj
=
...
...
@@ -306,7 +306,7 @@ iscsi_boot_create_kobj(struct iscsi_boot_kset *boot_kset,
struct
attribute_group
*
attr_group
,
const
char
*
name
,
int
index
,
void
*
data
,
ssize_t
(
*
show
)
(
void
*
data
,
int
type
,
char
*
buf
),
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
),
u
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
),
void
(
*
release
)
(
void
*
data
))
{
struct
iscsi_boot_kobj
*
boot_kobj
;
...
...
@@ -369,7 +369,7 @@ struct iscsi_boot_kobj *
iscsi_boot_create_target
(
struct
iscsi_boot_kset
*
boot_kset
,
int
index
,
void
*
data
,
ssize_t
(
*
show
)
(
void
*
data
,
int
type
,
char
*
buf
),
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
),
u
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
),
void
(
*
release
)
(
void
*
data
))
{
return
iscsi_boot_create_kobj
(
boot_kset
,
&
iscsi_boot_target_attr_group
,
...
...
@@ -394,7 +394,7 @@ struct iscsi_boot_kobj *
iscsi_boot_create_initiator
(
struct
iscsi_boot_kset
*
boot_kset
,
int
index
,
void
*
data
,
ssize_t
(
*
show
)
(
void
*
data
,
int
type
,
char
*
buf
),
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
),
u
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
),
void
(
*
release
)
(
void
*
data
))
{
return
iscsi_boot_create_kobj
(
boot_kset
,
...
...
@@ -420,7 +420,7 @@ struct iscsi_boot_kobj *
iscsi_boot_create_ethernet
(
struct
iscsi_boot_kset
*
boot_kset
,
int
index
,
void
*
data
,
ssize_t
(
*
show
)
(
void
*
data
,
int
type
,
char
*
buf
),
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
),
u
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
),
void
(
*
release
)
(
void
*
data
))
{
return
iscsi_boot_create_kobj
(
boot_kset
,
...
...
drivers/scsi/iscsi_tcp.c
浏览文件 @
587a1f16
...
...
@@ -873,7 +873,7 @@ static void iscsi_sw_tcp_session_destroy(struct iscsi_cls_session *cls_session)
iscsi_host_free
(
shost
);
}
static
mode_t
iscsi_sw_tcp_attr_is_visible
(
int
param_type
,
int
param
)
static
u
mode_t
iscsi_sw_tcp_attr_is_visible
(
int
param_type
,
int
param
)
{
switch
(
param_type
)
{
case
ISCSI_HOST_PARAM
:
...
...
drivers/scsi/qla4xxx/ql4_os.c
浏览文件 @
587a1f16
...
...
@@ -128,7 +128,7 @@ static int qla4xxx_eh_host_reset(struct scsi_cmnd *cmd);
static
int
qla4xxx_slave_alloc
(
struct
scsi_device
*
device
);
static
int
qla4xxx_slave_configure
(
struct
scsi_device
*
device
);
static
void
qla4xxx_slave_destroy
(
struct
scsi_device
*
sdev
);
static
mode_t
ql4_attr_is_visible
(
int
param_type
,
int
param
);
static
u
mode_t
ql4_attr_is_visible
(
int
param_type
,
int
param
);
static
int
qla4xxx_host_reset
(
struct
Scsi_Host
*
shost
,
int
reset_type
);
static
struct
qla4_8xxx_legacy_intr_set
legacy_intr
[]
=
...
...
@@ -197,7 +197,7 @@ static struct iscsi_transport qla4xxx_iscsi_transport = {
static
struct
scsi_transport_template
*
qla4xxx_scsi_transport
;
static
mode_t
ql4_attr_is_visible
(
int
param_type
,
int
param
)
static
u
mode_t
ql4_attr_is_visible
(
int
param_type
,
int
param
)
{
switch
(
param_type
)
{
case
ISCSI_HOST_PARAM
:
...
...
@@ -3039,7 +3039,7 @@ static ssize_t qla4xxx_show_boot_eth_info(void *data, int type, char *buf)
return
rc
;
}
static
mode_t
qla4xxx_eth_get_attr_visibility
(
void
*
data
,
int
type
)
static
u
mode_t
qla4xxx_eth_get_attr_visibility
(
void
*
data
,
int
type
)
{
int
rc
;
...
...
@@ -3073,7 +3073,7 @@ static ssize_t qla4xxx_show_boot_ini_info(void *data, int type, char *buf)
return
rc
;
}
static
mode_t
qla4xxx_ini_get_attr_visibility
(
void
*
data
,
int
type
)
static
u
mode_t
qla4xxx_ini_get_attr_visibility
(
void
*
data
,
int
type
)
{
int
rc
;
...
...
@@ -3160,7 +3160,7 @@ static ssize_t qla4xxx_show_boot_tgt_sec_info(void *data, int type, char *buf)
return
qla4xxx_show_boot_tgt_info
(
boot_sess
,
type
,
buf
);
}
static
mode_t
qla4xxx_tgt_get_attr_visibility
(
void
*
data
,
int
type
)
static
u
mode_t
qla4xxx_tgt_get_attr_visibility
(
void
*
data
,
int
type
)
{
int
rc
;
...
...
drivers/scsi/scsi_transport_iscsi.c
浏览文件 @
587a1f16
...
...
@@ -328,7 +328,7 @@ iscsi_iface_net_attr(iface, vlan_enabled, ISCSI_NET_PARAM_VLAN_ENABLED);
iscsi_iface_net_attr
(
iface
,
mtu
,
ISCSI_NET_PARAM_MTU
);
iscsi_iface_net_attr
(
iface
,
port
,
ISCSI_NET_PARAM_PORT
);
static
mode_t
iscsi_iface_attr_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
iscsi_iface_attr_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
i
)
{
struct
device
*
dev
=
container_of
(
kobj
,
struct
device
,
kobj
);
...
...
@@ -2199,7 +2199,7 @@ static struct attribute *iscsi_conn_attrs[] = {
NULL
,
};
static
mode_t
iscsi_conn_attr_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
iscsi_conn_attr_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
i
)
{
struct
device
*
cdev
=
container_of
(
kobj
,
struct
device
,
kobj
);
...
...
@@ -2370,7 +2370,7 @@ static struct attribute *iscsi_session_attrs[] = {
NULL
,
};
static
mode_t
iscsi_session_attr_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
iscsi_session_attr_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
i
)
{
struct
device
*
cdev
=
container_of
(
kobj
,
struct
device
,
kobj
);
...
...
@@ -2468,7 +2468,7 @@ static struct attribute *iscsi_host_attrs[] = {
NULL
,
};
static
mode_t
iscsi_host_attr_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
iscsi_host_attr_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
i
)
{
struct
device
*
cdev
=
container_of
(
kobj
,
struct
device
,
kobj
);
...
...
drivers/scsi/scsi_transport_spi.c
浏览文件 @
587a1f16
...
...
@@ -1434,7 +1434,7 @@ static int spi_host_configure(struct transport_container *tc,
(si->f->show_##name ? S_IRUGO : 0) | \
(si->f->set_##name ? S_IWUSR : 0)
static
mode_t
target_attribute_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
target_attribute_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
i
)
{
struct
device
*
cdev
=
container_of
(
kobj
,
struct
device
,
kobj
);
...
...
drivers/staging/iio/adc/ad7192.c
浏览文件 @
587a1f16
...
...
@@ -838,14 +838,14 @@ static struct attribute *ad7192_attributes[] = {
NULL
};
static
mode_t
ad7192_attr_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
ad7192_attr_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
n
)
{
struct
device
*
dev
=
container_of
(
kobj
,
struct
device
,
kobj
);
struct
iio_dev
*
indio_dev
=
dev_get_drvdata
(
dev
);
struct
ad7192_state
*
st
=
iio_priv
(
indio_dev
);
mode_t
mode
=
attr
->
mode
;
u
mode_t
mode
=
attr
->
mode
;
if
((
st
->
devid
!=
ID_AD7195
)
&&
(
attr
==
&
iio_dev_attr_ac_excitation_en
.
dev_attr
.
attr
))
...
...
drivers/staging/iio/adc/ad7606_core.c
浏览文件 @
587a1f16
...
...
@@ -205,14 +205,14 @@ static struct attribute *ad7606_attributes[] = {
NULL
,
};
static
mode_t
ad7606_attr_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
ad7606_attr_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
n
)
{
struct
device
*
dev
=
container_of
(
kobj
,
struct
device
,
kobj
);
struct
iio_dev
*
indio_dev
=
dev_get_drvdata
(
dev
);
struct
ad7606_state
*
st
=
iio_priv
(
indio_dev
);
mode_t
mode
=
attr
->
mode
;
u
mode_t
mode
=
attr
->
mode
;
if
(
!
(
gpio_is_valid
(
st
->
pdata
->
gpio_os0
)
&&
gpio_is_valid
(
st
->
pdata
->
gpio_os1
)
&&
...
...
drivers/staging/iio/dac/ad5446.c
浏览文件 @
587a1f16
...
...
@@ -197,14 +197,14 @@ static struct attribute *ad5446_attributes[] = {
NULL
,
};
static
mode_t
ad5446_attr_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
ad5446_attr_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
n
)
{
struct
device
*
dev
=
container_of
(
kobj
,
struct
device
,
kobj
);
struct
iio_dev
*
indio_dev
=
dev_get_drvdata
(
dev
);
struct
ad5446_state
*
st
=
iio_priv
(
indio_dev
);
mode_t
mode
=
attr
->
mode
;
u
mode_t
mode
=
attr
->
mode
;
if
(
!
st
->
chip_info
->
store_pwr_down
&&
(
attr
==
&
iio_dev_attr_out_voltage0_powerdown
.
dev_attr
.
attr
||
...
...
drivers/staging/iio/dds/ad9834.c
浏览文件 @
587a1f16
...
...
@@ -281,14 +281,14 @@ static struct attribute *ad9834_attributes[] = {
NULL
,
};
static
mode_t
ad9834_attr_is_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
ad9834_attr_is_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
attr
,
int
n
)
{
struct
device
*
dev
=
container_of
(
kobj
,
struct
device
,
kobj
);
struct
iio_dev
*
indio_dev
=
dev_get_drvdata
(
dev
);
struct
ad9834_state
*
st
=
iio_priv
(
indio_dev
);
mode_t
mode
=
attr
->
mode
;
u
mode_t
mode
=
attr
->
mode
;
if
(((
st
->
devid
==
ID_AD9833
)
||
(
st
->
devid
==
ID_AD9837
))
&&
((
attr
==
&
iio_dev_attr_dds0_out1_enable
.
dev_attr
.
attr
)
||
...
...
drivers/usb/core/sysfs.c
浏览文件 @
587a1f16
...
...
@@ -642,7 +642,7 @@ static struct attribute *dev_string_attrs[] = {
NULL
};
static
mode_t
dev_string_attrs_are_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
dev_string_attrs_are_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
a
,
int
n
)
{
struct
device
*
dev
=
container_of
(
kobj
,
struct
device
,
kobj
);
...
...
@@ -877,7 +877,7 @@ static struct attribute *intf_assoc_attrs[] = {
NULL
,
};
static
mode_t
intf_assoc_attrs_are_visible
(
struct
kobject
*
kobj
,
static
u
mode_t
intf_assoc_attrs_are_visible
(
struct
kobject
*
kobj
,
struct
attribute
*
a
,
int
n
)
{
struct
device
*
dev
=
container_of
(
kobj
,
struct
device
,
kobj
);
...
...
fs/sysfs/group.c
浏览文件 @
587a1f16
...
...
@@ -33,7 +33,7 @@ static int create_files(struct sysfs_dirent *dir_sd, struct kobject *kobj,
int
error
=
0
,
i
;
for
(
i
=
0
,
attr
=
grp
->
attrs
;
*
attr
&&
!
error
;
i
++
,
attr
++
)
{
mode_t
mode
=
0
;
u
mode_t
mode
=
0
;
/* in update mode, we're changing the permissions or
* visibility. Do this by first removing then
...
...
include/linux/iscsi_boot_sysfs.h
浏览文件 @
587a1f16
...
...
@@ -91,7 +91,7 @@ struct iscsi_boot_kobj {
* The enum of the type. This can be any value of the above
* properties.
*/
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
);
u
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
);
/*
* Driver specific release function.
...
...
@@ -110,20 +110,20 @@ struct iscsi_boot_kobj *
iscsi_boot_create_initiator
(
struct
iscsi_boot_kset
*
boot_kset
,
int
index
,
void
*
data
,
ssize_t
(
*
show
)
(
void
*
data
,
int
type
,
char
*
buf
),
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
),
u
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
),
void
(
*
release
)
(
void
*
data
));
struct
iscsi_boot_kobj
*
iscsi_boot_create_ethernet
(
struct
iscsi_boot_kset
*
boot_kset
,
int
index
,
void
*
data
,
ssize_t
(
*
show
)
(
void
*
data
,
int
type
,
char
*
buf
),
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
),
u
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
),
void
(
*
release
)
(
void
*
data
));
struct
iscsi_boot_kobj
*
iscsi_boot_create_target
(
struct
iscsi_boot_kset
*
boot_kset
,
int
index
,
void
*
data
,
ssize_t
(
*
show
)
(
void
*
data
,
int
type
,
char
*
buf
),
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
),
u
mode_t
(
*
is_visible
)
(
void
*
data
,
int
type
),
void
(
*
release
)
(
void
*
data
));
struct
iscsi_boot_kset
*
iscsi_boot_create_kset
(
const
char
*
set_name
);
...
...
include/linux/sysfs.h
浏览文件 @
587a1f16
...
...
@@ -55,7 +55,7 @@ do { \
struct
attribute_group
{
const
char
*
name
;
mode_t
(
*
is_visible
)(
struct
kobject
*
,
u
mode_t
(
*
is_visible
)(
struct
kobject
*
,
struct
attribute
*
,
int
);
struct
attribute
**
attrs
;
};
...
...
include/scsi/scsi_transport_iscsi.h
浏览文件 @
587a1f16
...
...
@@ -142,7 +142,7 @@ struct iscsi_transport {
int
(
*
get_iface_param
)
(
struct
iscsi_iface
*
iface
,
enum
iscsi_param_type
param_type
,
int
param
,
char
*
buf
);
mode_t
(
*
attr_is_visible
)(
int
param_type
,
int
param
);
u
mode_t
(
*
attr_is_visible
)(
int
param_type
,
int
param
);
int
(
*
bsg_request
)(
struct
bsg_job
*
job
);
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录