All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mtdram: Add module parameter name.
@ 2019-02-22 12:32 Daniel Danzberger
  2019-03-07 13:21 ` Miquel Raynal
  2019-03-07 13:24 ` Miquel Raynal
  0 siblings, 2 replies; 5+ messages in thread
From: Daniel Danzberger @ 2019-02-22 12:32 UTC (permalink / raw)
  To: linux-mtd; +Cc: Daniel Danzberger

This parameter will overwrite the default name "mtdram test device", when set.

Signed-off-by: Daniel Danzberger <daniel@dd-wrt.com>
---
 drivers/mtd/devices/mtdram.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/mtd/devices/mtdram.c b/drivers/mtd/devices/mtdram.c
index 46238796145f..1a8ec3756a1d 100644
--- a/drivers/mtd/devices/mtdram.c
+++ b/drivers/mtd/devices/mtdram.c
@@ -18,6 +18,7 @@
 #include <linux/mtd/mtd.h>
 #include <linux/mtd/mtdram.h>
 
+static char name[32] = "mtdram test device";
 static unsigned long total_size = CONFIG_MTDRAM_TOTAL_SIZE;
 static unsigned long erase_size = CONFIG_MTDRAM_ERASE_SIZE;
 static unsigned long writebuf_size = 64;
@@ -31,6 +32,8 @@ module_param(erase_size, ulong, 0);
 MODULE_PARM_DESC(erase_size, "Device erase block size in KiB");
 module_param(writebuf_size, ulong, 0);
 MODULE_PARM_DESC(writebuf_size, "Device write buf size in Bytes (Default: 64)");
+module_param_string(name, name, sizeof(name) - 1, 0);
+MODULE_PARM_DESC(name, "Device name");
 #endif
 
 // We could store these in the mtd structure, but we only support 1 device..
@@ -170,7 +173,7 @@ static int __init init_mtdram(void)
 		mtd_info = NULL;
 		return -ENOMEM;
 	}
-	err = mtdram_init_device(mtd_info, addr, MTDRAM_TOTAL_SIZE, "mtdram test device");
+	err = mtdram_init_device(mtd_info, addr, MTDRAM_TOTAL_SIZE, name);
 	if (err) {
 		vfree(addr);
 		kfree(mtd_info);
-- 
2.20.1


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] mtdram: Add module parameter name.
  2019-02-22 12:32 [PATCH] mtdram: Add module parameter name Daniel Danzberger
@ 2019-03-07 13:21 ` Miquel Raynal
  2019-03-07 15:01   ` Richard Weinberger
  2019-03-07 15:11   ` Daniel Danzberger
  2019-03-07 13:24 ` Miquel Raynal
  1 sibling, 2 replies; 5+ messages in thread
From: Miquel Raynal @ 2019-03-07 13:21 UTC (permalink / raw)
  To: Daniel Danzberger; +Cc: linux-mtd

Hi Daniel,

Please Cc: the MTD maintainers as advised by get_maintainers.pl.

Daniel Danzberger <daniel@dd-wrt.com> wrote on Fri, 22 Feb 2019
13:32:05 +0100:

> This parameter will overwrite the default name "mtdram test device", when set.

Do you have a use case?

> 
> Signed-off-by: Daniel Danzberger <daniel@dd-wrt.com>
> ---
>  drivers/mtd/devices/mtdram.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/mtd/devices/mtdram.c b/drivers/mtd/devices/mtdram.c
> index 46238796145f..1a8ec3756a1d 100644
> --- a/drivers/mtd/devices/mtdram.c
> +++ b/drivers/mtd/devices/mtdram.c
> @@ -18,6 +18,7 @@
>  #include <linux/mtd/mtd.h>
>  #include <linux/mtd/mtdram.h>
>  
> +static char name[32] = "mtdram test device";
>  static unsigned long total_size = CONFIG_MTDRAM_TOTAL_SIZE;
>  static unsigned long erase_size = CONFIG_MTDRAM_ERASE_SIZE;
>  static unsigned long writebuf_size = 64;
> @@ -31,6 +32,8 @@ module_param(erase_size, ulong, 0);
>  MODULE_PARM_DESC(erase_size, "Device erase block size in KiB");
>  module_param(writebuf_size, ulong, 0);
>  MODULE_PARM_DESC(writebuf_size, "Device write buf size in Bytes (Default: 64)");
> +module_param_string(name, name, sizeof(name) - 1, 0);

The module_param_string kernel doc says

        "@len: the maximum length of the string, incl. terminator"

and later

        "@len is usually just sizeof(string)."

So I suppose sizeof(name) will be enough.

> +MODULE_PARM_DESC(name, "Device name");
>  #endif
>  
>  // We could store these in the mtd structure, but we only support 1 device..
> @@ -170,7 +173,7 @@ static int __init init_mtdram(void)
>  		mtd_info = NULL;
>  		return -ENOMEM;
>  	}
> -	err = mtdram_init_device(mtd_info, addr, MTDRAM_TOTAL_SIZE, "mtdram test device");
> +	err = mtdram_init_device(mtd_info, addr, MTDRAM_TOTAL_SIZE, name);
>  	if (err) {
>  		vfree(addr);
>  		kfree(mtd_info);


Thanks,
Miquèl

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] mtdram: Add module parameter name.
  2019-02-22 12:32 [PATCH] mtdram: Add module parameter name Daniel Danzberger
  2019-03-07 13:21 ` Miquel Raynal
@ 2019-03-07 13:24 ` Miquel Raynal
  1 sibling, 0 replies; 5+ messages in thread
From: Miquel Raynal @ 2019-03-07 13:24 UTC (permalink / raw)
  To: Daniel Danzberger; +Cc: linux-mtd

Hi Daniel,

Also, "mtd: mtdram:" would be a better prefix, and you can drop the
period at the end of the commit title.

Daniel Danzberger <daniel@dd-wrt.com> wrote on Fri, 22 Feb 2019
13:32:05 +0100:

> This parameter will overwrite the default name "mtdram test device", when set.
> 
> Signed-off-by: Daniel Danzberger <daniel@dd-wrt.com>
> ---
>  drivers/mtd/devices/mtdram.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/mtd/devices/mtdram.c b/drivers/mtd/devices/mtdram.c
> index 46238796145f..1a8ec3756a1d 100644
> --- a/drivers/mtd/devices/mtdram.c
> +++ b/drivers/mtd/devices/mtdram.c
> @@ -18,6 +18,7 @@
>  #include <linux/mtd/mtd.h>
>  #include <linux/mtd/mtdram.h>
>  
> +static char name[32] = "mtdram test device";
>  static unsigned long total_size = CONFIG_MTDRAM_TOTAL_SIZE;
>  static unsigned long erase_size = CONFIG_MTDRAM_ERASE_SIZE;
>  static unsigned long writebuf_size = 64;
> @@ -31,6 +32,8 @@ module_param(erase_size, ulong, 0);
>  MODULE_PARM_DESC(erase_size, "Device erase block size in KiB");
>  module_param(writebuf_size, ulong, 0);
>  MODULE_PARM_DESC(writebuf_size, "Device write buf size in Bytes (Default: 64)");
> +module_param_string(name, name, sizeof(name) - 1, 0);
> +MODULE_PARM_DESC(name, "Device name");
>  #endif
>  
>  // We could store these in the mtd structure, but we only support 1 device..
> @@ -170,7 +173,7 @@ static int __init init_mtdram(void)
>  		mtd_info = NULL;
>  		return -ENOMEM;
>  	}
> -	err = mtdram_init_device(mtd_info, addr, MTDRAM_TOTAL_SIZE, "mtdram test device");
> +	err = mtdram_init_device(mtd_info, addr, MTDRAM_TOTAL_SIZE, name);
>  	if (err) {
>  		vfree(addr);
>  		kfree(mtd_info);




Thanks,
Miquèl

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] mtdram: Add module parameter name.
  2019-03-07 13:21 ` Miquel Raynal
@ 2019-03-07 15:01   ` Richard Weinberger
  2019-03-07 15:11   ` Daniel Danzberger
  1 sibling, 0 replies; 5+ messages in thread
From: Richard Weinberger @ 2019-03-07 15:01 UTC (permalink / raw)
  To: Miquel Raynal; +Cc: linux-mtd, Daniel Danzberger

On Thu, Mar 7, 2019 at 2:21 PM Miquel Raynal <miquel.raynal@bootlin.com> wrote:
>
> Hi Daniel,
>
> Please Cc: the MTD maintainers as advised by get_maintainers.pl.
>
> Daniel Danzberger <daniel@dd-wrt.com> wrote on Fri, 22 Feb 2019
> 13:32:05 +0100:
>
> > This parameter will overwrite the default name "mtdram test device", when set.
>
> Do you have a use case?

Me best guess is dealing with existing mtdparts.
...which is a sane use case IMHO.

If we add this feature to mtdram, we should consider it for nandsim too.

-- 
Thanks,
//richard

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] mtdram: Add module parameter name.
  2019-03-07 13:21 ` Miquel Raynal
  2019-03-07 15:01   ` Richard Weinberger
@ 2019-03-07 15:11   ` Daniel Danzberger
  1 sibling, 0 replies; 5+ messages in thread
From: Daniel Danzberger @ 2019-03-07 15:11 UTC (permalink / raw)
  To: Miquel Raynal; +Cc: linux-mtd

On 3/7/19 2:21 PM, Miquel Raynal wrote:
> Hi Daniel,
> 
> Please Cc: the MTD maintainers as advised by get_maintainers.pl.
> 
> Daniel Danzberger <daniel@dd-wrt.com> wrote on Fri, 22 Feb 2019
> 13:32:05 +0100:
> 
>> This parameter will overwrite the default name "mtdram test device", when set.
> 
> Do you have a use case ?
I was testing some userspace mtd code that searches for a specific mtd partition
by name. I didn't want to rename the partition name in the code every time I
test with mtdram.
I was thinking someone else might run into a similar situation, so I pushed it
upstream.
> 
>>
>> Signed-off-by: Daniel Danzberger <daniel@dd-wrt.com>
>> ---
>>  drivers/mtd/devices/mtdram.c | 5 ++++-
>>  1 file changed, 4 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/mtd/devices/mtdram.c b/drivers/mtd/devices/mtdram.c
>> index 46238796145f..1a8ec3756a1d 100644
>> --- a/drivers/mtd/devices/mtdram.c
>> +++ b/drivers/mtd/devices/mtdram.c
>> @@ -18,6 +18,7 @@
>>  #include <linux/mtd/mtd.h>
>>  #include <linux/mtd/mtdram.h>
>>  
>> +static char name[32] = "mtdram test device";
>>  static unsigned long total_size = CONFIG_MTDRAM_TOTAL_SIZE;
>>  static unsigned long erase_size = CONFIG_MTDRAM_ERASE_SIZE;
>>  static unsigned long writebuf_size = 64;
>> @@ -31,6 +32,8 @@ module_param(erase_size, ulong, 0);
>>  MODULE_PARM_DESC(erase_size, "Device erase block size in KiB");
>>  module_param(writebuf_size, ulong, 0);
>>  MODULE_PARM_DESC(writebuf_size, "Device write buf size in Bytes (Default: 64)");
>> +module_param_string(name, name, sizeof(name) - 1, 0);
> 
> The module_param_string kernel doc says
> 
>         "@len: the maximum length of the string, incl. terminator"
> 
> and later
> 
>         "@len is usually just sizeof(string)."
> 
> So I suppose sizeof(name) will be enough.Agree.

> 
>> +MODULE_PARM_DESC(name, "Device name");
>>  #endif
>>  
>>  // We could store these in the mtd structure, but we only support 1 device..
>> @@ -170,7 +173,7 @@ static int __init init_mtdram(void)
>>  		mtd_info = NULL;
>>  		return -ENOMEM;
>>  	}
>> -	err = mtdram_init_device(mtd_info, addr, MTDRAM_TOTAL_SIZE, "mtdram test device");
>> +	err = mtdram_init_device(mtd_info, addr, MTDRAM_TOTAL_SIZE, name);
>>  	if (err) {
>>  		vfree(addr);
>>  		kfree(mtd_info);
> 
> 
> Thanks,
> Miquèl
> 

-- 
Regards

Daniel Danzberger
embeDD GmbH, Alter Postplatz 2, CH-6370 Stans

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-03-07 15:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-22 12:32 [PATCH] mtdram: Add module parameter name Daniel Danzberger
2019-03-07 13:21 ` Miquel Raynal
2019-03-07 15:01   ` Richard Weinberger
2019-03-07 15:11   ` Daniel Danzberger
2019-03-07 13:24 ` Miquel Raynal

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.