All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@elte.hu>
To: Jaswinder Singh Rajput <jaswinderlinux@gmail.com>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Adrian Bunk <bunk@kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Natalie Protasevich <protasnb@gmail.com>,
	Kernel Testers List <kernel-testers@vger.kernel.org>,
	Network Development <netdev@vger.kernel.org>,
	Linux ACPI <linux-acpi@vger.kernel.org>,
	Linux PM List <linux-pm@lists.linux-foundation.org>,
	Linux SCSI List <linux-scsi@vger.kernel.org>
Subject: Re: 2.6.29-rc1: Reported regressions from 2.6.28
Date: Sun, 11 Jan 2009 14:52:37 +0100	[thread overview]
Message-ID: <20090111135237.GA20184@elte.hu> (raw)
In-Reply-To: <3f9a31f40901110546h4c069b5dx9726a0fbf8caf5a1@mail.gmail.com>


* Jaswinder Singh Rajput <jaswinderlinux@gmail.com> wrote:

> On Sun, Jan 11, 2009 at 4:42 PM, Rafael J. Wysocki <rjw@sisk.pl> wrote:
> >
> > Regressions with patches
> > ------------------------
> >
> > Bug-Entry       : http://bugzilla.kernel.org/show_bug.cgi?id=12428
> > Subject         : Build error on latest git
> > Submitter       : Petr Titera <P.Titera@century.cz>
> > Date            : 2009-01-11 9:49 (1 days old)
> > References      : http://marc.info/?l=linux-kernel&m=123166856318712&w=4
> > Handled-By      : Petr Titera <P.Titera@century.cz>
> > Patch           : http://marc.info/?l=linux-kernel&m=123167509024996&w=4
> 
> This is a wrong fix, asm/smp.h should only be included when CONFIG_SMP 
> is defined.
> 
> I am still in the process of cleaning non-smp data from asm/smp.h for 
> x86
> 
> Attach patch is the solution for the time being
> 
> Ingo, can you please put this in urgent queue.

yes, it already is - see below.

	Ingo

----------------->
From 8b5a33599c541cf5bf66304343d08ff2795d038b Mon Sep 17 00:00:00 2001
From: Jaswinder Singh Rajput <jaswinder@infradead.org>
Date: Sun, 11 Jan 2009 18:38:55 +0530
Subject: [PATCH] x86: fix mpparse.c build error on latest git

Fix this by reintroducing asm/smp.h include in mpparse.c - later on
I will fix this by removing non-smp data from smp.h.

Reported-by: Petr Titera <P.Titera@century.cz>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
 arch/x86/kernel/mpparse.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/x86/kernel/mpparse.c b/arch/x86/kernel/mpparse.c
index c0601c2..a649a4c 100644
--- a/arch/x86/kernel/mpparse.c
+++ b/arch/x86/kernel/mpparse.c
@@ -27,6 +27,7 @@
 #include <asm/e820.h>
 #include <asm/trampoline.h>
 #include <asm/setup.h>
+#include <asm/smp.h>
 
 #include <mach_apic.h>
 #ifdef CONFIG_X86_32

WARNING: multiple messages have this Message-ID (diff)
From: Ingo Molnar <mingo@elte.hu>
To: Jaswinder Singh Rajput <jaswinderlinux@gmail.com>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Adrian Bunk <bunk@kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Natalie Protasevich <protasnb@gmail.com>,
	Kernel Testers List <kernel-testers@vger.kernel.org>,
	Network Development <netdev@vger.kernel.org>,
	Linux ACPI <linux-acpi@vger.kernel.org>,
	Linux PM List <linux-pm@lists.linux-foundation.org>,
	Linux SCSI List <linux-scsi@vger.kernel.org>
Subject: Re: 2.6.29-rc1: Reported regressions from 2.6.28
Date: Sun, 11 Jan 2009 14:52:37 +0100	[thread overview]
Message-ID: <20090111135237.GA20184@elte.hu> (raw)
In-Reply-To: <3f9a31f40901110546h4c069b5dx9726a0fbf8caf5a1@mail.gmail.com>


* Jaswinder Singh Rajput <jaswinderlinux@gmail.com> wrote:

> On Sun, Jan 11, 2009 at 4:42 PM, Rafael J. Wysocki <rjw@sisk.pl> wrote:
> >
> > Regressions with patches
> > ------------------------
> >
> > Bug-Entry       : http://bugzilla.kernel.org/show_bug.cgi?id=12428
> > Subject         : Build error on latest git
> > Submitter       : Petr Titera <P.Titera@century.cz>
> > Date            : 2009-01-11 9:49 (1 days old)
> > References      : http://marc.info/?l=linux-kernel&m=123166856318712&w=4
> > Handled-By      : Petr Titera <P.Titera@century.cz>
> > Patch           : http://marc.info/?l=linux-kernel&m=123167509024996&w=4
> 
> This is a wrong fix, asm/smp.h should only be included when CONFIG_SMP 
> is defined.
> 
> I am still in the process of cleaning non-smp data from asm/smp.h for 
> x86
> 
> Attach patch is the solution for the time being
> 
> Ingo, can you please put this in urgent queue.

yes, it already is - see below.

	Ingo

----------------->
>From 8b5a33599c541cf5bf66304343d08ff2795d038b Mon Sep 17 00:00:00 2001
From: Jaswinder Singh Rajput <jaswinder@infradead.org>
Date: Sun, 11 Jan 2009 18:38:55 +0530
Subject: [PATCH] x86: fix mpparse.c build error on latest git

Fix this by reintroducing asm/smp.h include in mpparse.c - later on
I will fix this by removing non-smp data from smp.h.

Reported-by: Petr Titera <P.Titera@century.cz>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
 arch/x86/kernel/mpparse.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/x86/kernel/mpparse.c b/arch/x86/kernel/mpparse.c
index c0601c2..a649a4c 100644
--- a/arch/x86/kernel/mpparse.c
+++ b/arch/x86/kernel/mpparse.c
@@ -27,6 +27,7 @@
 #include <asm/e820.h>
 #include <asm/trampoline.h>
 #include <asm/setup.h>
+#include <asm/smp.h>
 
 #include <mach_apic.h>
 #ifdef CONFIG_X86_32

  reply	other threads:[~2009-01-11 13:52 UTC|newest]

Thread overview: 106+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-11 11:12 2.6.29-rc1: Reported regressions from 2.6.28 Rafael J. Wysocki
2009-01-11 11:12 ` [Bug #12399] USB wakeup problem on Toshiba Portege R500 Rafael J. Wysocki
2009-01-11 11:12   ` Rafael J. Wysocki
2009-01-11 21:14   ` Maxim Levitsky
2009-01-11 21:14     ` Maxim Levitsky
2009-01-11 11:16 ` [Bug #12414] iwl4965 cannot use "ap auto" on latest 2.6.28/29? Rafael J. Wysocki
2009-01-11 11:16   ` Rafael J. Wysocki
2009-01-11 13:57   ` Jeff Chua
2009-01-11 13:57     ` Jeff Chua
     [not found]     ` <b6a2187b0901110557xb696d03n9a7c7acad122e561-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-01-11 18:55       ` Rafael J. Wysocki
2009-01-11 18:55         ` Rafael J. Wysocki
2009-01-11 11:16 ` [Bug #12402] 2.6.29-rc: kernel BUG at fs/xfs/support/debug.c:108 Rafael J. Wysocki
2009-01-11 11:16   ` Rafael J. Wysocki
2009-01-11 11:16 ` [Bug #12415] WARNING: at drivers/net/wireless/iwlwifi/iwl-sta.c:689 Rafael J. Wysocki
2009-01-11 11:16   ` Rafael J. Wysocki
2009-01-12 11:15   ` Christian Borntraeger
2009-01-12 11:15     ` Christian Borntraeger
     [not found]     ` <200901121215.31749.borntraeger-tA70FqPdS9bQT0dZR+AlfA@public.gmane.org>
2009-01-12 12:47       ` Rafael J. Wysocki
2009-01-12 12:47         ` Rafael J. Wysocki
     [not found]         ` <200901121347.42799.rjw-KKrjLPT3xs0@public.gmane.org>
2009-01-18 15:49           ` Christian Borntraeger
2009-01-18 15:49             ` Christian Borntraeger
2009-01-11 11:16 ` [Bug #12416] Recent change to kernel spikes out ccache/distcc Rafael J. Wysocki
2009-01-11 11:16   ` Rafael J. Wysocki
2009-01-11 11:16 ` [Bug #12400] git-latest: kernel oops in IOMMU setup Rafael J. Wysocki
2009-01-11 11:16   ` Rafael J. Wysocki
2009-01-11 11:16 ` [Bug #12417] glx performance drop with: "x86: PAT: implement track/untrack of pfnmap regions for x86 - v3" Rafael J. Wysocki
2009-01-11 11:16   ` Rafael J. Wysocki
2009-01-14  7:38   ` Alexey Fisher
2009-01-14  7:38     ` Alexey Fisher
     [not found]     ` <496D968C.4050405-M18mAb7Tlt0yCq4wW13eYl6hYfS7NtTn@public.gmane.org>
2009-01-14  7:51       ` Pallipadi, Venkatesh
2009-01-14  7:51         ` Pallipadi, Venkatesh
2009-01-11 11:16 ` [Bug #12418] Repeated ioctl(4, 0x40046445, ..) loop in glxgears Rafael J. Wysocki
2009-01-11 11:16   ` Rafael J. Wysocki
2009-01-11 11:16 ` [Bug #12422] 2.6.28-git can't resume from str Rafael J. Wysocki
2009-01-11 11:16   ` Rafael J. Wysocki
2009-01-11 13:57   ` Jeff Chua
2009-01-11 13:57     ` Jeff Chua
2009-01-11 14:08   ` Daniel Drake
     [not found]     ` <4969FD64.8040408-aBrp7R+bbdUdnm+yROfE0A@public.gmane.org>
2009-01-11 14:18       ` Christian Borntraeger
2009-01-11 14:18         ` Christian Borntraeger
     [not found]         ` <200901111518.38880.borntraeger-tA70FqPdS9bQT0dZR+AlfA@public.gmane.org>
2009-01-11 16:13           ` Jeff Chua
2009-01-11 16:13             ` Jeff Chua
     [not found]             ` <b6a2187b0901110813s5429573cm7d78f39e288f70a3-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-01-11 16:18               ` Christian Borntraeger
2009-01-11 16:18                 ` Christian Borntraeger
2009-01-11 16:29               ` Ingo Molnar
2009-01-11 16:29                 ` Ingo Molnar
     [not found]                 ` <20090111162949.GA15338-X9Un+BFzKDI@public.gmane.org>
2009-01-11 16:36                   ` Christian Borntraeger
2009-01-11 16:36                     ` Christian Borntraeger
     [not found]                     ` <200901111736.24350.borntraeger-tA70FqPdS9bQT0dZR+AlfA@public.gmane.org>
2009-01-11 16:39                       ` Ingo Molnar
2009-01-11 16:39                         ` Ingo Molnar
     [not found]                         ` <20090111163904.GA21806-X9Un+BFzKDI@public.gmane.org>
2009-01-11 16:56                           ` Jeff Chua
2009-01-11 16:56                             ` Jeff Chua
     [not found]                             ` <b6a2187b0901110856j3f2ff6fepc19a816178e38a95-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-01-11 18:07                               ` Ingo Molnar
2009-01-11 18:07                                 ` Ingo Molnar
     [not found]                                 ` <20090111180714.GB15326-X9Un+BFzKDI@public.gmane.org>
2009-01-13  1:20                                   ` Jeff Chua
2009-01-13  1:20                                     ` Jeff Chua
     [not found]                                     ` <b6a2187b0901121720s1f9b12ednb76a90dcc7eddc81-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-01-13  1:28                                       ` Ingo Molnar
2009-01-13  1:28                                         ` Ingo Molnar
2009-01-13  2:08                                       ` Linus Torvalds
2009-01-13  2:08                                         ` Linus Torvalds
     [not found]                                         ` <alpine.LFD.2.00.0901121807070.6528-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2009-01-13  4:28                                           ` Jeff Chua
2009-01-13  4:28                                             ` Jeff Chua
     [not found]                                             ` <b6a2187b0901122028w3f85fc9aj41d7c8ac44adb2ed-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-01-13  5:47                                               ` Jeff Chua
2009-01-13  5:47                                                 ` Jeff Chua
     [not found]                                                 ` <b6a2187b0901122147o45890cd4lfb6ba7b2908e6ae7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2009-01-13 11:32                                                   ` Rafael J. Wysocki
2009-01-13 11:32                                                     ` Rafael J. Wysocki
     [not found]                                                     ` <200901131232.17941.rjw-KKrjLPT3xs0@public.gmane.org>
2009-01-13 13:30                                                       ` Jeff Chua
2009-01-13 13:30                                                         ` Jeff Chua
2009-01-11 16:10       ` Jeff Chua
2009-01-11 16:10         ` Jeff Chua
2009-01-11 11:16 ` [Bug #12420] WARNING: at drivers/ata/libata-sff.c:1017 ata_sff_hsm_move+0x45e/0x750() Rafael J. Wysocki
2009-01-11 11:16   ` Rafael J. Wysocki
2009-01-11 14:52   ` Alexey Fisher
2009-01-11 14:52     ` Alexey Fisher
2009-01-14  7:35   ` Alexey Rempel
2009-01-14  7:35     ` Alexey Rempel
     [not found]     ` <496D95BA.4070304-hi6Y0CQ0nG0@public.gmane.org>
2009-01-14  7:40       ` Christian Borntraeger
2009-01-14  7:40         ` Christian Borntraeger
     [not found]         ` <200901140840.39202.borntraeger-tA70FqPdS9bQT0dZR+AlfA@public.gmane.org>
2009-01-14 10:58           ` Rafael J. Wysocki
2009-01-14 10:58             ` Rafael J. Wysocki
2009-01-11 11:16 ` [Bug #12419] possible circular locking dependency on i915 dma Rafael J. Wysocki
2009-01-11 11:16   ` Rafael J. Wysocki
2009-01-11 11:16 ` [Bug #12428] Build error on latest git Rafael J. Wysocki
2009-01-11 11:16   ` Rafael J. Wysocki
2009-01-11 11:16 ` [Bug #12427] cpumask change causes sparc build bustage Rafael J. Wysocki
2009-01-11 11:16   ` Rafael J. Wysocki
2009-01-11 13:46 ` 2.6.29-rc1: Reported regressions from 2.6.28 Jaswinder Singh Rajput
2009-01-11 13:52   ` Ingo Molnar [this message]
2009-01-11 13:52     ` Ingo Molnar
2009-01-11 19:00     ` Rafael J. Wysocki
2009-01-11 19:00     ` Rafael J. Wysocki
     [not found]       ` <200901112001.00394.rjw-KKrjLPT3xs0@public.gmane.org>
2009-01-13  3:24         ` Jaswinder Singh Rajput
2009-01-13  3:24           ` Jaswinder Singh Rajput
2009-01-13 11:23           ` Rafael J. Wysocki
2009-01-13 11:23           ` Rafael J. Wysocki
2009-01-13  3:24       ` Jaswinder Singh Rajput
2009-01-11 13:52   ` Ingo Molnar
2009-01-11 13:46 ` Jaswinder Singh Rajput
2009-01-11 13:47 ` Ingo Molnar
2009-01-11 13:47 ` Ingo Molnar
2009-01-11 14:22 ` Matthias Heinz
2009-01-11 14:22 ` Matthias Heinz
2009-01-11 14:39 ` Matthias Heinz
2009-01-11 14:39   ` Matthias Heinz
2009-01-11 14:39 ` Matthias Heinz
  -- strict thread matches above, loose matches on Subject: below --
2009-01-11 11:12 Rafael J. Wysocki

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=20090111135237.GA20184@elte.hu \
    --to=mingo@elte.hu \
    --cc=akpm@linux-foundation.org \
    --cc=bunk@kernel.org \
    --cc=jaswinderlinux@gmail.com \
    --cc=kernel-testers@vger.kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@lists.linux-foundation.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=protasnb@gmail.com \
    --cc=rjw@sisk.pl \
    --cc=torvalds@linux-foundation.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 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.