Re: m68k libc5 regression

From: Jiri Kosina
Date: Mon Jun 02 2008 - 06:27:50 EST


On Sun, 1 Jun 2008, Andrew Morton wrote:

> > - if (brk < mm->start_brk)
> > +#ifdef CONFIG_COMPAT_BRK
> > + min_brk = mm->end_code;
> > +#else
> > + min_brk = mm->start_brk;
> > +#endif
> > + if (brk < min_brk)
> > goto out;
> >
> OK, we have a problem here.
> Somebody has gone and checked this patch into their tree and it now
> appears in linux-next.

Ah, I have expected either you or Ingo (as my patch that introduced the
bug went through his tree too) to pick that up.

> I do not know how to work out how this patch got into linux-next.

Well, git-blame on mm/mmap.c in linux-next tree shows the commit id, and
then git-show --pretty=full tells you the comitter name.

--
Jiri Kosina
SUSE Labs
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/