[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20090824200950.GA3435@cmpxchg.org>
Date: Mon, 24 Aug 2009 22:09:50 +0200
From: Johannes Weiner <hannes@...xchg.org>
To: Randy Dunlap <randy.dunlap@...cle.com>
Cc: James Bottomley <James.Bottomley@...senpartnership.com>,
stern@...and.harvard.edu, akpm@...ux-foundation.org,
apw@...onical.com, mingo@...e.hu, linux-kernel@...r.kernel.org,
peterz@...radead.org
Subject: Re: [PATCH] Add kerneldoc for flush_scheduled_work()
Hello Randy,
On Mon, Aug 24, 2009 at 12:27:11PM -0700, Randy Dunlap wrote:
> On Mon, 24 Aug 2009 12:06:54 -0700 (PDT) Johannes Weiner wrote:
>
> I'll add this to my kernel-doc quilt patch series.
Thanks!
> Oh, one question below...
> > @@ -2119,11 +2122,19 @@ sub process_file($) {
> > } elsif (/$doc_content/) {
> > # miguel-style comment kludge, look for blank lines after
> > # @parameter line to signify start of description
> > - if ($1 eq "" &&
> > - ($section =~ m/^@/ || $section eq $section_context)) {
> > - dump_section($file, $section, xml_escape($contents));
> > - $section = $section_default;
> > - $contents = "";
> > + if ($1 eq "") {
> > + if ($section =~ m/^@/ || $section eq $section_context) {
> > + dump_section($file, $section, xml_escape($contents));
> > + $section = $section_default;
> > + $contents = "";
> > + } else {
> > + $contents .= "\n";
> > + }
> > + $in_purpose = 0;
> > + } elsif ($in_purpose == 1) {
> > + # Continued declaration purpose
> > + chomp($declaration_purpose);
> > + $declaration_purpose .= " " . $1;
>
> Why shouldn't this be:
> $declaration_purpose .= " " . xml_escape($1);
> ?
Sorry, this should be escaped of course! Could you edit the patch on
your side?
Thanks,
Hannes
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists