From: Michael Schmitz <schmitzmic@gmail.com>
To: Finn Thain <fthain@linux-m68k.org>
Cc: debian-68k@lists.debian.org, linux-m68k@lists.linux-m68k.org
Subject: Re: reliable reproducer, was Re: core dump analysis
Date: Thu, 20 Apr 2023 12:55:01 +1200 [thread overview]
Message-ID: <406cb339-0a0c-4d71-9b5c-c11568793c14@gmail.com> (raw)
In-Reply-To: <54597ab3-2776-2a55-9952-3bfbbc329829@linux-m68k.org>
Hi Finn,
On 19/04/23 22:50, Finn Thain wrote:
> On Tue, 18 Apr 2023, Michael Schmitz wrote:
>
>> ... I think what's stored there is the extra frame content for a format
>> b bus error frame. But that extra frame is incomplete at best (should be
>> 22 longwords, only a4 are seen). Probably overwritten by the stack frame
>> from __GI___wait4_time64.
>>
>> Let's parse what's left:
>> <=
>>>>> 0xefffefe4: 0xc0028780 <= internal registers (6x)
>>>>> 0xefffefe0: 0x3c344bfb <=
>>>>> 0xefffefdc: 0x000af353 <=
>>>>> 0xefffefd8: 0x3c340170 <= internal reg; version no.
>>>>> 0xefffefd4: 0x00000000 <= data input buffer
>>>>> 0xefffefd0: 0xc00e417c <= internal registers (2x)
>>>>> 0xefffefcc: 0xc00e417e <= stage b address
>>>>> 0xefffefc8: 0xc00e4180 <= internal registers (4x)
>>>>> 0xefffefc4: 0x48e73c34 <=
>>>>> 0xefffefc0: 0x00000000 <= data output buffer
>>>>> 0xefffefbc: 0xefffeff8 <= internal registers (2x)
>>>>> 0xefffefb8: 0xefffeffc <= data fault address
>>>>> 0xefffefb4: 0x4bfb0170 <= ins stage c, stage b
>>>>> 0xefffefb0: 0x0eee0709 <= internal register; ssw
>> The fault address is the location on the stack where a2 is saved. That
>> does match the data output buffer contents BTW. fc, fb, rc, rb bits
>> clear means the fault didn't occur in stage b or c instructions. ssw bit
>> 8 set indicates a data fault - the data cycle should be rerun on rte. rm
>> and rw bits clear tell us it's a write fault. If the moveml instruction
>> copies registers to the stack in descending order, the fault address
>> makes sense - the stack pointer just crossed a page boundary.
>>
> Inspired by your observation about the page fault and stack growth, I
> wrote a small test program (given below) that just pushes registers onto
> the stack recursively while forking processes and collecting the SIGCHLD
> signals.
>
> On a Motorola '030 the stack grows to about 7 MiB before it gets
> corrupted. The program detects the stack corruption and terminates
> immediately with an illegal instruction. Oddly, the program never detects
> any stack corruption when run on the QEMU '040.
That's great - finally irrefutable confirmation that we're onto a kernel
bug.
>
> root@debian:~# ./movem
> Illegal instruction
> root@debian:~# ulimit -a
> real-time non-blocking time (microseconds, -R) unlimited
> core file size (blocks, -c) 0
> data seg size (kbytes, -d) unlimited
> scheduling priority (-e) 0
> file size (blocks, -f) unlimited
> pending signals (-i) 242
> max locked memory (kbytes, -l) 8192
> max memory size (kbytes, -m) unlimited
> open files (-n) 1024
> pipe size (512 bytes, -p) 8
> POSIX message queues (bytes, -q) 819200
> real-time priority (-r) 0
> stack size (kbytes, -s) 8192
> cpu time (seconds, -t) unlimited
> max user processes (-u) 242
> virtual memory (kbytes, -v) unlimited
> file locks (-x) unlimited
> root@debian:~# ulimit -s 7200
> root@debian:~# ./movem
> Illegal instruction
> root@debian:~# ulimit -s 7000
> root@debian:~# ./movem
> Segmentation fault
> root@debian:~# ulimit -s 16384
> root@debian:~# ./movem
> Illegal instruction
> root@debian:~#
>
> Looking at the core dump in gdb, the backtrace has 189869 frames. The dead
> stack frames confirm the recursion depth reached the limit I set at 200000
> before the stack began to reduce again. This was also confirmed by the
> lowest page fault address that was logged by the custom kernel.
>
> That means validation succeeded 200000 - 189869 == 10131 times before it
> encountered corruption (I should try to figure out whether this varies).
>
> The registers %a2, %a3 and %a4 below should contain 0x91929394, 0xa1a2a3a4
> and 0xb1b2b3b4 respectively. But they don't. Their values were restored
> from a corrupted stack by the returning rec() function call.
>
> (gdb) info reg
> d0 0x91929394 -1852664940
> d1 0xf3 243
> d2 0xd1d2d3d4 -774712364
> d3 0xe1e2e3e4 -505224220
> d4 0xf1f2f3f4 -235736076
> d5 0x80003f0c -2147467508
> d6 0xd014c528 -803945176
> d7 0x0 0
> a0 0xc0021708 0xc0021708
> a1 0xc0023e8c 0xc0023e8c <__stack_chk_guard>
> a2 0xf3 0xf3
> a3 0x1464000 0x1464000
> a4 0xef97bf44 0xef97bf44
> a5 0xc1c2c3c4 0xc1c2c3c4
> fp 0xef97b034 0xef97b034
> sp 0xef97b018 0xef97b018
> ps 0x8 [ N ]
> pc 0x800005f6 0x800005f6 <rec+262>
> fpcontrol 0x0 0
> fpstatus 0x0 0
> fpiaddr 0x0 0x0
>
> (gdb) x/z $sp - 36
> 0xef97aff4: 0xd1d2d3d4
> (gdb)
> 0xef97aff8: 0xe1e2e3e4
> (gdb)
> 0xef97affc: 0xf1f2f3f4
> (gdb)
> 0xef97b000: 0x000000f3
> (gdb)
> 0xef97b004: 0x01464000
> (gdb)
> 0xef97b008: 0xef97bf44
> (gdb)
> 0xef97b00c: 0xc1c2c3c4
> (gdb)
> 0xef97b010: 0xef97b034
> (gdb)
> 0xef97b014: 0x8000055c
>
> As with dash, the corruption lies the page boundary.
Hence implies a page fault handled at the page boundary.
Can you try and fault in as many of these stack pages as possible, ahead
of filling the stack? (Depending on how much RAM you have ...). Maybe we
would need to lock those pages into memory? Just to show that with no
page faults (but still signals) there is no corruption?
> Any signal frames or exception frames have been completely overwritten
> because the recursion continued after the corruption took place. So
> there's not much to see in the core dump.
We'd need a way to stop recursion once the first corruption has taken
place. If the 'safe' recursion depth of 10131 is constant, the dump
taken at that point should look similar to what you saw in dash
(assuming it is the page fault and subsequent signal return that causes
the corruption).
I'll give your test case a spin on my Falcon. I should also have a range
of kernels to test and answer Geert's question...
Cheers,
Michael
>
> (gdb) disass rec
> Dump of assembler code for function rec:
> 0x800004f0 <+0>: linkw %fp,#0
> 0x800004f4 <+4>: moveml %d2-%d4/%a2-%a5,%sp@-
> 0x800004f8 <+8>: moveal 0x80000672 <i0>,%a2
> 0x800004fe <+14>: moveal 0x80000676 <i1>,%a3
> 0x80000504 <+20>: moveal 0x8000067a <i2>,%a4
> 0x8000050a <+26>: moveal 0x8000067e <i3>,%a5
> 0x80000510 <+32>: movel 0x80000682 <i4>,%d2
> 0x80000516 <+38>: movel 0x80000686 <i5>,%d3
> 0x8000051c <+44>: movel 0x8000068a <i6>,%d4
> 0x80000522 <+50>: movel 0x80004034 <depth>,%d0
> 0x80000528 <+56>: andil #2047,%d0
> 0x8000052e <+62>: bnes 0x80000542 <rec+82>
> 0x80000530 <+64>: jsr 0x8000042c <fork@plt>
> 0x80000536 <+70>: tstl %d0
> 0x80000538 <+72>: bnes 0x80000542 <rec+82>
> 0x8000053a <+74>: clrl %sp@-
> 0x8000053c <+76>: jsr 0x80000404 <exit@plt>
> 0x80000542 <+82>: movel 0x80004034 <depth>,%d0
> 0x80000548 <+88>: subql #1,%d0
> 0x8000054a <+90>: movel %d0,0x80004034 <depth>
> 0x80000550 <+96>: movel 0x80004034 <depth>,%d0
> 0x80000556 <+102>: beqs 0x8000055c <rec+108>
> 0x80000558 <+104>: jsr %pc@(0x800004f0 <rec>)
> 0x8000055c <+108>: movel %a2,0x8000403c <o0>
> 0x80000562 <+114>: movel %a3,0x80004040 <o1>
> 0x80000568 <+120>: movel %a4,0x80004044 <o2>
> 0x8000056e <+126>: movel %a5,0x80004048 <o3>
> 0x80000574 <+132>: movel %d2,0x8000404c <o4>
> 0x8000057a <+138>: movel %d3,0x80004050 <o5>
> 0x80000580 <+144>: movel %d4,0x80004054 <o6>
> 0x80000586 <+150>: movel 0x8000403c <o0>,%d1
> 0x8000058c <+156>: movel #-1852664940,%d0
> 0x80000592 <+162>: cmpl %d1,%d0
> 0x80000594 <+164>: bnes 0x800005f6 <rec+262>
> 0x80000596 <+166>: movel 0x80004040 <o1>,%d1
> 0x8000059c <+172>: movel #-1583176796,%d0
> 0x800005a2 <+178>: cmpl %d1,%d0
> 0x800005a4 <+180>: bnes 0x800005f6 <rec+262>
> 0x800005a6 <+182>: movel 0x80004044 <o2>,%d1
> 0x800005ac <+188>: movel #-1313688652,%d0
> 0x800005b2 <+194>: cmpl %d1,%d0
> 0x800005b4 <+196>: bnes 0x800005f6 <rec+262>
> 0x800005b6 <+198>: movel 0x80004048 <o3>,%d1
> 0x800005bc <+204>: movel #-1044200508,%d0
> 0x800005c2 <+210>: cmpl %d1,%d0
> 0x800005c4 <+212>: bnes 0x800005f6 <rec+262>
> 0x800005c6 <+214>: movel 0x8000404c <o4>,%d1
> 0x800005cc <+220>: movel #-774712364,%d0
> 0x800005d2 <+226>: cmpl %d1,%d0
> 0x800005d4 <+228>: bnes 0x800005f6 <rec+262>
> 0x800005d6 <+230>: movel 0x80004050 <o5>,%d1
> 0x800005dc <+236>: movel #-505224220,%d0
> 0x800005e2 <+242>: cmpl %d1,%d0
> 0x800005e4 <+244>: bnes 0x800005f6 <rec+262>
> 0x800005e6 <+246>: movel 0x80004054 <o6>,%d1
> 0x800005ec <+252>: movel #-235736076,%d0
> 0x800005f2 <+258>: cmpl %d1,%d0
> 0x800005f4 <+260>: beqs 0x800005f8 <rec+264>
> => 0x800005f6 <+262>: illegal
> 0x800005f8 <+264>: nop
> 0x800005fa <+266>: moveml %fp@(-28),%d2-%d4/%a2-%a5
> 0x80000600 <+272>: unlk %fp
> 0x80000602 <+274>: rts
> End of assembler dump.
>
> ---
>
> #include <stdlib.h>
> #include <unistd.h>
> #include <stdio.h>
> #include <signal.h>
> #include <string.h>
>
> int depth = 200000;
>
> const unsigned long i0 = 0x91929394;
> const unsigned long i1 = 0xa1a2a3a4;
> const unsigned long i2 = 0xb1b2b3b4;
> const unsigned long i3 = 0xc1c2c3c4;
> const unsigned long i4 = 0xd1d2d3d4;
> const unsigned long i5 = 0xe1e2e3e4;
> const unsigned long i6 = 0xf1f2f3f4;
>
> unsigned long o0;
> unsigned long o1;
> unsigned long o2;
> unsigned long o3;
> unsigned long o4;
> unsigned long o5;
> unsigned long o6;
>
> static void rec(void)
> {
> // initialize registers
> asm( " move.l %0, %%a2\n"
> " move.l %1, %%a3\n"
> " move.l %2, %%a4\n"
> " move.l %3, %%a5\n"
> " move.l %4, %%d2\n"
> " move.l %5, %%d3\n"
> " move.l %6, %%d4\n"
> :
> : "m" (i0), "m" (i1), "m" (i2),
> "m" (i3), "m" (i4), "m" (i5), "m" (i6)
> : "a2", "a3", "a4", "a5", "d2", "d3", "d4"
> );
>
> // maybe fork a short-lived process
> if ((depth & 0x7ff) == 0)
> if (fork() == 0)
> exit(0);
>
> if (--depth)
> rec(); // callee to save & restore registers
>
> // compare register contents
> asm( " move.l %%a2, %0\n"
> " move.l %%a3, %1\n"
> " move.l %%a4, %2\n"
> " move.l %%a5, %3\n"
> " move.l %%d2, %4\n"
> " move.l %%d3, %5\n"
> " move.l %%d4, %6\n"
> : "=m" (o0), "=m" (o1), "=m" (o2),
> "=m" (o3), "=m" (o4), "=m" (o5), "=m" (o6)
> :
> :
> );
> if (o0 != i0 || o1 != i1 || o2 != i2 ||
> o3 != i3 || o4 != i4 || o5 != i5 || o6 != i6)
> asm("illegal");
> }
>
> static void handler(int)
> {
> }
>
> int main(void)
> {
> struct sigaction act;
>
> memset(&act, 0, sizeof(act));
> act.sa_handler = handler;
> sigaction(SIGCHLD, &act, NULL);
>
> rec();
> }
next prev parent reply other threads:[~2023-04-20 0:55 UTC|newest]
Thread overview: 134+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <4a9c1d0d-07aa-792e-921f-237d5a30fc44.ref@yahoo.com>
[not found] ` <4a9c1d0d-07aa-792e-921f-237d5a30fc44@yahoo.com>
2023-01-30 10:12 ` stack smashing detected Geert Uytterhoeven
2023-01-31 3:05 ` Michael Schmitz
[not found] ` <af524ac9-f5af-e9fb-e33f-0884a0ebfcb6@yahoo.com>
2023-02-01 18:51 ` Michael Schmitz
2023-02-02 7:52 ` Geert Uytterhoeven
[not found] ` <8fb2aa62-dcec-9bd0-b8da-00d9bb4ddaba@yahoo.com>
2023-02-03 0:15 ` Michael Schmitz
2023-02-05 22:19 ` Michael Schmitz
[not found] ` <33d7ea3e-9bd2-16e4-4d9a-f7aa5657a0f7@yahoo.com>
2023-02-07 22:58 ` Michael Schmitz
2023-02-09 3:41 ` Michael Schmitz
[not found] ` <c01e2f1c-425f-478d-918e-cd1fd37e0008@yahoo.com>
[not found] ` <aee359a6-b5e0-fbe2-3988-779f8601f106@gmail.com>
[not found] ` <8042d988-6dd9-8170-60e9-cdf19118440f@yahoo.com>
[not found] ` <a8f06e4b-db28-c8f9-5e21-3ea0f3eebacd@linux-m68k.org>
[not found] ` <bb27b393-3d02-f42c-5c7f-c27d4936ece9@linux-m68k.org>
[not found] ` <37da2ca2-dd99-8417-7cae-a88e2e7fc1b6@yahoo.com>
[not found] ` <30a1be59-a1fd-f882-1072-c7db8734b1f1@gmail.com>
[not found] ` <39f79c2d-e803-d7b1-078f-8757ca9b1238@yahoo.com>
[not found] ` <c47abfdc-31c8-e7ed-1c14-90f68710f25d@gmail.com>
[not found] ` <040ad66a-71dd-001b-0446-36cbd6547b37@yahoo.com>
[not found] ` <5b9d64bb-2adc-20a2-f596-f99bf255b5cc@linux-m68k.org>
[not found] ` <56bd9a33-c58a-58e0-3956-e63c61abe5fe@yahoo.com>
[not found] ` <1725f7c1-2084-a404-653d-9e9f8bbe961c@linux-m68k.org>
2023-03-28 3:37 ` core dump analysis, was " Finn Thain
2023-03-31 3:33 ` Finn Thain
2023-04-01 9:27 ` Finn Thain
2023-04-01 10:11 ` Andreas Schwab
2023-04-02 10:46 ` Finn Thain
2023-04-02 22:01 ` Michael Schmitz
2023-04-04 0:13 ` Finn Thain
2023-04-04 23:22 ` Michael Schmitz
2023-04-05 2:00 ` Finn Thain
2023-04-07 1:57 ` Michael Schmitz
2023-04-07 4:03 ` dash behaviour, was Re: core dump analysis Finn Thain
2023-04-07 12:10 ` Geert Uytterhoeven
2023-04-08 5:29 ` Finn Thain
2023-04-09 8:30 ` Geert Uytterhoeven
2023-04-09 3:48 ` Michael Schmitz
2023-04-09 4:42 ` Finn Thain
2023-04-09 4:55 ` Michael Schmitz
2023-04-09 7:32 ` Finn Thain
2023-04-10 8:12 ` Michael Schmitz
2023-04-10 9:39 ` kernel behaviour, was Re: dash behaviour Finn Thain
2023-04-11 4:29 ` Michael Schmitz
2023-04-11 4:50 ` Finn Thain
2023-04-11 7:21 ` Geert Uytterhoeven
2023-04-07 12:06 ` core dump analysis, was Re: stack smashing detected Geert Uytterhoeven
2023-04-09 1:56 ` Michael Schmitz
2023-04-11 0:20 ` instrumentation, was Re: core dump analysis Finn Thain
2023-04-11 4:56 ` Michael Schmitz
2023-04-11 5:54 ` Finn Thain
2023-04-11 7:19 ` Geert Uytterhoeven
2023-04-11 8:24 ` Michael Schmitz
2023-04-12 23:22 ` Eero Tamminen
2023-04-15 15:50 ` Eero Tamminen
2023-04-15 21:56 ` Brad Boyer
2023-04-14 9:30 ` core dump analysis, was Re: stack smashing detected Finn Thain
2023-04-16 1:50 ` Michael Schmitz
2023-04-16 6:44 ` Finn Thain
2023-04-17 23:32 ` Michael Schmitz
2023-04-18 2:04 ` Finn Thain
2023-04-18 5:29 ` Michael Schmitz
2023-04-19 1:50 ` Finn Thain
2023-04-19 8:15 ` Michael Schmitz
2023-04-23 7:46 ` Finn Thain
2023-04-23 21:26 ` Michael Schmitz
2023-04-19 10:50 ` reliable reproducer, was Re: core dump analysis Finn Thain
2023-04-19 11:55 ` Geert Uytterhoeven
2023-04-20 1:02 ` Finn Thain
2023-04-20 0:55 ` Michael Schmitz [this message]
2023-04-20 2:57 ` Finn Thain
2023-04-20 4:08 ` Michael Schmitz
2023-04-20 5:17 ` Finn Thain
2023-04-20 5:48 ` Finn Thain
2023-04-20 7:34 ` Michael Schmitz
2023-04-20 7:47 ` Finn Thain
2023-04-20 8:23 ` Michael Schmitz
2023-04-20 8:55 ` Finn Thain
2023-04-20 21:58 ` Michael Schmitz
2023-04-21 1:45 ` Michael Schmitz
2023-04-21 5:52 ` Michael Schmitz
2023-04-21 8:30 ` Finn Thain
2023-04-21 9:18 ` Michael Schmitz
2023-04-22 7:54 ` Michael Schmitz
2023-04-22 8:07 ` Andreas Schwab
2023-04-22 8:16 ` Michael Schmitz
2023-04-22 10:12 ` Andreas Schwab
2023-04-22 18:24 ` Michael Schmitz
2023-04-22 18:38 ` Andreas Schwab
2023-04-22 20:06 ` Michael Schmitz
2023-04-22 20:46 ` Andreas Schwab
2023-04-23 1:41 ` Michael Schmitz
2023-04-23 7:37 ` Andreas Schwab
2023-04-23 8:18 ` Michael Schmitz
2023-04-23 8:23 ` Andreas Schwab
2023-04-23 20:19 ` Michael Schmitz
2023-04-23 21:48 ` Andreas Schwab
2023-04-24 3:51 ` Michael Schmitz
2023-04-24 5:46 ` Michael Schmitz
2023-04-23 9:23 ` Finn Thain
2023-04-23 20:43 ` Michael Schmitz
2023-04-24 23:44 ` Finn Thain
[not found] ` <1d9955d2-6016-a238-142a-887f95465dd8@linux-m68k.org>
[not found] ` <4763c8e2-6fb3-eda6-10d0-94ed1d01cd60@gmail.com>
[not found] ` <a5d70bac-bd00-7131-9ca0-18976f539adf@linux-m68k.org>
[not found] ` <b150c146-cade-bcd3-9c34-d99284dcd153@gmail.com>
[not found] ` <c3d2d874-e366-1d3b-71b0-7a089d40308a@linux-m68k.org>
2023-04-25 1:55 ` signal delivery, was Re: reliable reproducer Finn Thain
2023-04-25 2:32 ` Michael Schmitz
2023-04-25 5:59 ` Michael Schmitz
2023-04-26 19:45 ` Michael Schmitz
[not found] ` <1c4fc19f-ad9b-7b8f-6638-8b026fe1280b@linux-m68k.org>
[not found] ` <5ac55169-4916-d671-489f-7eb8fb85d336@gmail.com>
[not found] ` <9544ef26-a444-e186-fb1e-0e914acd36af@gmail.com>
[not found] ` <20de24b3-098d-4603-2768-b0468a4fe772@gmail.com>
[not found] ` <69565abb-1cd6-716e-046e-5a6d69a4e617@linux-m68k.org>
[not found] ` <89cb2211-5f6e-07a2-3149-1ad1ad887265@linux-m68k.org>
[not found] ` <d3d27369-8532-ba69-2463-66b8decbee67@gmail.com>
[not found] ` <4b4eacf2-6934-5563-fb47-04843a77a35c@gmail.com>
2023-04-29 0:28 ` Finn Thain
2023-04-29 0:53 ` Finn Thain
2023-04-29 2:53 ` Michael Schmitz
2023-04-29 5:03 ` Finn Thain
2023-04-29 6:01 ` Michael Schmitz
2023-04-29 6:13 ` Finn Thain
2023-04-29 6:43 ` Michael Schmitz
2023-04-29 6:05 ` Finn Thain
2023-04-29 7:11 ` Andreas Schwab
2023-04-29 7:37 ` Michael Schmitz
2023-04-25 9:26 ` Eero Tamminen
2023-04-25 11:25 ` Andreas Schwab
2023-04-25 19:46 ` Michael Schmitz
2023-04-26 1:54 ` Michael Schmitz
2023-04-26 3:27 ` Finn Thain
2023-04-26 3:56 ` Michael Schmitz
2023-04-26 4:53 ` Finn Thain
2023-04-26 2:02 ` Finn Thain
2023-04-26 4:00 ` Michael Schmitz
2023-04-26 4:42 ` Finn Thain
2023-04-26 9:10 ` Michael Schmitz
2023-04-26 21:48 ` Brad Boyer
2023-04-26 8:31 ` Andreas Schwab
2023-04-25 11:53 ` Andreas Schwab
2023-04-26 1:59 ` Finn Thain
2023-04-25 5:18 ` reliable reproducer, was Re: core dump analysis Michael Schmitz
2023-04-22 9:00 ` Michael Schmitz
2023-04-21 1:15 ` Finn Thain
2023-04-21 1:57 ` Michael Schmitz
2023-04-21 1:39 ` Finn Thain
2023-04-20 6:04 ` Finn Thain
2023-04-20 7:40 ` Michael Schmitz
2023-04-20 7:58 ` Finn Thain
2023-04-02 4:09 ` core dump analysis, was Re: stack smashing detected Michael Schmitz
2023-04-02 9:31 ` Finn Thain
2023-04-03 8:26 ` Michael Schmitz
2023-04-04 4:05 ` Finn Thain
2023-04-04 11:05 ` Finn Thain
2023-04-09 4:02 ` Finn Thain
2023-02-03 23:39 ` Finn Thain
[not found] ` <86badf6e-2cc8-1937-1a2f-45334bb338f4@yahoo.com>
2023-02-05 22:29 ` Debian initramfs/initrd, was " Finn Thain
2023-02-05 23:18 ` John Paul Adrian Glaubitz
[not found] ` <8107e04f-fd60-c6e3-2bad-cc0d99877967@yahoo.com>
2023-02-06 7:52 ` Geert Uytterhoeven
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=406cb339-0a0c-4d71-9b5c-c11568793c14@gmail.com \
--to=schmitzmic@gmail.com \
--cc=debian-68k@lists.debian.org \
--cc=fthain@linux-m68k.org \
--cc=linux-m68k@lists.linux-m68k.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