Commit 3c4e919b authored by Rikard Falkeborn's avatar Rikard Falkeborn Committed by Jason Gunthorpe
Browse files

RDMA/rtrs: Constify static struct attribute_group

The only usage of these is to pass their address to sysfs_create_group()
and sysfs_remove_group(), both which takes const pointers. Make it const
to allow the compiler to put them in read-only memory.

Link: https://lore.kernel.org/r/20200930224004.24279-3-rikard.falkeborn@gmail.com


Signed-off-by: default avatarRikard Falkeborn <rikard.falkeborn@gmail.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@nvidia.com>
parent 42d5179c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -312,7 +312,7 @@ static struct attribute *rtrs_clt_stats_attrs[] = {
	NULL
};

static struct attribute_group rtrs_clt_stats_attr_group = {
static const struct attribute_group rtrs_clt_stats_attr_group = {
	.attrs = rtrs_clt_stats_attrs,
};

@@ -388,7 +388,7 @@ static struct attribute *rtrs_clt_sess_attrs[] = {
	NULL,
};

static struct attribute_group rtrs_clt_sess_attr_group = {
static const struct attribute_group rtrs_clt_sess_attr_group = {
	.attrs = rtrs_clt_sess_attrs,
};

@@ -460,7 +460,7 @@ static struct attribute *rtrs_clt_attrs[] = {
	NULL,
};

static struct attribute_group rtrs_clt_attr_group = {
static const struct attribute_group rtrs_clt_attr_group = {
	.attrs = rtrs_clt_attrs,
};

+2 −2
Original line number Diff line number Diff line
@@ -135,7 +135,7 @@ static struct attribute *rtrs_srv_sess_attrs[] = {
	NULL,
};

static struct attribute_group rtrs_srv_sess_attr_group = {
static const struct attribute_group rtrs_srv_sess_attr_group = {
	.attrs = rtrs_srv_sess_attrs,
};

@@ -148,7 +148,7 @@ static struct attribute *rtrs_srv_stats_attrs[] = {
	NULL,
};

static struct attribute_group rtrs_srv_stats_attr_group = {
static const struct attribute_group rtrs_srv_stats_attr_group = {
	.attrs = rtrs_srv_stats_attrs,
};