From: Richard Weinberger <richard@nod.at>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org,
user-mode-linux-devel@lists.sourceforge.net,
Al Viro <viro@ftp.linux.org.uk>,
Al Viro <viro@zeniv.linux.org.uk>
Subject: Re: [PATCH 8/9] um: fix strrchr problems
Date: Mon, 29 Aug 2011 23:38:39 +0200 [thread overview]
Message-ID: <4E5C06DF.60508@nod.at> (raw)
In-Reply-To: <20110829142705.5be82d7c.akpm@linux-foundation.org>
Am 29.08.2011 23:27, schrieb Andrew Morton:
>
>> Subject: [PATCH 8/9] um: fix strrchr problems
>
> What are the problems?
>
> On Mon, 29 Aug 2011 18:13:38 +0200
> Richard Weinberger<richard@nod.at> wrote:
>
>> From: Al Viro<viro@ftp.linux.org.uk>
>>
>> Several years old patch, originally by jdike, I think...
>>
>> Signed-off-by: Al Viro<viro@zeniv.linux.org.uk>
>> Signed-off-by: Richard Weinberger<richard@nod.at>
>> ---
>> arch/um/Makefile | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/arch/um/Makefile b/arch/um/Makefile
>> index fab8121..c0f712c 100644
>> --- a/arch/um/Makefile
>> +++ b/arch/um/Makefile
>> @@ -41,7 +41,7 @@ KBUILD_CPPFLAGS += -I$(srctree)/$(ARCH_DIR)/sys-$(SUBARCH)
>> KBUILD_CFLAGS += $(CFLAGS) $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \
>> $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap \
>> -Din6addr_loopback=kernel_in6addr_loopback \
>> - -Din6addr_any=kernel_in6addr_any
>> + -Din6addr_any=kernel_in6addr_any -Dstrrchr=kernel_strrchr
>>
>> KBUILD_AFLAGS += $(ARCH_INCLUDE)
>
> z:/usr/src/linux-3.1-rc4> grep -r kernel_strrchr .
> z:/usr/src/linux-3.1-rc4>
>
> ok, I give up. How does this work?
*grrr*, you can drop this patch.
To my excuse, I've dropped it already from my queue but after pulling a
second time from Al's git branch it made it again into my queue and I
forgot about it, sorry!
Thanks,
//richard
next prev parent reply other threads:[~2011-08-29 21:38 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-29 16:13 UML fixes for 3.1-rcX (2nd try) Richard Weinberger
2011-08-29 16:13 ` [uml-devel] [PATCH 1/9] um: disable CMPXCHG_DOUBLE as it breaks UML build Richard Weinberger
2011-08-29 16:13 ` Richard Weinberger
2011-08-29 17:35 ` Christoph Lameter
2011-08-29 16:13 ` [uml-devel] [PATCH 2/9] um: drivers/xterm.c: fix a file descriptor leak Richard Weinberger
2011-08-29 16:13 ` Richard Weinberger
2011-08-29 16:13 ` [uml-devel] [PATCH 3/9] um: Save FPU registers between task switches Richard Weinberger
2011-08-29 16:13 ` Richard Weinberger
2011-08-29 16:13 ` [uml-devel] [PATCH 4/9] um: fix oopsable race in line_close() Richard Weinberger
2011-08-29 16:13 ` Richard Weinberger
2011-08-29 16:13 ` [uml-devel] [PATCH 5/9] um: winch_interrupt() can happen inside of free_winch() Richard Weinberger
2011-08-29 16:13 ` Richard Weinberger
2011-08-29 16:13 ` [uml-devel] [PATCH 6/9] um: fix free_winch() mess Richard Weinberger
2011-08-29 16:13 ` Richard Weinberger
2011-08-29 16:13 ` [uml-devel] [PATCH 7/9] um: PTRACE_[GS]ETFPXREGS had been wired on the wrong subarch Richard Weinberger
2011-08-29 16:13 ` Richard Weinberger
2011-08-29 16:13 ` [uml-devel] [PATCH 8/9] um: fix strrchr problems Richard Weinberger
2011-08-29 16:13 ` Richard Weinberger
2011-08-29 21:27 ` Andrew Morton
2011-08-29 21:38 ` Richard Weinberger [this message]
2011-08-29 22:12 ` Al Viro
2011-08-29 22:15 ` Richard Weinberger
2011-08-29 22:19 ` Al Viro
2011-08-29 22:25 ` Richard Weinberger
2011-08-29 23:28 ` [uml-devel] " Boaz Harrosh
2011-08-29 23:28 ` Boaz Harrosh
2011-08-30 0:23 ` Al Viro
2011-08-30 2:48 ` Al Viro
2011-08-30 10:32 ` Richard Weinberger
2011-08-30 12:48 ` Al Viro
2011-08-29 22:39 ` Arnaud Lacombe
2011-08-29 22:39 ` Arnaud Lacombe
2011-08-29 22:11 ` Al Viro
2011-08-30 3:41 ` [uml-devel] " Jeff Dike
2011-08-29 16:13 ` [uml-devel] [PATCH 9/9] um: clean arch_ptrace() up a bit Richard Weinberger
2011-08-29 16:13 ` Richard Weinberger
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=4E5C06DF.60508@nod.at \
--to=richard@nod.at \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=user-mode-linux-devel@lists.sourceforge.net \
--cc=viro@ftp.linux.org.uk \
--cc=viro@zeniv.linux.org.uk \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.