Commit 667e427b authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller

net: mark receive queue attributes ro_after_init

Signed-off-by: default avatarStephen Hemminger <sthemmin@microsoft.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2b9c7581
...@@ -655,7 +655,7 @@ static const struct attribute_group wireless_group = { ...@@ -655,7 +655,7 @@ static const struct attribute_group wireless_group = {
static ssize_t rx_queue_attr_show(struct kobject *kobj, struct attribute *attr, static ssize_t rx_queue_attr_show(struct kobject *kobj, struct attribute *attr,
char *buf) char *buf)
{ {
struct rx_queue_attribute *attribute = to_rx_queue_attr(attr); const struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
struct netdev_rx_queue *queue = to_rx_queue(kobj); struct netdev_rx_queue *queue = to_rx_queue(kobj);
if (!attribute->show) if (!attribute->show)
...@@ -667,7 +667,7 @@ static ssize_t rx_queue_attr_show(struct kobject *kobj, struct attribute *attr, ...@@ -667,7 +667,7 @@ static ssize_t rx_queue_attr_show(struct kobject *kobj, struct attribute *attr,
static ssize_t rx_queue_attr_store(struct kobject *kobj, struct attribute *attr, static ssize_t rx_queue_attr_store(struct kobject *kobj, struct attribute *attr,
const char *buf, size_t count) const char *buf, size_t count)
{ {
struct rx_queue_attribute *attribute = to_rx_queue_attr(attr); const struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
struct netdev_rx_queue *queue = to_rx_queue(kobj); struct netdev_rx_queue *queue = to_rx_queue(kobj);
if (!attribute->store) if (!attribute->store)
...@@ -842,16 +842,15 @@ static ssize_t store_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue, ...@@ -842,16 +842,15 @@ static ssize_t store_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue,
return len; return len;
} }
static struct rx_queue_attribute rps_cpus_attribute = static struct rx_queue_attribute rps_cpus_attribute __ro_after_init
__ATTR(rps_cpus, S_IRUGO | S_IWUSR, show_rps_map, store_rps_map); = __ATTR(rps_cpus, S_IRUGO | S_IWUSR, show_rps_map, store_rps_map);
static struct rx_queue_attribute rps_dev_flow_table_cnt_attribute __ro_after_init
static struct rx_queue_attribute rps_dev_flow_table_cnt_attribute = = __ATTR(rps_flow_cnt, S_IRUGO | S_IWUSR,
__ATTR(rps_flow_cnt, S_IRUGO | S_IWUSR, show_rps_dev_flow_table_cnt, store_rps_dev_flow_table_cnt);
show_rps_dev_flow_table_cnt, store_rps_dev_flow_table_cnt);
#endif /* CONFIG_RPS */ #endif /* CONFIG_RPS */
static struct attribute *rx_queue_default_attrs[] = { static struct attribute *rx_queue_default_attrs[] __ro_after_init = {
#ifdef CONFIG_RPS #ifdef CONFIG_RPS
&rps_cpus_attribute.attr, &rps_cpus_attribute.attr,
&rps_dev_flow_table_cnt_attribute.attr, &rps_dev_flow_table_cnt_attribute.attr,
...@@ -896,7 +895,7 @@ static const void *rx_queue_namespace(struct kobject *kobj) ...@@ -896,7 +895,7 @@ static const void *rx_queue_namespace(struct kobject *kobj)
return ns; return ns;
} }
static struct kobj_type rx_queue_ktype = { static struct kobj_type rx_queue_ktype __ro_after_init = {
.sysfs_ops = &rx_queue_sysfs_ops, .sysfs_ops = &rx_queue_sysfs_ops,
.release = rx_queue_release, .release = rx_queue_release,
.default_attrs = rx_queue_default_attrs, .default_attrs = rx_queue_default_attrs,
...@@ -983,7 +982,8 @@ struct netdev_queue_attribute { ...@@ -983,7 +982,8 @@ struct netdev_queue_attribute {
static ssize_t netdev_queue_attr_show(struct kobject *kobj, static ssize_t netdev_queue_attr_show(struct kobject *kobj,
struct attribute *attr, char *buf) struct attribute *attr, char *buf)
{ {
struct netdev_queue_attribute *attribute = to_netdev_queue_attr(attr); const struct netdev_queue_attribute *attribute
= to_netdev_queue_attr(attr);
struct netdev_queue *queue = to_netdev_queue(kobj); struct netdev_queue *queue = to_netdev_queue(kobj);
if (!attribute->show) if (!attribute->show)
...@@ -996,7 +996,8 @@ static ssize_t netdev_queue_attr_store(struct kobject *kobj, ...@@ -996,7 +996,8 @@ static ssize_t netdev_queue_attr_store(struct kobject *kobj,
struct attribute *attr, struct attribute *attr,
const char *buf, size_t count) const char *buf, size_t count)
{ {
struct netdev_queue_attribute *attribute = to_netdev_queue_attr(attr); const struct netdev_queue_attribute *attribute
= to_netdev_queue_attr(attr);
struct netdev_queue *queue = to_netdev_queue(kobj); struct netdev_queue *queue = to_netdev_queue(kobj);
if (!attribute->store) if (!attribute->store)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment