All of lore.kernel.org
 help / color / mirror / Atom feed
From: Richard Mortimer <richm@oldelvet.org.uk>
To: David Miller <davem@davemloft.net>
Cc: 609371@bugs.debian.org, ben@decadent.org.uk,
	sparclinux@vger.kernel.org, linux-kernel@vger.kernel.org,
	rostedt@goodmis.org, fweisbec@gmail.com, mingo@redhat.com
Subject: Re: Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod:
Date: Sun, 16 Jan 2011 14:17:49 +0000	[thread overview]
Message-ID: <1295187469.22527.13.camel@duncow> (raw)
In-Reply-To: <20110115.211722.39173519.davem@davemloft.net>

On Sat, 2011-01-15 at 21:17 -0800, David Miller wrote:
> From: Richard Mortimer <richm@oldelvet.org.uk>
> Date: Fri, 14 Jan 2011 16:08:30 +0000
> 
> [ Frederic, Steven, Ingo, the short version of the story is that we
>   need to make it such that the _ftrace_events section is aligned
>   properly for 64-bit systems, and in particular that GCC can see this
>   too.  Otherwise GCC thinks 64-bit words will be unaligned and we get
>   all kinds of funky relocations being used in modules on sparc64 that
>   really there is never any reason to see. ]
> 
> > They seem to come from scsi.o at
> > 
> > .LLC51:
> >         .asciz  "scsi_eh_wakeup"
> >         .section        _ftrace_events,"aw",@progbits
> >         .align 4
> >         .type   event_scsi_eh_wakeup, #object
> >         .size   event_scsi_eh_wakeup, 136
> > event_scsi_eh_wakeup:
> >         .skip   16
> >         .uaxword        event_class_scsi_eh_wakeup
> >         .uaxword        .LLC51
> >         .skip   8
> >         .skip   40
> >         .uaxword        ftrace_event_type_funcs_scsi_eh_wakeup
> >         .uaxword        print_fmt_scsi_eh_wakeup
> >         .skip   40
> 
> These ".uaxword" emissions are a bug, and if we let them stand then
> ftrace events are going to load every long word object using a
> sequence of byte-sized accesses.  This will absolutely kill
> performance.
> 
> This is exactly why I wanted to find out why this started happening
> out of nowhere, instead of blindly adding support for new relocation
> types to the sparc module loader.
> 
> The set of relocations supported by the sparc module loading code is
> not meant to be "all relocations which are legal" but rather it's
> meant to support the most minimum set of relocations that the kernel
> actually _needs_ and should be making use of.
> 
> I think the problem we have here is that the _ftrace_events section is
> not aligned sufficiently.  That ".align 4" mnemonic is a good indication
> of this.  It should at least "8" on sparc64.
> 
> So we need to figure out why that is happening, and fix that instead.
> 
> Thanks.

I'm wondering if gcc is just getting better at honouring the source
code. The DEFINE_EVENT macros in include/trace/ftrace.h have a
__aligned__(4) attribute in them. Maybe that should be 8 on sparc64
systems.
The aligned 4 seems to be unchanged since include/trace/ftrace.h was
created in f42c85e74faa422cf0bc747ed808681145448f88 in April 2009.

example

#undef DEFINE_EVENT
#define DEFINE_EVENT(template, call, proto, args)			\
									\
static struct ftrace_event_call __used					\
__attribute__((__aligned__(4)))						\
__attribute__((section("_ftrace_events"))) event_##call = {		\
	.name			= #call,				\
	.class			= &event_class_##template,		\
	.event.funcs		= &ftrace_event_type_funcs_##template,	\
	.print_fmt		= print_fmt_##template,			\
};


I haven't tried making any changes/recompiling yet because that change
will pretty much force a full recompile and that takes upwards of 12
hours on the old sparc64 box that I have. I will wait for feedback
before I try anything.

Regards

Richard


WARNING: multiple messages have this Message-ID (diff)
From: Richard Mortimer <richm@oldelvet.org.uk>
To: David Miller <davem@davemloft.net>
Cc: 609371@bugs.debian.org, ben@decadent.org.uk,
	sparclinux@vger.kernel.org, linux-kernel@vger.kernel.org,
	rostedt@goodmis.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: Sun, 16 Jan 2011 14:17:49 +0000	[thread overview]
Message-ID: <1295187469.22527.13.camel@duncow> (raw)
In-Reply-To: <20110115.211722.39173519.davem@davemloft.net>

On Sat, 2011-01-15 at 21:17 -0800, David Miller wrote:
> From: Richard Mortimer <richm@oldelvet.org.uk>
> Date: Fri, 14 Jan 2011 16:08:30 +0000
> 
> [ Frederic, Steven, Ingo, the short version of the story is that we
>   need to make it such that the _ftrace_events section is aligned
>   properly for 64-bit systems, and in particular that GCC can see this
>   too.  Otherwise GCC thinks 64-bit words will be unaligned and we get
>   all kinds of funky relocations being used in modules on sparc64 that
>   really there is never any reason to see. ]
> 
> > They seem to come from scsi.o at
> > 
> > .LLC51:
> >         .asciz  "scsi_eh_wakeup"
> >         .section        _ftrace_events,"aw",@progbits
> >         .align 4
> >         .type   event_scsi_eh_wakeup, #object
> >         .size   event_scsi_eh_wakeup, 136
> > event_scsi_eh_wakeup:
> >         .skip   16
> >         .uaxword        event_class_scsi_eh_wakeup
> >         .uaxword        .LLC51
> >         .skip   8
> >         .skip   40
> >         .uaxword        ftrace_event_type_funcs_scsi_eh_wakeup
> >         .uaxword        print_fmt_scsi_eh_wakeup
> >         .skip   40
> 
> These ".uaxword" emissions are a bug, and if we let them stand then
> ftrace events are going to load every long word object using a
> sequence of byte-sized accesses.  This will absolutely kill
> performance.
> 
> This is exactly why I wanted to find out why this started happening
> out of nowhere, instead of blindly adding support for new relocation
> types to the sparc module loader.
> 
> The set of relocations supported by the sparc module loading code is
> not meant to be "all relocations which are legal" but rather it's
> meant to support the most minimum set of relocations that the kernel
> actually _needs_ and should be making use of.
> 
> I think the problem we have here is that the _ftrace_events section is
> not aligned sufficiently.  That ".align 4" mnemonic is a good indication
> of this.  It should at least "8" on sparc64.
> 
> So we need to figure out why that is happening, and fix that instead.
> 
> Thanks.

I'm wondering if gcc is just getting better at honouring the source
code. The DEFINE_EVENT macros in include/trace/ftrace.h have a
__aligned__(4) attribute in them. Maybe that should be 8 on sparc64
systems.
The aligned 4 seems to be unchanged since include/trace/ftrace.h was
created in f42c85e74faa422cf0bc747ed808681145448f88 in April 2009.

example

#undef DEFINE_EVENT
#define DEFINE_EVENT(template, call, proto, args)			\
									\
static struct ftrace_event_call __used					\
__attribute__((__aligned__(4)))						\
__attribute__((section("_ftrace_events"))) event_##call = {		\
	.name			= #call,				\
	.class			= &event_class_##template,		\
	.event.funcs		= &ftrace_event_type_funcs_##template,	\
	.print_fmt		= print_fmt_##template,			\
};


I haven't tried making any changes/recompiling yet because that change
will pretty much force a full recompile and that takes upwards of 12
hours on the old sparc64 box that I have. I will wait for feedback
before I try anything.

Regards

Richard


  reply	other threads:[~2011-01-16 14:17 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       ` Richard Mortimer [this message]
2011-01-16 14:17         ` 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                   ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Mathieu Desnoyers
2011-01-18 16:46                     ` Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36 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=1295187469.22527.13.camel@duncow \
    --to=richm@oldelvet.org.uk \
    --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=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.