From: Richard Mortimer <richm@oldelvet.org.uk>
To: David Miller <davem@davemloft.net>
Cc: richm@oldelvet.org.uk, 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, Jesper.Nilsson@axis.com,
jeffm@suse.com
Subject: R_SPARC_13 (Re: Bug#609371: linux-image-2.6.37-trunk-sparc64:
Date: Mon, 17 Jan 2011 19:46:21 +0000 [thread overview]
Message-ID: <1295293581.32152.70.camel@duncow> (raw)
In-Reply-To: <1295259761.32152.20.camel@duncow>
On Mon, 2011-01-17 at 10:22 +0000, Richard Mortimer wrote:
> On Sun, 2011-01-16 at 22:07 -0800, David Miller wrote:
> > From: David Miller <davem@davemloft.net>
> > Date: Sat, 15 Jan 2011 21:17:22 -0800 (PST)
>
> > > 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.
> >
> I noticed another potentially 64 bit unfriendly alignment on struct
> tracepoint in include/linux/tracepoint.h. I don't think that the
> alignment of 32 breaks anything but it does leave a 24 byte hole. I
> don't know enough about tracing to know if that is necessary.
>
> struct tracepoint {
> const char *name; /* Tracepoint name */
> int state; /* State. */
> void (*regfunc)(void);
> void (*unregfunc)(void);
> struct tracepoint_func *funcs;
> } __attribute__((aligned(32))); /*
> * Aligned on 32 bytes because it is
> * globally visible and gcc happily
> * align these on the structure size.
> * Keep in sync with vmlinux.lds.h.
> */
>
> Note I spotted this when looking at some residual sparc64 relocation
> issues when _ftrace_events alignment is changed to 8. I'll follow those
> issues up in a separate email when I get time later today.
I did some experiments looking at what happens when the
include/trace/ftrace.h __aligned__(4) usages for _ftrace_events are
changed to __aligned__(8). This causes the R_SPARC_UA64 relocations to
go to R_SPARC_64 and gets rid of that particular issue.
However it does not cause the R_SPARC_13 relocation records to go away.
They still persist and the ones I've looked at are be related to uses of
struct tracepoint that I mentioned earlier. I tried various different
values of alignment for both __ftrace_events and struct tracepoint but
nothing made the uses of R_SPARC_13 go away.
As an example from drivers/scsi/scsi_error.c function scsi_eh_wakeup().
This has relocation records of
0000000000002be0 R_SPARC_HI22 __tracepoint_scsi_eh_wakeup
0000000000002be4 R_SPARC_LO10 __tracepoint_scsi_eh_wakeup
0000000000002be4 R_SPARC_13 *ABS*+0x0000000000000008
0000000000002bf4 R_SPARC_LO10 __tracepoint_scsi_eh_wakeup
0000000000002bf4 R_SPARC_13 *ABS*+0x0000000000000020
for the following assembly code
sethi %hi(__tracepoint_scsi_eh_wakeup), %g1 !, tmp135
lduw [%g1+%lo(__tracepoint_scsi_eh_wakeup)+8], %g2 ! __tracepoint_scsi_eh_wakeup.state,
cmp %g2, 0 ! __tracepoint_scsi_eh_wakeup.state,
be,pt %icc, .LL454
nop !
ldx [%g1+%lo(__tracepoint_scsi_eh_wakeup)+32], %l0 !, it_func_ptr
brz,pn %l0, .LL454 ! it_func_ptr,
this corresponds to the first few lines of
void scsi_eh_wakeup(struct Scsi_Host *shost)
{
if (shost->host_busy = shost->host_failed) {
trace_scsi_eh_wakeup(shost);
wake_up_process(shost->ehandler);
SCSI_LOG_ERROR_RECOVERY(5,
printk("Waking error handler thread\n"));
}
}
If I try compiling with the -Os option removed from KBUILD_CFLAGS it
produces a more traditional R_SPARC_HI22 and R_SPARC_LO10 output as
shown below. So maybe there is a really need to add R_SPARC_13 support
to the sparc64 module loader to allow for the optimizations that the
compiler is making now.
00000000000001bc R_SPARC_HI22 __tracepoint_scsi_eh_wakeup
00000000000001c0 R_SPARC_LO10 __tracepoint_scsi_eh_wakeup
00000000000001dc R_SPARC_HI22 __tracepoint_scsi_eh_wakeup+0x0000000000000020
00000000000001e0 R_SPARC_LO10 __tracepoint_scsi_eh_wakeup+0x0000000000000020
ldx [%fp+2175], %g1 ! shost, tmp123
stx %g1, [%fp+2007] ! tmp123, shost
sethi %hi(__tracepoint_scsi_eh_wakeup), %g1 !, tmp125
or %g1, %lo(__tracepoint_scsi_eh_wakeup), %g1 ! tmp125,, tmp124
ld [%g1+8], %g1 ! __tracepoint_scsi_eh_wakeup.state, D.32824
xor %g1, 0, %g1 ! D.32824,, tmp126
subcc %g0, %g1, %g0 !, tmp126
addx %g0, 0, %g1 !,, D.32823
brz %g1, .LL3
nop ! D.32822,
sethi %hi(__tracepoint_scsi_eh_wakeup+32), %g1 !, tmp127
or %g1, %lo(__tracepoint_scsi_eh_wakeup+32), %g1 ! tmp127,, D.32820
ldx [%g1], %g1 !* D.32820, tmp128
stx %g1, [%fp+2015] ! tmp128, _________p1
Regards
Richard
WARNING: multiple messages have this Message-ID (diff)
From: Richard Mortimer <richm@oldelvet.org.uk>
To: David Miller <davem@davemloft.net>
Cc: richm@oldelvet.org.uk, 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, Jesper.Nilsson@axis.com,
jeffm@suse.com
Subject: R_SPARC_13 (Re: Bug#609371: linux-image-2.6.37-trunk-sparc64: module scsi_mod: Unknown relocation: 36)
Date: Mon, 17 Jan 2011 19:46:21 +0000 [thread overview]
Message-ID: <1295293581.32152.70.camel@duncow> (raw)
In-Reply-To: <1295259761.32152.20.camel@duncow>
On Mon, 2011-01-17 at 10:22 +0000, Richard Mortimer wrote:
> On Sun, 2011-01-16 at 22:07 -0800, David Miller wrote:
> > From: David Miller <davem@davemloft.net>
> > Date: Sat, 15 Jan 2011 21:17:22 -0800 (PST)
>
> > > 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.
> >
> I noticed another potentially 64 bit unfriendly alignment on struct
> tracepoint in include/linux/tracepoint.h. I don't think that the
> alignment of 32 breaks anything but it does leave a 24 byte hole. I
> don't know enough about tracing to know if that is necessary.
>
> struct tracepoint {
> const char *name; /* Tracepoint name */
> int state; /* State. */
> void (*regfunc)(void);
> void (*unregfunc)(void);
> struct tracepoint_func *funcs;
> } __attribute__((aligned(32))); /*
> * Aligned on 32 bytes because it is
> * globally visible and gcc happily
> * align these on the structure size.
> * Keep in sync with vmlinux.lds.h.
> */
>
> Note I spotted this when looking at some residual sparc64 relocation
> issues when _ftrace_events alignment is changed to 8. I'll follow those
> issues up in a separate email when I get time later today.
I did some experiments looking at what happens when the
include/trace/ftrace.h __aligned__(4) usages for _ftrace_events are
changed to __aligned__(8). This causes the R_SPARC_UA64 relocations to
go to R_SPARC_64 and gets rid of that particular issue.
However it does not cause the R_SPARC_13 relocation records to go away.
They still persist and the ones I've looked at are be related to uses of
struct tracepoint that I mentioned earlier. I tried various different
values of alignment for both __ftrace_events and struct tracepoint but
nothing made the uses of R_SPARC_13 go away.
As an example from drivers/scsi/scsi_error.c function scsi_eh_wakeup().
This has relocation records of
0000000000002be0 R_SPARC_HI22 __tracepoint_scsi_eh_wakeup
0000000000002be4 R_SPARC_LO10 __tracepoint_scsi_eh_wakeup
0000000000002be4 R_SPARC_13 *ABS*+0x0000000000000008
0000000000002bf4 R_SPARC_LO10 __tracepoint_scsi_eh_wakeup
0000000000002bf4 R_SPARC_13 *ABS*+0x0000000000000020
for the following assembly code
sethi %hi(__tracepoint_scsi_eh_wakeup), %g1 !, tmp135
lduw [%g1+%lo(__tracepoint_scsi_eh_wakeup)+8], %g2 ! __tracepoint_scsi_eh_wakeup.state,
cmp %g2, 0 ! __tracepoint_scsi_eh_wakeup.state,
be,pt %icc, .LL454
nop !
ldx [%g1+%lo(__tracepoint_scsi_eh_wakeup)+32], %l0 !, it_func_ptr
brz,pn %l0, .LL454 ! it_func_ptr,
this corresponds to the first few lines of
void scsi_eh_wakeup(struct Scsi_Host *shost)
{
if (shost->host_busy == shost->host_failed) {
trace_scsi_eh_wakeup(shost);
wake_up_process(shost->ehandler);
SCSI_LOG_ERROR_RECOVERY(5,
printk("Waking error handler thread\n"));
}
}
If I try compiling with the -Os option removed from KBUILD_CFLAGS it
produces a more traditional R_SPARC_HI22 and R_SPARC_LO10 output as
shown below. So maybe there is a really need to add R_SPARC_13 support
to the sparc64 module loader to allow for the optimizations that the
compiler is making now.
00000000000001bc R_SPARC_HI22 __tracepoint_scsi_eh_wakeup
00000000000001c0 R_SPARC_LO10 __tracepoint_scsi_eh_wakeup
00000000000001dc R_SPARC_HI22 __tracepoint_scsi_eh_wakeup+0x0000000000000020
00000000000001e0 R_SPARC_LO10 __tracepoint_scsi_eh_wakeup+0x0000000000000020
ldx [%fp+2175], %g1 ! shost, tmp123
stx %g1, [%fp+2007] ! tmp123, shost
sethi %hi(__tracepoint_scsi_eh_wakeup), %g1 !, tmp125
or %g1, %lo(__tracepoint_scsi_eh_wakeup), %g1 ! tmp125,, tmp124
ld [%g1+8], %g1 ! __tracepoint_scsi_eh_wakeup.state, D.32824
xor %g1, 0, %g1 ! D.32824,, tmp126
subcc %g0, %g1, %g0 !, tmp126
addx %g0, 0, %g1 !,, D.32823
brz %g1, .LL3
nop ! D.32822,
sethi %hi(__tracepoint_scsi_eh_wakeup+32), %g1 !, tmp127
or %g1, %lo(__tracepoint_scsi_eh_wakeup+32), %g1 ! tmp127,, D.32820
ldx [%g1], %g1 !* D.32820, tmp128
stx %g1, [%fp+2015] ! tmp128, _________p1
Regards
Richard
next prev parent reply other threads:[~2011-01-17 19: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 ` 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 ` Richard Mortimer [this message]
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=1295293581.32152.70.camel@duncow \
--to=richm@oldelvet.org.uk \
--cc=609371@bugs.debian.org \
--cc=Jesper.Nilsson@axis.com \
--cc=ben@decadent.org.uk \
--cc=davem@davemloft.net \
--cc=fweisbec@gmail.com \
--cc=jeffm@suse.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.