Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1672573 > unrolled thread
| Started by | Arvind Yadav <arvind.yadav.cs@gmail.com> |
|---|---|
| First post | 2017-06-22 14:10 +0200 |
| Last post | 2017-06-22 14:30 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] block: rbd: constify rbd_attr_group and rbd_opts_tokens Arvind Yadav <arvind.yadav.cs@gmail.com> - 2017-06-22 14:10 +0200
Re: [PATCH] block: rbd: constify rbd_attr_group and rbd_opts_tokens Joe Perches <joe@perches.com> - 2017-06-22 14:30 +0200
| From | Arvind Yadav <arvind.yadav.cs@gmail.com> |
|---|---|
| Date | 2017-06-22 14:10 +0200 |
| Subject | [PATCH] block: rbd: constify rbd_attr_group and rbd_opts_tokens |
| Message-ID | <tV95V-4vV-33@gated-at.bofh.it> |
File size before:
text data bss dec hex filename
43100 2161 64 45325 b10d drivers/block/rbd.o
File size After adding 'const':
text data bss dec hex filename
43292 1969 64 45325 b10d drivers/block/rbd.o
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
drivers/block/rbd.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c
index 454bf9c..2fb1912 100644
--- a/drivers/block/rbd.c
+++ b/drivers/block/rbd.c
@@ -802,7 +802,7 @@ enum {
Opt_err
};
-static match_table_t rbd_opts_tokens = {
+static const match_table_t rbd_opts_tokens = {
{Opt_queue_depth, "queue_depth=%d"},
/* int args above */
/* string args above */
@@ -4670,7 +4670,7 @@ static ssize_t rbd_image_refresh(struct device *dev,
NULL
};
-static struct attribute_group rbd_attr_group = {
+static const struct attribute_group rbd_attr_group = {
.attrs = rbd_attrs,
};
--
1.9.1
[toc] | [next] | [standalone]
| From | Joe Perches <joe@perches.com> |
|---|---|
| Date | 2017-06-22 14:30 +0200 |
| Message-ID | <tV9pg-4DF-17@gated-at.bofh.it> |
| In reply to | #1672573 |
On Thu, 2017-06-22 at 17:34 +0530, Arvind Yadav wrote: > File size before: > text data bss dec hex filename > 43100 2161 64 45325 b10d drivers/block/rbd.o > > File size After adding 'const': > text data bss dec hex filename > 43292 1969 64 45325 b10d drivers/block/rbd.o If you are going to do these conversions, I still think it'd be better to use a standard struct declaration. From 2011, (const was also added) http://lkml.iu.edu/hypermail/linux/kernel/1104.2/00738.html
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web