LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: Jiri Kosina <jkosina@suse.cz>
Cc: vda.linux@googlemail.com, hugh@veritas.com,
torvalds@linux-foundation.org, deller@gmx.de,
jirislaby@gmail.com, jer@gentoo.org, linux-input@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: Who broke cb8f488c33 patch? (was Re: [PATCH 1/1] USBHID: correct start/stop cycle)
Date: Tue, 11 Nov 2008 16:50:38 -0800 [thread overview]
Message-ID: <20081111165038.fb1f2f45.akpm@linux-foundation.org> (raw)
In-Reply-To: <alpine.LNX.1.10.0811120126320.24889@jikos.suse.cz>
On Wed, 12 Nov 2008 01:34:54 +0100 (CET)
Jiri Kosina <jkosina@suse.cz> wrote:
> On Wed, 12 Nov 2008, Denys Vlasenko wrote:
>
> > > > > I fully bisected it, and the final "buggy" patch seems to have been
> > > > > Denys Vlasenko's patch: cb8f488c33539f096580e202f5438a809195008f (see
> > > > > http://github.com/jonsmirl/digispeaker/commit/cb8f488c33539f096580e202f5438a809195008f)
> > > > > Denys: Any reason you removed "!prev" in front of "expand_stack"?
> > > > Looks like I erroneously thought it can't be NULL,
> > > > or that expand_upwards() is ok with getting NULL vma parameter.
> > > > I looked again and neither is true.
> > > > Sorry, looks like I indeed broke this.
> > > Hmm, so ... ? Seems like this didn't get fixed in Linus' tree yet?
> > I found my original email in "sent" folder. The patch in that mail does
> > NOT remove !prev. That change had beed added by someone else. See
> > attached file with original email.
> > Ok, I think we are not much interested in who did it,
>
> Hmm, I in fact think we would like to know who removed the check and
> folded it into your original patch. I have added all the Signoffs and CCs
> to the recepient list.
>
> Andrew usually puts
>
> [someone@somewhere.com: added this and that to the patch]
>
> marker into the changelog, but it's not the case here.
>
> Having your name in Signed-off-by field of something you are not aware of
> should make you feel at least a little bit nervous IMHO.
>
> > let's fix it for good.
> > Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
> > --- linux-2.6.28-rc4/mm/mmap.c Mon Nov 10 01:36:15 2008
> > +++ linux-2.6.28-rc4.fix/mm/mmap.c Wed Nov 12 01:21:39 2008
> > @@ -1704,7 +1704,7 @@
> > vma = find_vma_prev(mm, addr, &prev);
> > if (vma && (vma->vm_start <= addr))
> > return vma;
> > - if (expand_stack(prev, addr))
> > + if (!prev || expand_stack(prev, addr))
> > return NULL;
> > if (prev->vm_flags & VM_LOCKED) {
> > if (mlock_vma_pages_range(prev, addr, prev->vm_end) < 0)
>
It looks like this was caused by me fixing rejects. That was the fancy
include-lots-of-context-so-it-wont-apply patch.
next prev parent reply other threads:[~2008-11-12 0:51 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-01 22:41 [PATCH 1/1] USBHID: correct start/stop cycle Jiri Slaby
2008-11-01 23:02 ` Jiri Kosina
2008-11-01 23:07 ` Jiri Slaby
2008-11-02 10:43 ` Helge Deller
2008-11-02 10:55 ` Jiri Slaby
2008-11-02 16:50 ` Helge Deller
2008-11-02 19:24 ` Denys Vlasenko
2008-11-11 23:22 ` Jiri Kosina
2008-11-12 0:24 ` Denys Vlasenko
2008-11-12 0:34 ` Who broke cb8f488c33 patch? (was Re: [PATCH 1/1] USBHID: correct start/stop cycle) Jiri Kosina
2008-11-12 0:50 ` Andrew Morton [this message]
2008-11-12 9:23 ` Jiri Slaby
2008-11-13 15:32 ` Helge Deller
2008-11-13 16:22 ` Linus Torvalds
2008-11-11 22:52 ` [PATCH 1/1] USBHID: correct start/stop cycle Jiri Kosina
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20081111165038.fb1f2f45.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=deller@gmx.de \
--cc=hugh@veritas.com \
--cc=jer@gentoo.org \
--cc=jirislaby@gmail.com \
--cc=jkosina@suse.cz \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
--cc=vda.linux@googlemail.com \
--subject='Re: Who broke cb8f488c33 patch? (was Re: [PATCH 1/1] USBHID: correct start/stop cycle)' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).