From: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
To: David Miller <davem@davemloft.net>
Cc: rostedt@goodmis.org, richm@oldelvet.org.uk,
609371@bugs.debian.org, ben@decadent.org.uk,
sparclinux@vger.kernel.org, linux-kernel@vger.kernel.org,
fweisbec@gmail.com, mingo@redhat.com
Subject: Re: Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod:
Date: Tue, 18 Jan 2011 16:46:33 +0000 [thread overview]
Message-ID: <20110118164633.GA12872@Krystal> (raw)
In-Reply-To: <20110117.220857.104046847.davem@davemloft.net>
* David Miller (davem@davemloft.net) wrote:
> From: David Miller <davem@davemloft.net>
> Date: Mon, 17 Jan 2011 22:00:39 -0800 (PST)
>
> > ftrace: Remove unnecessary alignment tag from ftrace_event_call.
> >
> > It's completely unnecessary and causes problems on platforms
> > where this tag down-aligns the structure's alignment.
> >
> > Signed-off-by: David S. Miller <davem@davemloft.net>
> ...
>
> Ok, unless we can explain why these alignments are needed at all, we
> should kill all of them:
ftrace: linker script add missing struct align
We should add the missing "STRUCT_ALIGN();" in
include/asm-generic/vmlinux.lds.h as a preliminary step to remove the ftrace
bogus structure alignments. Moving all STRUCT_ALIGN() for FTRACE_EVENTS()
and TRACE_SYSCALLS() into the definitions, so the alignment is only done if
these infrastructures are configured in.
Also align TRACE_PRINTKS on 8 bytes to make sure the beginning of the section is
aligned on pointer size.
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
---
include/asm-generic/vmlinux.lds.h | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
Index: linux-2.6-lttng/include/asm-generic/vmlinux.lds.h
=================================--- linux-2.6-lttng.orig/include/asm-generic/vmlinux.lds.h
+++ linux-2.6-lttng/include/asm-generic/vmlinux.lds.h
@@ -107,7 +107,8 @@
#endif
#ifdef CONFIG_TRACE_BRANCH_PROFILING
-#define LIKELY_PROFILE() VMLINUX_SYMBOL(__start_annotated_branch_profile) = .; \
+#define LIKELY_PROFILE() STRUCT_ALIGN(); \
+ VMLINUX_SYMBOL(__start_annotated_branch_profile) = .; \
*(_ftrace_annotated_branch) \
VMLINUX_SYMBOL(__stop_annotated_branch_profile) = .;
#else
@@ -115,7 +116,8 @@
#endif
#ifdef CONFIG_PROFILE_ALL_BRANCHES
-#define BRANCH_PROFILE() VMLINUX_SYMBOL(__start_branch_profile) = .; \
+#define BRANCH_PROFILE() STRUCT_ALIGN(); \
+ VMLINUX_SYMBOL(__start_branch_profile) = .; \
*(_ftrace_branch) \
VMLINUX_SYMBOL(__stop_branch_profile) = .;
#else
@@ -123,7 +125,8 @@
#endif
#ifdef CONFIG_EVENT_TRACING
-#define FTRACE_EVENTS() VMLINUX_SYMBOL(__start_ftrace_events) = .; \
+#define FTRACE_EVENTS() STRUCT_ALIGN(); \
+ VMLINUX_SYMBOL(__start_ftrace_events) = .; \
*(_ftrace_events) \
VMLINUX_SYMBOL(__stop_ftrace_events) = .;
#else
@@ -131,7 +134,8 @@
#endif
#ifdef CONFIG_TRACING
-#define TRACE_PRINTKS() VMLINUX_SYMBOL(__start___trace_bprintk_fmt) = .; \
+#define TRACE_PRINTKS() . = ALIGN(8); \
+ VMLINUX_SYMBOL(__start___trace_bprintk_fmt) = .; \
*(__trace_printk_fmt) /* Trace_printk fmt' pointer */ \
VMLINUX_SYMBOL(__stop___trace_bprintk_fmt) = .;
#else
@@ -139,7 +143,8 @@
#endif
#ifdef CONFIG_FTRACE_SYSCALLS
-#define TRACE_SYSCALLS() VMLINUX_SYMBOL(__start_syscalls_metadata) = .; \
+#define TRACE_SYSCALLS() STRUCT_ALIGN(); \
+ VMLINUX_SYMBOL(__start_syscalls_metadata) = .; \
*(__syscalls_metadata) \
VMLINUX_SYMBOL(__stop_syscalls_metadata) = .;
#else
@@ -169,11 +174,7 @@
LIKELY_PROFILE() \
BRANCH_PROFILE() \
TRACE_PRINTKS() \
- \
- STRUCT_ALIGN(); \
FTRACE_EVENTS() \
- \
- STRUCT_ALIGN(); \
TRACE_SYSCALLS()
/*
--
Mathieu Desnoyers
Operating System Efficiency R&D Consultant
EfficiOS Inc.
http://www.efficios.com
WARNING: multiple messages have this Message-ID (diff)
From: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
To: David Miller <davem@davemloft.net>
Cc: rostedt@goodmis.org, richm@oldelvet.org.uk,
609371@bugs.debian.org, ben@decadent.org.uk,
sparclinux@vger.kernel.org, linux-kernel@vger.kernel.org,
fweisbec@gmail.com, mingo@redhat.com
Subject: Re: Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36
Date: Tue, 18 Jan 2011 11:46:33 -0500 [thread overview]
Message-ID: <20110118164633.GA12872@Krystal> (raw)
In-Reply-To: <20110117.220857.104046847.davem@davemloft.net>
* David Miller (davem@davemloft.net) wrote:
> From: David Miller <davem@davemloft.net>
> Date: Mon, 17 Jan 2011 22:00:39 -0800 (PST)
>
> > ftrace: Remove unnecessary alignment tag from ftrace_event_call.
> >
> > It's completely unnecessary and causes problems on platforms
> > where this tag down-aligns the structure's alignment.
> >
> > Signed-off-by: David S. Miller <davem@davemloft.net>
> ...
>
> Ok, unless we can explain why these alignments are needed at all, we
> should kill all of them:
ftrace: linker script add missing struct align
We should add the missing "STRUCT_ALIGN();" in
include/asm-generic/vmlinux.lds.h as a preliminary step to remove the ftrace
bogus structure alignments. Moving all STRUCT_ALIGN() for FTRACE_EVENTS()
and TRACE_SYSCALLS() into the definitions, so the alignment is only done if
these infrastructures are configured in.
Also align TRACE_PRINTKS on 8 bytes to make sure the beginning of the section is
aligned on pointer size.
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
---
include/asm-generic/vmlinux.lds.h | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
Index: linux-2.6-lttng/include/asm-generic/vmlinux.lds.h
===================================================================
--- linux-2.6-lttng.orig/include/asm-generic/vmlinux.lds.h
+++ linux-2.6-lttng/include/asm-generic/vmlinux.lds.h
@@ -107,7 +107,8 @@
#endif
#ifdef CONFIG_TRACE_BRANCH_PROFILING
-#define LIKELY_PROFILE() VMLINUX_SYMBOL(__start_annotated_branch_profile) = .; \
+#define LIKELY_PROFILE() STRUCT_ALIGN(); \
+ VMLINUX_SYMBOL(__start_annotated_branch_profile) = .; \
*(_ftrace_annotated_branch) \
VMLINUX_SYMBOL(__stop_annotated_branch_profile) = .;
#else
@@ -115,7 +116,8 @@
#endif
#ifdef CONFIG_PROFILE_ALL_BRANCHES
-#define BRANCH_PROFILE() VMLINUX_SYMBOL(__start_branch_profile) = .; \
+#define BRANCH_PROFILE() STRUCT_ALIGN(); \
+ VMLINUX_SYMBOL(__start_branch_profile) = .; \
*(_ftrace_branch) \
VMLINUX_SYMBOL(__stop_branch_profile) = .;
#else
@@ -123,7 +125,8 @@
#endif
#ifdef CONFIG_EVENT_TRACING
-#define FTRACE_EVENTS() VMLINUX_SYMBOL(__start_ftrace_events) = .; \
+#define FTRACE_EVENTS() STRUCT_ALIGN(); \
+ VMLINUX_SYMBOL(__start_ftrace_events) = .; \
*(_ftrace_events) \
VMLINUX_SYMBOL(__stop_ftrace_events) = .;
#else
@@ -131,7 +134,8 @@
#endif
#ifdef CONFIG_TRACING
-#define TRACE_PRINTKS() VMLINUX_SYMBOL(__start___trace_bprintk_fmt) = .; \
+#define TRACE_PRINTKS() . = ALIGN(8); \
+ VMLINUX_SYMBOL(__start___trace_bprintk_fmt) = .; \
*(__trace_printk_fmt) /* Trace_printk fmt' pointer */ \
VMLINUX_SYMBOL(__stop___trace_bprintk_fmt) = .;
#else
@@ -139,7 +143,8 @@
#endif
#ifdef CONFIG_FTRACE_SYSCALLS
-#define TRACE_SYSCALLS() VMLINUX_SYMBOL(__start_syscalls_metadata) = .; \
+#define TRACE_SYSCALLS() STRUCT_ALIGN(); \
+ VMLINUX_SYMBOL(__start_syscalls_metadata) = .; \
*(__syscalls_metadata) \
VMLINUX_SYMBOL(__stop_syscalls_metadata) = .;
#else
@@ -169,11 +174,7 @@
LIKELY_PROFILE() \
BRANCH_PROFILE() \
TRACE_PRINTKS() \
- \
- STRUCT_ALIGN(); \
FTRACE_EVENTS() \
- \
- STRUCT_ALIGN(); \
TRACE_SYSCALLS()
/*
--
Mathieu Desnoyers
Operating System Efficiency R&D Consultant
EfficiOS Inc.
http://www.efficios.com
next prev parent reply other threads:[~2011-01-18 16:46 UTC|newest]
Thread overview: 152+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20110113.155700.102679408.davem@davemloft.net>
[not found] ` <4D302B2F.7030108@oldelvet.org.uk>
[not found] ` <4D3074FE.3030707@oldelvet.org.uk>
2011-01-16 5:17 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-16 5:17 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-16 14:17 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Richard Mortimer
2011-01-16 14:17 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Richard Mortimer
2011-01-16 19:39 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-16 19:39 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-17 14:11 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Steven Rostedt
2011-01-17 14:11 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Steven Rostedt
2011-01-17 14:37 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Bastian Blank
2011-01-17 14:37 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Bastian Blank
2011-01-17 19:35 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-17 19:35 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-18 6:36 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-18 6:36 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-18 5:34 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-18 5:34 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-18 6:00 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-18 6:00 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-18 6:08 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-18 6:08 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-18 16:46 ` Mathieu Desnoyers [this message]
2011-01-18 16:46 ` Mathieu Desnoyers
2011-01-18 17:33 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Steven Rostedt
2011-01-18 17:33 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Steven Rostedt
2011-01-18 18:16 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Steven Rostedt
2011-01-18 18:16 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Steven Rostedt
2011-01-18 18:26 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Steven Rostedt
2011-01-18 18:26 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Steven Rostedt
2011-01-18 20:13 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-18 20:13 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-18 20:22 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Steven Rostedt
2011-01-18 20:22 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Steven Rostedt
2011-01-19 5:08 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-19 5:08 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-19 5:16 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-19 5:16 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-19 15:10 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-19 15:10 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-19 16:14 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Sam Ravnborg
2011-01-19 16:14 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Sam Ravnborg
2011-01-19 16:18 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-19 16:18 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-19 6:32 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-19 6:32 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-19 7:20 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-19 7:20 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-19 15:33 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-19 15:33 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-19 21:40 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-19 21:40 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-19 22:00 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Steven Rostedt
2011-01-19 22:00 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Steven Rostedt
2011-01-19 22:09 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-19 22:09 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-19 22:21 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-19 22:21 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-19 22:23 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-19 22:23 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-19 22:32 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Sam Ravnborg
2011-01-19 22:32 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Sam Ravnborg
2011-01-19 22:34 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-19 22:34 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-19 22:13 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-19 22:13 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-19 22:21 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-19 22:21 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-19 22:33 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-19 22:33 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-20 0:41 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-20 0:41 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-21 0:04 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-21 0:04 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-21 18:06 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Richard Mortimer
2011-01-21 18:06 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Richard Mortimer
2011-01-21 18:52 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-21 18:52 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-21 19:15 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-21 19:15 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-21 20:14 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Richard Mortimer
2011-01-21 20:14 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Richard Mortimer
2011-01-21 20:40 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-21 20:40 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-21 22:50 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Richard Mortimer
2011-01-21 22:50 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Richard Mortimer
2011-01-22 18:42 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Richard Mortimer
2011-01-22 18:42 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Richard Mortimer
2011-01-22 18:53 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-22 18:53 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-19 15:46 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Steven Rostedt
2011-01-19 15:46 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Steven Rostedt
2011-01-19 16:15 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-19 16:15 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-19 18:13 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Steven Rostedt
2011-01-19 18:13 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Steven Rostedt
2011-01-19 18:20 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-19 18:20 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-19 21:44 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-19 21:44 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-19 22:15 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-19 22:15 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-19 22:22 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-19 22:22 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-19 15:11 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-19 15:11 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Mathieu Desnoyers
2011-01-19 15:27 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Richard Mortimer
2011-01-19 15:27 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Richard Mortimer
2011-01-17 6:07 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-17 6:07 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-17 9:05 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Jesper Nilsson
2011-01-17 9:05 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Jesper Nilsson
2011-02-01 5:11 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-02-01 5:11 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-02-01 10:03 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Jesper Nilsson
2011-02-01 10:03 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Jesper Nilsson
2011-01-17 10:22 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Richard Mortimer
2011-01-17 10:22 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Richard Mortimer
2011-01-17 14:15 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Steven Rostedt
2011-01-17 14:15 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Steven Rostedt
2011-01-18 6:35 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-18 6:35 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-18 17:30 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Steven Rostedt
2011-01-18 17:30 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Steven Rostedt
2011-01-17 19:46 ` R_SPARC_13 (Re: Bug#609371: linux-image-2.6.37-trunk-sparc64: Richard Mortimer
2011-01-17 19:46 ` R_SPARC_13 (Re: Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36) Richard Mortimer
2011-01-17 21:02 ` R_SPARC_13 David Miller
2011-01-17 21:02 ` R_SPARC_13 David Miller
2011-01-17 23:34 ` R_SPARC_13 Richard Mortimer
2011-01-18 0:18 ` R_SPARC_13 David Miller
2011-01-18 0:18 ` R_SPARC_13 David Miller
2011-01-18 0:37 ` R_SPARC_13 David Miller
2011-01-18 0:37 ` R_SPARC_13 David Miller
2011-01-18 1:28 ` R_SPARC_13 Richard Mortimer
2011-01-18 6:50 ` R_SPARC_13 David Miller
2011-01-18 6:50 ` R_SPARC_13 David Miller
2011-01-18 10:52 ` R_SPARC_13 Richard Mortimer
2011-01-18 10:52 ` R_SPARC_13 Richard Mortimer
2011-01-18 13:23 ` R_SPARC_13 Richard Mortimer
2011-01-18 13:23 ` R_SPARC_13 Richard Mortimer
2011-01-18 20:59 ` R_SPARC_13 David Miller
2011-01-18 21:00 ` R_SPARC_13 David Miller
2011-01-19 4:12 ` R_SPARC_13 David Miller
2011-01-19 4:12 ` R_SPARC_13 David Miller
2011-01-17 14:39 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Bernhard R. Link
2011-01-17 14:39 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Bernhard R. Link
2011-01-18 5:24 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-18 5:24 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-18 9:26 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Jesper Nilsson
2011-01-18 9:26 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Jesper Nilsson
2011-01-18 6:27 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: David Miller
2011-01-18 6:27 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 David Miller
2011-01-18 17:05 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Steven Rostedt
2011-01-18 17:05 ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 Steven Rostedt
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=20110118164633.GA12872@Krystal \
--to=mathieu.desnoyers@efficios.com \
--cc=609371@bugs.debian.org \
--cc=ben@decadent.org.uk \
--cc=davem@davemloft.net \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=richm@oldelvet.org.uk \
--cc=rostedt@goodmis.org \
--cc=sparclinux@vger.kernel.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.