* [PATCH] kernel-doc: handle spaces in array size
@ 2007-04-06 18:47 Randy Dunlap
2007-04-06 19:24 ` Jan Engelhardt
0 siblings, 1 reply; 8+ messages in thread
From: Randy Dunlap @ 2007-04-06 18:47 UTC (permalink / raw)
To: lkml; +Cc: akpm
From: Randy Dunlap <randy.dunlap@oracle.com>
Unfortunately, kernel-doc has problems with a struct field like this:
uint8_t databuf[NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE];
simply due to the spaces around the "+" sign, so drop all spaces inside
[...] so that parsing is done correctly (in some sense).
Warning(linux-2.6.20-git15/include/linux/mtd/nand.h:304): No description found for parameter 'NAND_MAX_OOBSIZE]'
This needs to sit in -mm for awhile to see if it has any adverse effects.
And yes, this is just a hack until kernel-doc learns to do better
parsing.
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
---
scripts/kernel-doc | 6 ++++++
1 file changed, 6 insertions(+)
--- linux-2.6.21-rc6.orig/scripts/kernel-doc
+++ linux-2.6.21-rc6/scripts/kernel-doc
@@ -1452,6 +1452,12 @@ sub create_parameterlist($$$) {
$arg =~ s/\s*:\s*/:/g;
$arg =~ s/\s*\[/\[/g;
+ # no spaces inside [array size expression];
+ # messes up split/pop/shift/unshift below;
+ while ($arg =~ m/\[.*\s.*\]/) {
+ $arg =~ s/\[(.*)\s(.*)\]/\[$1$2\]/;
+ }
+
my @args = split('\s*,\s*', $arg);
if ($args[0] =~ m/\*/) {
$args[0] =~ s/(\*+)\s*/ $1/;
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH] kernel-doc: handle spaces in array size 2007-04-06 18:47 [PATCH] kernel-doc: handle spaces in array size Randy Dunlap @ 2007-04-06 19:24 ` Jan Engelhardt 2007-04-06 23:03 ` Randy Dunlap 0 siblings, 1 reply; 8+ messages in thread From: Jan Engelhardt @ 2007-04-06 19:24 UTC (permalink / raw) To: Randy Dunlap; +Cc: lkml, akpm On Apr 6 2007 11:47, Randy Dunlap wrote: > >Unfortunately, kernel-doc has problems with a struct field like this: > uint8_t databuf[NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE]; > >simply due to the spaces around the "+" sign, so drop all spaces inside >[...] so that parsing is done correctly (in some sense). > >@@ -1452,6 +1452,12 @@ sub create_parameterlist($$$) { > $arg =~ s/\s*:\s*/:/g; > $arg =~ s/\s*\[/\[/g; > >+ # no spaces inside [array size expression]; >+ # messes up split/pop/shift/unshift below; >+ while ($arg =~ m/\[.*\s.*\]/) { >+ $arg =~ s/\[(.*)\s(.*)\]/\[$1$2\]/; >+ } >+ > my @args = split('\s*,\s*', $arg); > if ($args[0] =~ m/\*/) { > $args[0] =~ s/(\*+)\s*/ $1/; while($arg =~ s/\[(.*)\s+(.*)\]/[$1$2]/) { } should do it, and saves us the pre-matching. (Also note the + at \s) (No need to escape [ and ] in the target pattern.) I can also offer this gem which should do it the most saving way by matching the inside of [] exactly once, and otherwise matching/replacing only on \s: $arg =~ s{\[(.*)\]}{($_=$1)=~s/\s+//g;"[$_]"}e; (I already hear everyone screaming... ;-) Jan -- ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] kernel-doc: handle spaces in array size 2007-04-06 19:24 ` Jan Engelhardt @ 2007-04-06 23:03 ` Randy Dunlap 2007-04-06 23:38 ` Jan Engelhardt 0 siblings, 1 reply; 8+ messages in thread From: Randy Dunlap @ 2007-04-06 23:03 UTC (permalink / raw) To: Jan Engelhardt; +Cc: lkml, akpm On Fri, 6 Apr 2007 21:24:48 +0200 (MEST) Jan Engelhardt wrote: > On Apr 6 2007 11:47, Randy Dunlap wrote: > > > >Unfortunately, kernel-doc has problems with a struct field like this: > > uint8_t databuf[NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE]; > > > >simply due to the spaces around the "+" sign, so drop all spaces inside > >[...] so that parsing is done correctly (in some sense). > > ... > > while($arg =~ s/\[(.*)\s+(.*)\]/[$1$2]/) { > } > > should do it, and saves us the pre-matching. (Also note the + at \s) > (No need to escape [ and ] in the target pattern.) Yep, that works. Want to send it with sign-off or shall I just send a new patch to akpm? > I can also offer this gem which should do it the most saving way by > matching the inside of [] exactly once, and otherwise > matching/replacing only on \s: > > $arg =~ s{\[(.*)\]}{($_=$1)=~s/\s+//g;"[$_]"}e; > > (I already hear everyone screaming... ;-) No, thanks. --- ~Randy *** Remember to use Documentation/SubmitChecklist when testing your code *** ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] kernel-doc: handle spaces in array size 2007-04-06 23:03 ` Randy Dunlap @ 2007-04-06 23:38 ` Jan Engelhardt 2007-04-07 0:53 ` [PATCH v2] " Randy Dunlap 0 siblings, 1 reply; 8+ messages in thread From: Jan Engelhardt @ 2007-04-06 23:38 UTC (permalink / raw) To: Randy Dunlap; +Cc: lkml, akpm On Apr 6 2007 16:03, Randy Dunlap wrote: >On Fri, 6 Apr 2007 21:24:48 +0200 (MEST) Jan Engelhardt wrote: > >> On Apr 6 2007 11:47, Randy Dunlap wrote: >> > >> >Unfortunately, kernel-doc has problems with a struct field like this: >> > uint8_t databuf[NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE]; >> > >> >simply due to the spaces around the "+" sign, so drop all spaces inside >> >[...] so that parsing is done correctly (in some sense). >> > > >... > >> >> while($arg =~ s/\[(.*)\s+(.*)\]/[$1$2]/) { >> } >> >> should do it, and saves us the pre-matching. (Also note the + at \s) >> (No need to escape [ and ] in the target pattern.) > >Yep, that works. Want to send it with sign-off or shall I just >send a new patch to akpm? Signed-off-by: Jan Engelhardt <jengelh@gmx.de> Jan -- ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2] kernel-doc: handle spaces in array size 2007-04-06 23:38 ` Jan Engelhardt @ 2007-04-07 0:53 ` Randy Dunlap 2007-04-07 15:04 ` [PATCH] kernel-doc: handle arrays with arithmetic expressions as initializers <was Re: [PATCH v2] kernel-doc: handle spaces in array size> Borislav Petkov 0 siblings, 1 reply; 8+ messages in thread From: Randy Dunlap @ 2007-04-07 0:53 UTC (permalink / raw) To: Jan Engelhardt; +Cc: lkml, akpm From: Jan Engelhardt <jengelh@linux01.gwdg.de> Unfortunately, kernel-doc has problems with a struct field like this: uint8_t databuf[NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE]; simply due to the spaces around the "+" sign, so drop all spaces inside [...] so that parsing is done correctly (in some sense). Warning(linux-2.6.20-git15/include/linux/mtd/nand.h:304): No description found for parameter 'NAND_MAX_OOBSIZE]' This needs to sit in -mm for awhile to see if it has any adverse effects. And yes, this is just a hack until kernel-doc learns to do better parsing. Signed-off-by: Jan Engelhardt <jengelh@gmx.de> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> --- scripts/kernel-doc | 5 +++++ 1 file changed, 5 insertions(+) --- linux-2.6.21-rc6.orig/scripts/kernel-doc +++ linux-2.6.21-rc6/scripts/kernel-doc @@ -1452,6 +1452,11 @@ sub create_parameterlist($$$) { $arg =~ s/\s*:\s*/:/g; $arg =~ s/\s*\[/\[/g; + # no spaces inside [array size expression]; + # messes up split/pop/shift/unshift below; + while ($arg =~ s/\[(.*)\s+(.*)\]/[$1$2]/) { + } + my @args = split('\s*,\s*', $arg); if ($args[0] =~ m/\*/) { $args[0] =~ s/(\*+)\s*/ $1/; ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] kernel-doc: handle arrays with arithmetic expressions as initializers <was Re: [PATCH v2] kernel-doc: handle spaces in array size> 2007-04-07 0:53 ` [PATCH v2] " Randy Dunlap @ 2007-04-07 15:04 ` Borislav Petkov 2007-04-07 18:26 ` Randy Dunlap 2007-04-07 18:27 ` [PATCH v3] kernel-doc: handle arrays with arithmetic expressions as initializers Randy Dunlap 0 siblings, 2 replies; 8+ messages in thread From: Borislav Petkov @ 2007-04-07 15:04 UTC (permalink / raw) To: Randy Dunlap; +Cc: Jan Engelhardt, lkml, akpm On Fri, Apr 06, 2007 at 05:53:25PM -0700, Randy Dunlap wrote: > From: Jan Engelhardt <jengelh@linux01.gwdg.de> > > Unfortunately, kernel-doc has problems with a struct field like this: > uint8_t databuf[NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE]; > > simply due to the spaces around the "+" sign, so drop all spaces inside > [...] so that parsing is done correctly (in some sense). > > Warning(linux-2.6.20-git15/include/linux/mtd/nand.h:304): No description found for parameter 'NAND_MAX_OOBSIZE]' > > This needs to sit in -mm for awhile to see if it has any adverse effects. > > And yes, this is just a hack until kernel-doc learns to do better > parsing. > > Signed-off-by: Jan Engelhardt <jengelh@gmx.de> > Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> > --- > scripts/kernel-doc | 5 +++++ > 1 file changed, 5 insertions(+) > > --- linux-2.6.21-rc6.orig/scripts/kernel-doc > +++ linux-2.6.21-rc6/scripts/kernel-doc > @@ -1452,6 +1452,11 @@ sub create_parameterlist($$$) { > $arg =~ s/\s*:\s*/:/g; > $arg =~ s/\s*\[/\[/g; > > + # no spaces inside [array size expression]; > + # messes up split/pop/shift/unshift below; > + while ($arg =~ s/\[(.*)\s+(.*)\]/[$1$2]/) { > + } > + > my @args = split('\s*,\s*', $arg); > if ($args[0] =~ m/\*/) { > $args[0] =~ s/(\*+)\s*/ $1/; > - In a different approach here's a patch that handles the special case of composite arithmetic expressions in array size initializers. With it, prior to pushing the split strings on the @first_arg array, I split the keywords before the array name as before and then keep the array name along with the subscript expression as a single whole element which gets pushed last. In this manner, kernel-doc produces correct output without removing whitespaces which makes the array subscripts unreadable in the docs. Signed-off-by: Borislav Petkov <bbpetkov@yahoo.de> --- 21-rc6/scripts/kernel-doc.orig 2007-04-07 16:48:51.000000000 +0200 +++ 21-rc6/scripts/kernel-doc 2007-04-07 16:51:17.000000000 +0200 @@ -1456,7 +1456,16 @@ sub create_parameterlist($$$) { if ($args[0] =~ m/\*/) { $args[0] =~ s/(\*+)\s*/ $1/; } - my @first_arg = split('\s+', shift @args); + + my @first_arg; + if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) { + shift @args; + push(@first_arg, split('\s+', $1)); + push(@first_arg, $2); + } else { + @first_arg = split('\s+', shift @args); + } + unshift(@args, pop @first_arg); $type = join " ", @first_arg; -- Regards/Gruß, Boris. ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] kernel-doc: handle arrays with arithmetic expressions as initializers <was Re: [PATCH v2] kernel-doc: handle spaces in array size> 2007-04-07 15:04 ` [PATCH] kernel-doc: handle arrays with arithmetic expressions as initializers <was Re: [PATCH v2] kernel-doc: handle spaces in array size> Borislav Petkov @ 2007-04-07 18:26 ` Randy Dunlap 2007-04-07 18:27 ` [PATCH v3] kernel-doc: handle arrays with arithmetic expressions as initializers Randy Dunlap 1 sibling, 0 replies; 8+ messages in thread From: Randy Dunlap @ 2007-04-07 18:26 UTC (permalink / raw) To: bbpetkov; +Cc: Jan Engelhardt, lkml, akpm On Sat, 7 Apr 2007 17:04:44 +0200 Borislav Petkov wrote: > > In a different approach here's a patch that handles the special case of > composite arithmetic expressions in array size initializers. With it, > prior to pushing the split strings on the @first_arg array, I split the > keywords before the array name as before and then keep the array name > along with the subscript expression as a single whole element which gets > pushed last. In this manner, kernel-doc produces correct output without > removing whitespaces which makes the array subscripts unreadable in the docs. Nice job. Andrew, please drop kernel-doc-handle-spaces-in-array-size.patch and I'll (re)send this one to you. --- ~Randy *** Remember to use Documentation/SubmitChecklist when testing your code *** ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v3] kernel-doc: handle arrays with arithmetic expressions as initializers 2007-04-07 15:04 ` [PATCH] kernel-doc: handle arrays with arithmetic expressions as initializers <was Re: [PATCH v2] kernel-doc: handle spaces in array size> Borislav Petkov 2007-04-07 18:26 ` Randy Dunlap @ 2007-04-07 18:27 ` Randy Dunlap 1 sibling, 0 replies; 8+ messages in thread From: Randy Dunlap @ 2007-04-07 18:27 UTC (permalink / raw) To: bbpetkov, akpm; +Cc: Jan Engelhardt, lkml From: Borislav Petkov <bbpetkov@yahoo.de> In a different approach here's a patch that handles the special case of composite arithmetic expressions in array size initializers. With it, prior to pushing the split strings on the @first_arg array, I split the keywords before the array name as before and then keep the array name along with the subscript expression as a single whole element which gets pushed last. In this manner, kernel-doc produces correct output without removing whitespaces which makes the array subscripts unreadable in the docs. Signed-off-by: Borislav Petkov <bbpetkov@yahoo.de> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> --- scripts/kernel-doc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) --- linux-2.6.21-rc6.orig/scripts/kernel-doc +++ linux-2.6.21-rc6/scripts/kernel-doc @@ -1456,7 +1456,16 @@ sub create_parameterlist($$$) { if ($args[0] =~ m/\*/) { $args[0] =~ s/(\*+)\s*/ $1/; } - my @first_arg = split('\s+', shift @args); + + my @first_arg; + if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) { + shift @args; + push(@first_arg, split('\s+', $1)); + push(@first_arg, $2); + } else { + @first_arg = split('\s+', shift @args); + } + unshift(@args, pop @first_arg); $type = join " ", @first_arg; ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2007-04-07 18:26 UTC | newest] Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2007-04-06 18:47 [PATCH] kernel-doc: handle spaces in array size Randy Dunlap 2007-04-06 19:24 ` Jan Engelhardt 2007-04-06 23:03 ` Randy Dunlap 2007-04-06 23:38 ` Jan Engelhardt 2007-04-07 0:53 ` [PATCH v2] " Randy Dunlap 2007-04-07 15:04 ` [PATCH] kernel-doc: handle arrays with arithmetic expressions as initializers <was Re: [PATCH v2] kernel-doc: handle spaces in array size> Borislav Petkov 2007-04-07 18:26 ` Randy Dunlap 2007-04-07 18:27 ` [PATCH v3] kernel-doc: handle arrays with arithmetic expressions as initializers Randy Dunlap
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox
Powered by JetHome