mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Hugh Dickins <hugh@veritas.com>
To: Gene Heskett <gene.heskett@verizon.net>
Cc: linux-kernel@vger.kernel.org,
	Michael Krufky <mkrufky@linuxtv.org>,
	Adrian Bunk <bunk@stusta.de>,
	Johannes Stezenbach <js@linuxtv.org>,
	Sam Ravnborg <sam@ravnborg.org>,
	Kirk Lapray <kirk.lapray@gmail.com>
Subject: Re: Linux 2.6.15-rc2
Date: Thu, 24 Nov 2005 07:45:40 +0000 (GMT)	[thread overview]
Message-ID: <Pine.LNX.4.61.0511240741020.5619@goblin.wat.veritas.com> (raw)
In-Reply-To: <200511231937.34206.gene.heskett@verizon.net>

On Wed, 23 Nov 2005, Gene Heskett wrote:
> On Wednesday 23 November 2005 18:40, Hugh Dickins wrote:
> >
> >No git familiarity needed:
> >http://ftp.kernel.org/pub/linux/kernel/v2.6/snapshots/
> >contains the daily patches against recent -rcs
> 
> Unforch, using a 2.6.14 base, applying 2.6.15-rc2 followed by
> 2.6.15-rc2-git3 blows up about 24 seconds into my makeit script:
> 
>   CC      arch/i386/kernel/cpu/mtrr/main.o
> arch/i386/kernel/cpu/mtrr/main.c: In function `set_mtrr':
> arch/i386/kernel/cpu/mtrr/main.c:225: error: `ipi_handler' undeclared
> (first use in this function)
> arch/i386/kernel/cpu/mtrr/main.c:225: error: (Each undeclared identifier
> is reported only once
> arch/i386/kernel/cpu/mtrr/main.c:225: error: for each function it
> appears in.)
> make[3]: *** [arch/i386/kernel/cpu/mtrr/main.o] Error 1
> make[2]: *** [arch/i386/kernel/cpu/mtrr] Error 2
> make[1]: *** [arch/i386/kernel/cpu] Error 2
> make: *** [arch/i386/kernel] Error 2

That's one of the things fixed by Andrew's patch below
(though Linus fixed it differently in the end).
Or you could just wait for 2.6.15-rc2-git4, should be along soon.

Hugh

diff -puN include/linux/smp.h~smp_call_function-must-be-a-macro include/linux/smp.h
--- devel/include/linux/smp.h~smp_call_function-must-be-a-macro	2005-11-23 00:14:19.000000000 -0800
+++ devel-akpm/include/linux/smp.h	2005-11-23 00:20:54.000000000 -0800
@@ -94,13 +94,7 @@ void smp_prepare_boot_cpu(void);
  */
 #define raw_smp_processor_id()			0
 #define hard_smp_processor_id()			0
-
-static inline int smp_call_function(void (*func) (void *info), void *info,
-				    int retry, int wait)
-{
-	return 0;
-}
-
+#define smp_call_function(func,info,retry,wait)	({ 0; })
 #define on_each_cpu(func,info,retry,wait)	({ func(info); 0; })
 static inline void smp_send_reschedule(int cpu) { }
 #define num_booting_cpus()			1
diff -puN net/core/flow.c~smp_call_function-must-be-a-macro net/core/flow.c
--- devel/net/core/flow.c~smp_call_function-must-be-a-macro	2005-11-23 00:17:40.000000000 -0800
+++ devel-akpm/net/core/flow.c	2005-11-23 00:17:47.000000000 -0800
@@ -292,7 +292,7 @@ void flow_cache_flush(void)
 	init_completion(&info.completion);
 
 	local_bh_disable();
-	smp_call_function(flow_cache_flush_per_cpu, &info, 1, 0);
+	(void)smp_call_function(flow_cache_flush_per_cpu, &info, 1, 0);
 	flow_cache_flush_tasklet((unsigned long)&info);
 	local_bh_enable();
 

  reply	other threads:[~2005-11-24  7:45 UTC|newest]

Thread overview: 70+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-11-20  3:40 Linus Torvalds
2005-11-20  5:18 ` Gene Heskett
2005-11-20 17:02   ` Gene Heskett
2005-11-20 17:37     ` Gene Heskett
2005-11-20 19:17       ` Gene Heskett
2005-11-20 22:36   ` Kasper Sandberg
2005-11-20 23:58     ` Gene Heskett
2005-11-21 21:17       ` Kasper Sandberg
2005-11-21 23:52         ` Gene Heskett
2005-11-23  9:04           ` Kasper Sandberg
2005-11-21  0:15   ` Johannes Stezenbach
2005-11-21  1:07     ` Gene Heskett
2005-11-21  1:32       ` Johannes Stezenbach
2005-11-21  1:49         ` Gene Heskett
2005-11-23  1:56           ` Michael Krufky
2005-11-23  4:36             ` Gene Heskett
2005-11-23 17:42               ` Adrian Bunk
2005-11-23 18:19                 ` Gene Heskett
2005-11-23 18:26                 ` Sam Ravnborg
2005-11-23 18:38                   ` Adrian Bunk
2005-11-26 20:30                   ` [PATCH] fix broken hybrid v4l-dvb frontend selection Michael Krufky
2005-11-23 18:31                 ` Linux 2.6.15-rc2 Gene Heskett
2005-11-23 19:17                 ` Michael Krufky
2005-11-23 19:36                   ` Gene Heskett
2005-11-23 19:54                     ` Michael Krufky
2005-11-23 20:14                       ` Gene Heskett
2005-11-23 20:28                         ` Michael Krufky
2005-11-23 21:26                           ` Hugh Dickins
2005-11-23 22:36                             ` Gene Heskett
2005-11-23 23:40                               ` Hugh Dickins
2005-11-23 23:53                                 ` Gene Heskett
2005-11-24  0:37                                 ` Gene Heskett
2005-11-24  7:45                                   ` Hugh Dickins [this message]
2005-11-24 15:15                                     ` Gene Heskett
2005-11-24 17:02                                     ` Michael Krufky
2005-11-24 19:07                                       ` [PATCH] hybrid v4l/dvb advanced frontend selection fix Michael Krufky
2005-11-24  4:40                               ` Linux 2.6.15-rc2 Paul Jackson
2005-11-23 20:38                   ` Adrian Bunk
2005-11-23 20:49                     ` Michael Krufky
2005-11-23 21:04                       ` Adrian Bunk
2005-11-20 13:20 ` Michael Geithe
2005-11-20 14:52   ` cinergyT2 oops (was Re: Linux 2.6.15-rc2) Alexey Dobriyan
2005-11-20 15:04     ` Michael Geithe
2005-11-20 16:13   ` Linux 2.6.15-rc2 Dmitry Torokhov
2005-11-20 19:13     ` Michael Geithe
2005-11-22  4:30 ` Jeffrey Hundstad
2005-11-22 23:00   ` Andrew Morton
2005-11-23  0:50     ` Linus Torvalds
2005-11-23  1:05       ` Andrew Morton
2005-11-23  1:32         ` Andi Kleen
2005-11-23  1:43           ` Linus Torvalds
2005-11-23  2:16           ` David S. Miller
2005-11-23  1:39         ` Linus Torvalds
2005-11-23  2:08           ` Andrew Morton
2005-11-23  3:41           ` Jeffrey Hundstad
2005-11-23  3:48             ` Linus Torvalds
2005-11-23 16:48               ` Jeffrey Hundstad
2005-11-23  5:01           ` Zan Lynx
2005-11-23  1:14       ` Zan Lynx
2005-11-23  4:42       ` Gene Heskett
2005-11-24 12:37 ` Ed Tomlinson
2005-11-24 13:07   ` Andreas Ericsson
2005-11-24 18:44     ` Linus Torvalds
2005-11-24 19:42       ` Junio C Hamano
2005-11-24 19:57         ` Linus Torvalds
2005-11-24 21:02           ` Junio C Hamano
2005-11-24 18:37   ` Linus Torvalds
2005-11-24 19:52     ` Nick Hengeveld
2005-11-25  2:50       ` Ed Tomlinson
2005-11-25  8:42         ` Andreas Ericsson

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=Pine.LNX.4.61.0511240741020.5619@goblin.wat.veritas.com \
    --to=hugh@veritas.com \
    --cc=bunk@stusta.de \
    --cc=gene.heskett@verizon.net \
    --cc=js@linuxtv.org \
    --cc=kirk.lapray@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mkrufky@linuxtv.org \
    --cc=sam@ravnborg.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®