* [PATCH 1/1] avr32: added mem kernel command line option support
@ 2008-09-15 10:07 Marco Stornelli
2008-09-15 14:40 ` Randy Dunlap
0 siblings, 1 reply; 8+ messages in thread
From: Marco Stornelli @ 2008-09-15 10:07 UTC (permalink / raw)
To: Linux AVR32; +Cc: linux-kernel
From: Marco Stornelli <marco.stornelli@gmail.com>
Added support for the mem kernel command line option
Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com>
---
--- setup.c.orig 2008-09-15 11:30:00.000000000 +0200
+++ setup.c 2008-09-15 11:30:17.000000000 +0200
@@ -283,6 +283,25 @@ static int __init early_parse_fbmem(char
}
early_param("fbmem", early_parse_fbmem);
+/*
+ * Pick out the memory size. We look for mem=size@start,
+ * where start and size are "size[KkMm]"
+ */
+static int __init early_mem(char **p)
+{
+ unsigned long size, start;
+
+ start = system_ram->start;
+ size = memparse(*p, p);
+ if (**p == '@')
+ start = memparse(*p + 1, p);
+
+ system_ram->start = start;
+ system_ram->end = system_ram->start + size - 1;
+ return 0;
+}
+early_param("mem", early_mem);
+
static int __init parse_tag_core(struct tag *tag)
{
if (tag->hdr.size > 2) {
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH 1/1] avr32: added mem kernel command line option support 2008-09-15 10:07 [PATCH 1/1] avr32: added mem kernel command line option support Marco Stornelli @ 2008-09-15 14:40 ` Randy Dunlap 2008-09-15 14:57 ` Marco Stornelli 0 siblings, 1 reply; 8+ messages in thread From: Randy Dunlap @ 2008-09-15 14:40 UTC (permalink / raw) To: Marco Stornelli; +Cc: Linux AVR32, linux-kernel On Mon, 15 Sep 2008 12:07:19 +0200 Marco Stornelli wrote: > From: Marco Stornelli <marco.stornelli@gmail.com> > > Added support for the mem kernel command line option > Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com> > --- > --- setup.c.orig 2008-09-15 11:30:00.000000000 +0200 > +++ setup.c 2008-09-15 11:30:17.000000000 +0200 > @@ -283,6 +283,25 @@ static int __init early_parse_fbmem(char > } > early_param("fbmem", early_parse_fbmem); > > +/* > + * Pick out the memory size. We look for mem=size@start, > + * where start and size are "size[KkMm]" [KkMmGg] > + */ > +static int __init early_mem(char **p) > +{ > + unsigned long size, start; > + > + start = system_ram->start; > + size = memparse(*p, p); memparse() returns an unsigned long long. Is the truncation OK for avr32? > + if (**p == '@') > + start = memparse(*p + 1, p); > + > + system_ram->start = start; > + system_ram->end = system_ram->start + size - 1; > + return 0; > +} > +early_param("mem", early_mem); > + > static int __init parse_tag_core(struct tag *tag) > { > if (tag->hdr.size > 2) { > -- --- ~Randy Linux Plumbers Conference, 17-19 September 2008, Portland, Oregon USA http://linuxplumbersconf.org/ ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] avr32: added mem kernel command line option support 2008-09-15 14:40 ` Randy Dunlap @ 2008-09-15 14:57 ` Marco Stornelli 2008-09-15 15:05 ` Randy Dunlap 0 siblings, 1 reply; 8+ messages in thread From: Marco Stornelli @ 2008-09-15 14:57 UTC (permalink / raw) To: Randy Dunlap; +Cc: Linux AVR32, linux-kernel If you see the above function early_parse_fbmem: static int __init early_parse_fbmem(char *p) { int ret; unsigned long align; fbmem_size = memparse(p, &p); ......... where fbmem_size is a resource_size_t (u32 because avr32 is a 32-bit architecture), so I used the same philosophy. Maybe I can remove unsigned long and replace it with resource_size_t to be more uniform. Randy Dunlap ha scritto: > On Mon, 15 Sep 2008 12:07:19 +0200 Marco Stornelli wrote: > > >> From: Marco Stornelli <marco.stornelli@gmail.com> >> >> Added support for the mem kernel command line option >> Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com> >> --- >> --- setup.c.orig 2008-09-15 11:30:00.000000000 +0200 >> +++ setup.c 2008-09-15 11:30:17.000000000 +0200 >> @@ -283,6 +283,25 @@ static int __init early_parse_fbmem(char >> } >> early_param("fbmem", early_parse_fbmem); >> >> +/* >> + * Pick out the memory size. We look for mem=size@start, >> + * where start and size are "size[KkMm]" >> > > [KkMmGg] > > >> + */ >> +static int __init early_mem(char **p) >> +{ >> + unsigned long size, start; >> + >> + start = system_ram->start; >> + size = memparse(*p, p); >> > > memparse() returns an unsigned long long. Is the truncation OK for avr32? > > >> + if (**p == '@') >> + start = memparse(*p + 1, p); >> + >> + system_ram->start = start; >> + system_ram->end = system_ram->start + size - 1; >> + return 0; >> +} >> +early_param("mem", early_mem); >> + >> static int __init parse_tag_core(struct tag *tag) >> { >> if (tag->hdr.size > 2) { >> -- >> > > > > --- > ~Randy > Linux Plumbers Conference, 17-19 September 2008, Portland, Oregon USA > http://linuxplumbersconf.org/ > > -- Marco Stornelli Embedded Software Engineer CoRiTeL - Consorzio di Ricerca sulle Telecomunicazioni http://www.coritel.it marco.stornelli@coritel.it +39 06 72582838 ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] avr32: added mem kernel command line option support 2008-09-15 14:57 ` Marco Stornelli @ 2008-09-15 15:05 ` Randy Dunlap 2008-09-15 15:30 ` Marco Stornelli 0 siblings, 1 reply; 8+ messages in thread From: Randy Dunlap @ 2008-09-15 15:05 UTC (permalink / raw) To: Marco Stornelli; +Cc: Linux AVR32, linux-kernel On Mon, 15 Sep 2008 16:57:10 +0200 Marco Stornelli wrote: > If you see the above function early_parse_fbmem: > > static int __init early_parse_fbmem(char *p) > { > int ret; > unsigned long align; > > fbmem_size = memparse(p, &p); > ......... > > where fbmem_size is a resource_size_t (u32 because avr32 is a 32-bit > architecture), so I used the same philosophy. Maybe I can remove > unsigned long and replace it with resource_size_t to be more uniform. Yes, I think that would be better. Thanks. > Randy Dunlap ha scritto: > > On Mon, 15 Sep 2008 12:07:19 +0200 Marco Stornelli wrote: > > > > > >> From: Marco Stornelli <marco.stornelli@gmail.com> > >> > >> Added support for the mem kernel command line option > >> Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com> > >> --- > >> --- setup.c.orig 2008-09-15 11:30:00.000000000 +0200 > >> +++ setup.c 2008-09-15 11:30:17.000000000 +0200 > >> @@ -283,6 +283,25 @@ static int __init early_parse_fbmem(char > >> } > >> early_param("fbmem", early_parse_fbmem); > >> > >> +/* > >> + * Pick out the memory size. We look for mem=size@start, > >> + * where start and size are "size[KkMm]" > >> > > > > [KkMmGg] > > > > > >> + */ > >> +static int __init early_mem(char **p) > >> +{ > >> + unsigned long size, start; > >> + > >> + start = system_ram->start; > >> + size = memparse(*p, p); > >> > > > > memparse() returns an unsigned long long. Is the truncation OK for avr32? > > > > > >> + if (**p == '@') > >> + start = memparse(*p + 1, p); > >> + > >> + system_ram->start = start; > >> + system_ram->end = system_ram->start + size - 1; > >> + return 0; > >> +} > >> +early_param("mem", early_mem); > >> + > >> static int __init parse_tag_core(struct tag *tag) > >> { > >> if (tag->hdr.size > 2) { > >> -- --- ~Randy Linux Plumbers Conference, 17-19 September 2008, Portland, Oregon USA http://linuxplumbersconf.org/ ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] avr32: added mem kernel command line option support 2008-09-15 15:05 ` Randy Dunlap @ 2008-09-15 15:30 ` Marco Stornelli 2008-09-15 15:36 ` Randy Dunlap 0 siblings, 1 reply; 8+ messages in thread From: Marco Stornelli @ 2008-09-15 15:30 UTC (permalink / raw) To: Linux AVR32; +Cc: linux-kernel From: Marco Stornelli <marco.stornelli@gmail.com> Fixed the type of size and start, now they are resource_size_t. Fixed the double pointer parameter, now it's only a single pointer. Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com> --- --- linux-2.6.26.5/arch/avr32/kernel/setup.c.orig 2008-09-15 11:30:00.000000000 +0200 +++ linux-2.6.26.5/arch/avr32/kernel/setup.c 2008-09-15 11:30:17.000000000 +0200 @@ -283,6 +283,25 @@ static int __init early_parse_fbmem(char } early_param("fbmem", early_parse_fbmem); +/* + * Pick out the memory size. We look for mem=size@start, + * where start and size are "size[KkMmGg]" + */ +static int __init early_mem(char *p) +{ + resource_size_t size, start; + + start = system_ram->start; + size = memparse(p, &p); + if (**p == '@') + start = memparse(p + 1, &p); + + system_ram->start = start; + system_ram->end = system_ram->start + size - 1; + return 0; +} +early_param("mem", early_mem); + static int __init parse_tag_core(struct tag *tag) { if (tag->hdr.size > 2) { Randy Dunlap ha scritto: > On Mon, 15 Sep 2008 16:57:10 +0200 Marco Stornelli wrote: > > >> If you see the above function early_parse_fbmem: >> >> static int __init early_parse_fbmem(char *p) >> { >> int ret; >> unsigned long align; >> >> fbmem_size = memparse(p, &p); >> ......... >> >> where fbmem_size is a resource_size_t (u32 because avr32 is a 32-bit >> architecture), so I used the same philosophy. Maybe I can remove >> unsigned long and replace it with resource_size_t to be more uniform. >> > > Yes, I think that would be better. > > Thanks. > > >> Randy Dunlap ha scritto: >> >>> On Mon, 15 Sep 2008 12:07:19 +0200 Marco Stornelli wrote: >>> >>> >>> >>>> From: Marco Stornelli <marco.stornelli@gmail.com> >>>> >>>> Added support for the mem kernel command line option >>>> Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com> >>>> --- >>>> --- setup.c.orig 2008-09-15 11:30:00.000000000 +0200 >>>> +++ setup.c 2008-09-15 11:30:17.000000000 +0200 >>>> @@ -283,6 +283,25 @@ static int __init early_parse_fbmem(char >>>> } >>>> early_param("fbmem", early_parse_fbmem); >>>> >>>> +/* >>>> + * Pick out the memory size. We look for mem=size@start, >>>> + * where start and size are "size[KkMm]" >>>> >>>> >>> [KkMmGg] >>> >>> >>> >>>> + */ >>>> +static int __init early_mem(char **p) >>>> +{ >>>> + unsigned long size, start; >>>> + >>>> + start = system_ram->start; >>>> + size = memparse(*p, p); >>>> >>>> >>> memparse() returns an unsigned long long. Is the truncation OK for avr32? >>> >>> >>> >>>> + if (**p == '@') >>>> + start = memparse(*p + 1, p); >>>> + >>>> + system_ram->start = start; >>>> + system_ram->end = system_ram->start + size - 1; >>>> + return 0; >>>> +} >>>> +early_param("mem", early_mem); >>>> + >>>> static int __init parse_tag_core(struct tag *tag) >>>> { >>>> if (tag->hdr.size > 2) { >>>> -- >>>> > > > --- > ~Randy > Linux Plumbers Conference, 17-19 September 2008, Portland, Oregon USA > http://linuxplumbersconf.org/ > > -- Marco Stornelli Embedded Software Engineer CoRiTeL - Consorzio di Ricerca sulle Telecomunicazioni http://www.coritel.it marco.stornelli@coritel.it +39 06 72582838 ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] avr32: added mem kernel command line option support 2008-09-15 15:30 ` Marco Stornelli @ 2008-09-15 15:36 ` Randy Dunlap 2008-09-16 7:14 ` Marco Stornelli 0 siblings, 1 reply; 8+ messages in thread From: Randy Dunlap @ 2008-09-15 15:36 UTC (permalink / raw) To: Marco Stornelli; +Cc: Linux AVR32, linux-kernel On Mon, 15 Sep 2008 17:30:48 +0200 Marco Stornelli wrote: > From: Marco Stornelli <marco.stornelli@gmail.com> > > Fixed the type of size and start, now they are resource_size_t. > Fixed the double pointer parameter, now it's only a single pointer. > Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com> > --- > --- linux-2.6.26.5/arch/avr32/kernel/setup.c.orig 2008-09-15 11:30:00.000000000 +0200 > > +++ linux-2.6.26.5/arch/avr32/kernel/setup.c 2008-09-15 > 11:30:17.000000000 +0200 > @@ -283,6 +283,25 @@ static int __init early_parse_fbmem(char > } > early_param("fbmem", early_parse_fbmem); > > +/* > + * Pick out the memory size. We look for mem=size@start, > + * where start and size are "size[KkMmGg]" > + */ > +static int __init early_mem(char *p) > +{ > + resource_size_t size, start; > + > + start = system_ram->start; > + size = memparse(p, &p); > + if (**p == '@') > + start = memparse(p + 1, &p); Lots of whitespace damage here. Your first patch looked OK for whitespace, so something changed.... > + > + system_ram->start = start; > + system_ram->end = system_ram->start + size - 1; > + return 0; > +} > +early_param("mem", early_mem); > + > static int __init parse_tag_core(struct tag *tag) > { > if (tag->hdr.size > 2) { > > Randy Dunlap ha scritto: > > On Mon, 15 Sep 2008 16:57:10 +0200 Marco Stornelli wrote: > > > > > >> If you see the above function early_parse_fbmem: > >> > >> static int __init early_parse_fbmem(char *p) > >> { > >> int ret; > >> unsigned long align; > >> > >> fbmem_size = memparse(p, &p); > >> ......... > >> > >> where fbmem_size is a resource_size_t (u32 because avr32 is a 32-bit > >> architecture), so I used the same philosophy. Maybe I can remove > >> unsigned long and replace it with resource_size_t to be more uniform. > >> > > > > Yes, I think that would be better. > > > > Thanks. > > > > > >> Randy Dunlap ha scritto: > >> > >>> On Mon, 15 Sep 2008 12:07:19 +0200 Marco Stornelli wrote: > >>> > >>> > >>> > >>>> From: Marco Stornelli <marco.stornelli@gmail.com> > >>>> > >>>> Added support for the mem kernel command line option > >>>> Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com> > >>>> --- > >>>> --- setup.c.orig 2008-09-15 11:30:00.000000000 +0200 > >>>> +++ setup.c 2008-09-15 11:30:17.000000000 +0200 > >>>> @@ -283,6 +283,25 @@ static int __init early_parse_fbmem(char > >>>> } > >>>> early_param("fbmem", early_parse_fbmem); > >>>> > >>>> +/* > >>>> + * Pick out the memory size. We look for mem=size@start, > >>>> + * where start and size are "size[KkMm]" > >>>> > >>>> > >>> [KkMmGg] > >>> > >>> > >>> > >>>> + */ > >>>> +static int __init early_mem(char **p) > >>>> +{ > >>>> + unsigned long size, start; > >>>> + > >>>> + start = system_ram->start; > >>>> + size = memparse(*p, p); > >>>> > >>>> > >>> memparse() returns an unsigned long long. Is the truncation OK for avr32? > >>> > >>> > >>> > >>>> + if (**p == '@') > >>>> + start = memparse(*p + 1, p); > >>>> + > >>>> + system_ram->start = start; > >>>> + system_ram->end = system_ram->start + size - 1; > >>>> + return 0; > >>>> +} > >>>> +early_param("mem", early_mem); > >>>> + > >>>> static int __init parse_tag_core(struct tag *tag) > >>>> { > >>>> if (tag->hdr.size > 2) { > >>>> -- --- ~Randy Linux Plumbers Conference, 17-19 September 2008, Portland, Oregon USA http://linuxplumbersconf.org/ ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] avr32: added mem kernel command line option support 2008-09-15 15:36 ` Randy Dunlap @ 2008-09-16 7:14 ` Marco Stornelli 2008-09-16 8:06 ` Haavard Skinnemoen 0 siblings, 1 reply; 8+ messages in thread From: Marco Stornelli @ 2008-09-16 7:14 UTC (permalink / raw) To: Randy Dunlap; +Cc: Linux AVR32, linux-kernel From: Marco Stornelli <marco.stornelli@gmail.com> Now is it ok? Sorry but it's the first time I submit a patch for the kernel. Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com> --- --- linux-2.6.26.3/arch/avr32/kernel/setup.c.orig 2008-09-15 11:30:00.000000000 +0200 +++ linux-2.6.26.3/arch/avr32/kernel/setup.c 2008-09-16 09:06:31.000000000 +0200 @@ -283,6 +283,25 @@ static int __init early_parse_fbmem(char } early_param("fbmem", early_parse_fbmem); +/* + * Pick out the memory size. We look for mem=size@start, + * where start and size are "size[KkMmGg]" + */ +static int __init early_mem(char *p) +{ + resource_size_t size, start; + + start = system_ram->start; + size = memparse(p, &p); + if (*p == '@') + start = memparse(p + 1, &p); + + system_ram->start = start; + system_ram->end = system_ram->start + size - 1; + return 0; +} +early_param("mem", early_mem); + static int __init parse_tag_core(struct tag *tag) { if (tag->hdr.size > 2) { Randy Dunlap ha scritto: > On Mon, 15 Sep 2008 17:30:48 +0200 Marco Stornelli wrote: > >> From: Marco Stornelli <marco.stornelli@gmail.com> >> >> Fixed the type of size and start, now they are resource_size_t. >> Fixed the double pointer parameter, now it's only a single pointer. >> Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com> >> --- >> --- linux-2.6.26.5/arch/avr32/kernel/setup.c.orig 2008-09-15 11:30:00.000000000 +0200 >> >> +++ linux-2.6.26.5/arch/avr32/kernel/setup.c 2008-09-15 >> 11:30:17.000000000 +0200 >> @@ -283,6 +283,25 @@ static int __init early_parse_fbmem(char >> } >> early_param("fbmem", early_parse_fbmem); >> >> +/* >> + * Pick out the memory size. We look for mem=size@start, >> + * where start and size are "size[KkMmGg]" >> + */ >> +static int __init early_mem(char *p) >> +{ >> + resource_size_t size, start; >> + >> + start = system_ram->start; >> + size = memparse(p, &p); >> + if (**p == '@') >> + start = memparse(p + 1, &p); > > Lots of whitespace damage here. Your first patch looked OK > for whitespace, so something changed.... > > >> + >> + system_ram->start = start; >> + system_ram->end = system_ram->start + size - 1; >> + return 0; >> +} >> +early_param("mem", early_mem); >> + >> static int __init parse_tag_core(struct tag *tag) >> { >> if (tag->hdr.size > 2) { >> >> Randy Dunlap ha scritto: >>> On Mon, 15 Sep 2008 16:57:10 +0200 Marco Stornelli wrote: >>> >>> >>>> If you see the above function early_parse_fbmem: >>>> >>>> static int __init early_parse_fbmem(char *p) >>>> { >>>> int ret; >>>> unsigned long align; >>>> >>>> fbmem_size = memparse(p, &p); >>>> ......... >>>> >>>> where fbmem_size is a resource_size_t (u32 because avr32 is a 32-bit >>>> architecture), so I used the same philosophy. Maybe I can remove >>>> unsigned long and replace it with resource_size_t to be more uniform. >>>> >>> Yes, I think that would be better. >>> >>> Thanks. >>> >>> >>>> Randy Dunlap ha scritto: >>>> >>>>> On Mon, 15 Sep 2008 12:07:19 +0200 Marco Stornelli wrote: >>>>> >>>>> >>>>> >>>>>> From: Marco Stornelli <marco.stornelli@gmail.com> >>>>>> >>>>>> Added support for the mem kernel command line option >>>>>> Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com> >>>>>> --- >>>>>> --- setup.c.orig 2008-09-15 11:30:00.000000000 +0200 >>>>>> +++ setup.c 2008-09-15 11:30:17.000000000 +0200 >>>>>> @@ -283,6 +283,25 @@ static int __init early_parse_fbmem(char >>>>>> } >>>>>> early_param("fbmem", early_parse_fbmem); >>>>>> >>>>>> +/* >>>>>> + * Pick out the memory size. We look for mem=size@start, >>>>>> + * where start and size are "size[KkMm]" >>>>>> >>>>>> >>>>> [KkMmGg] >>>>> >>>>> >>>>> >>>>>> + */ >>>>>> +static int __init early_mem(char **p) >>>>>> +{ >>>>>> + unsigned long size, start; >>>>>> + >>>>>> + start = system_ram->start; >>>>>> + size = memparse(*p, p); >>>>>> >>>>>> >>>>> memparse() returns an unsigned long long. Is the truncation OK for avr32? >>>>> >>>>> >>>>> >>>>>> + if (**p == '@') >>>>>> + start = memparse(*p + 1, p); >>>>>> + >>>>>> + system_ram->start = start; >>>>>> + system_ram->end = system_ram->start + size - 1; >>>>>> + return 0; >>>>>> +} >>>>>> +early_param("mem", early_mem); >>>>>> + >>>>>> static int __init parse_tag_core(struct tag *tag) >>>>>> { >>>>>> if (tag->hdr.size > 2) { >>>>>> -- > > > --- > ~Randy > Linux Plumbers Conference, 17-19 September 2008, Portland, Oregon USA > http://linuxplumbersconf.org/ > -- Marco Stornelli Embedded Software Engineer CoRiTeL - Consorzio di Ricerca sulle Telecomunicazioni http://www.coritel.it marco.stornelli@coritel.it +39 06 72582838 ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] avr32: added mem kernel command line option support 2008-09-16 7:14 ` Marco Stornelli @ 2008-09-16 8:06 ` Haavard Skinnemoen 0 siblings, 0 replies; 8+ messages in thread From: Haavard Skinnemoen @ 2008-09-16 8:06 UTC (permalink / raw) To: Marco Stornelli; +Cc: Randy Dunlap, Linux AVR32, linux-kernel Marco Stornelli <marco.stornelli@coritel.it> wrote: > User-Agent: Thunderbird 2.0.0.16 (X11/20080720) Please see Documentation/email-clients.txt. Thunderbird apparently has pretty braindead defaults, but can be taught to behave. > From: Marco Stornelli <marco.stornelli@gmail.com> > > Now is it ok? Sorry but it's the first time I submit a patch for the kernel. Not really, sorry. This part is line-wrapped: > --- linux-2.6.26.3/arch/avr32/kernel/setup.c.orig 2008-09-15 > 11:30:00.000000000 +0200 > +++ linux-2.6.26.3/arch/avr32/kernel/setup.c 2008-09-16 > 09:06:31.000000000 +0200 I've fixed it up, but I recommend that you send a few patches to yourself and try to fix your setup. It's not much of a problem for a small patch like this, but longer, more complicated ones may take quite some time to unmangle. The rest of the patch looks good. Although avr32 only supports 32-bit physical addresses, I believe resource_size_t is more correct than unsigned long. Applied, thanks. Haavard ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2008-09-16 8:08 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2008-09-15 10:07 [PATCH 1/1] avr32: added mem kernel command line option support Marco Stornelli 2008-09-15 14:40 ` Randy Dunlap 2008-09-15 14:57 ` Marco Stornelli 2008-09-15 15:05 ` Randy Dunlap 2008-09-15 15:30 ` Marco Stornelli 2008-09-15 15:36 ` Randy Dunlap 2008-09-16 7:14 ` Marco Stornelli 2008-09-16 8:06 ` Haavard Skinnemoen
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox