mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Jiri Olsa <jolsa@redhat.com>
To: mingo@elte.hu, rostedt@goodmis.org, fweisbec@gmail.com
Cc: linux-kernel@vger.kernel.org
Subject: cannot compile linux-2.6-tip tree
Date: Tue, 24 Nov 2009 13:41:07 +0100	[thread overview]
Message-ID: <20091124124107.GA1975@jolsa.lab.eng.brq.redhat.com> (raw)

hi,

I just updated 'linux-2.6-tip' and was not able to link drivers/pnp
I bisected the issue, but not sure what happened:

(git tree git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git, x86_64 arch)


[jolsa@jolsa linux-2.6-tip]$ git checkout -b test-good 2e7c0e0cafee5f04a029f06e71e22f9af69ae472~
Switched to a new branch 'test-good'
[jolsa@jolsa linux-2.6-tip]$ find drivers/pnp/ -name *.o | xargs rm
[jolsa@jolsa linux-2.6-tip]$ make drivers/pnp/
  CHK     include/linux/version.h
  CHK     include/linux/utsrelease.h
  SYMLINK include/asm -> include/asm-x86
  CC      arch/x86/kernel/asm-offsets.s
  GEN     include/asm/asm-offsets.h
  CALL    scripts/checksyscalls.sh
  CC      drivers/pnp/core.o
  CC      drivers/pnp/card.o
  CC      drivers/pnp/driver.o
  CC      drivers/pnp/resource.o
  CC      drivers/pnp/manager.o
  CC      drivers/pnp/support.o
  CC      drivers/pnp/interface.o
  CC      drivers/pnp/quirks.o
  CC      drivers/pnp/pnpacpi/core.o
  CC      drivers/pnp/pnpacpi/rsparser.o
  LD      drivers/pnp/pnpacpi/built-in.o
  CC      drivers/pnp/system.o
  LD      drivers/pnp/built-in.o
[jolsa@jolsa linux-2.6-tip]$ git checkout -b test-bad 2e7c0e0cafee5f04a029f06e71e22f9af69ae472
Switched to a new branch 'test-bad'
[jolsa@jolsa linux-2.6-tip]$ find drivers/pnp/ -name *.o | xargs rm
[jolsa@jolsa linux-2.6-tip]$ make drivers/pnp/
  CHK     include/linux/version.h
  CHK     include/linux/utsrelease.h
  SYMLINK include/asm -> include/asm-x86
  CC      arch/x86/kernel/asm-offsets.s
  GEN     include/asm/asm-offsets.h
  CALL    scripts/checksyscalls.sh
  CC      drivers/pnp/core.o
  CC      drivers/pnp/card.o
objdump: drivers/pnp/.tmp_card.o: File truncated
nm: drivers/pnp/card.o: File truncated
objdump: drivers/pnp/card.o: File truncated
  CC      drivers/pnp/driver.o
  CC      drivers/pnp/resource.o
  CC      drivers/pnp/manager.o
  CC      drivers/pnp/support.o
  CC      drivers/pnp/interface.o
  CC      drivers/pnp/quirks.o
  CC      drivers/pnp/pnpacpi/core.o
  CC      drivers/pnp/pnpacpi/rsparser.o
  LD      drivers/pnp/pnpacpi/built-in.o
  CC      drivers/pnp/system.o
  LD      drivers/pnp/built-in.o
drivers/pnp/card.o: file not recognized: File format not recognized
make[1]: *** [drivers/pnp/built-in.o] Error 1
make: *** [drivers/pnp/] Error 2
[jolsa@jolsa linux-2.6-tip]$ 


the bisected commit looks innocent:

[jolsa@jolsa tip-new]$ git show 2e7c0e0cafee5f04a029f06e71e22f9af69ae472
commit 2e7c0e0cafee5f04a029f06e71e22f9af69ae472
Merge: 4c96088 fd12a0d
Author: Ingo Molnar <mingo@elte.hu>
Date:   Mon Nov 23 19:48:07 2009 +0100

    Merge branch 'x86/mm'

diff --cc arch/x86/kernel/x86_init.c
index d11c5ff,bcc749e..e60844e
--- a/arch/x86/kernel/x86_init.c
+++ b/arch/x86/kernel/x86_init.c
@@@ -13,8 -13,8 +13,9 @@@
  #include <asm/e820.h>
  #include <asm/time.h>
  #include <asm/irq.h>
+ #include <asm/pat.h>
  #include <asm/tsc.h>
 +#include <asm/iommu.h>
  
  void __cpuinit x86_init_noop(void) { }
  void __init x86_init_uint_noop(unsigned int unused) { }
[jolsa@jolsa tip-new]$ 


I guess I'm not alone, hopefully :)

wbr,
jirka

             reply	other threads:[~2009-11-24 12:41 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-24 12:41 Jiri Olsa [this message]
2009-11-24 14:52 ` Steven Rostedt
2009-11-24 15:05   ` Jiri Olsa
2009-11-24 15:12     ` Steven Rostedt
2009-11-24 15:45 ` Ingo Molnar
2009-11-24 17:22   ` Jiri Olsa
2009-11-24 22:27     ` Bernd Petrovitsch
2009-11-25  4:55       ` Steven Rostedt
2009-11-25  9:02         ` Jiri Olsa
2009-11-25  9:00       ` Jiri Olsa
2009-11-25 11:44         ` Bernd Petrovitsch

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=20091124124107.GA1975@jolsa.lab.eng.brq.redhat.com \
    --to=jolsa@redhat.com \
    --cc=fweisbec@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=rostedt@goodmis.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®