From: Richard Henderson <richard.henderson@linaro.org>
To: Warner Losh <imp@bsdimp.com>
Cc: Kyle Evans <kevans@freebsd.org>, Warner Losh <imp@freebsd.org>,
QEMU Developers <qemu-devel@nongnu.org>,
Stacey Son <sson@freebsd.org>
Subject: Re: [PATCH for 6.2 22/49] bsd-user: Move per-cpu code into target_arch_cpu.h
Date: Sat, 7 Aug 2021 20:16:52 -1000 [thread overview]
Message-ID: <b228f86c-4ab2-b26c-2bd2-a04fc434c335@linaro.org> (raw)
In-Reply-To: <CANCZdfpcLOKRr5-YDOjNJbJLUJmBCFq8Cxpi4tkEasxOnrLZcA@mail.gmail.com>
On 8/7/21 8:03 PM, Warner Losh wrote:
>
>
> On Sat, Aug 7, 2021 at 11:35 PM Richard Henderson <richard.henderson@linaro.org
> <mailto:richard.henderson@linaro.org>> wrote:
>
> On 8/7/21 11:42 AM, Warner Losh wrote:
> > diff --git a/bsd-user/i386/target_arch_cpu.c b/bsd-user/i386/target_arch_cpu.c
> > index 7f2f755a11..71998e5ba5 100644
> > --- a/bsd-user/i386/target_arch_cpu.c
> > +++ b/bsd-user/i386/target_arch_cpu.c
> > @@ -1,6 +1,7 @@
> > /*
> > * i386 cpu related code
> > *
> > + * Copyright (c) 2013 Stacey Son <sson@FreeBSD.org>
> > *
> > * This program is free software; you can redistribute it and/or modify
> > * it under the terms of the GNU General Public License as published by
>
> Should be in previous.
>
>
> Gotcha.
>
> > +static inline void target_cpu_init(CPUX86State *env,
> > + struct target_pt_regs *regs)
> > +{
> > + uint64_t *gdt_table;
> > +
> > + env->cr[0] = CR0_PG_MASK | CR0_WP_MASK | CR0_PE_MASK;
> > + env->hflags |= HF_PE_MASK | HF_CPL_MASK;
> > + if (env->features[FEAT_1_EDX] & CPUID_SSE) {
> > + env->cr[4] |= CR4_OSFXSR_MASK;
> > + env->hflags |= HF_OSFXSR_MASK;
> > + }
> > +
> > + /* flags setup : we activate the IRQs by default as in user mode */
> > + env->eflags |= IF_MASK;
> > +
> > + /* register setup */
> > + env->regs[R_EAX] = regs->eax;
> > + env->regs[R_EBX] = regs->ebx;
> > + env->regs[R_ECX] = regs->ecx;
> > + env->regs[R_EDX] = regs->edx;
> > + env->regs[R_ESI] = regs->esi;
> > + env->regs[R_EDI] = regs->edi;
> > + env->regs[R_EBP] = regs->ebp;
> > + env->regs[R_ESP] = regs->esp;
> > + env->eip = regs->eip;
> > +
> > + /* interrupt setup */
> > + env->idt.limit = 255;
> > +
> > + env->idt.base = target_mmap(0, sizeof(uint64_t) * (env->idt.limit + 1),
> > + PROT_READ|PROT_WRITE, MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
> > + bsd_i386_set_idt_base(env->idt.base);
> > + bsd_i386_set_idt(0, 0);
> > + bsd_i386_set_idt(1, 0);
> > + bsd_i386_set_idt(2, 0);
> > + bsd_i386_set_idt(3, 3);
> > + bsd_i386_set_idt(4, 3);
> > + bsd_i386_set_idt(5, 0);
> > + bsd_i386_set_idt(6, 0);
> > + bsd_i386_set_idt(7, 0);
> > + bsd_i386_set_idt(8, 0);
> > + bsd_i386_set_idt(9, 0);
> > + bsd_i386_set_idt(10, 0);
> > + bsd_i386_set_idt(11, 0);
> > + bsd_i386_set_idt(12, 0);
> > + bsd_i386_set_idt(13, 0);
> > + bsd_i386_set_idt(14, 0);
> > + bsd_i386_set_idt(15, 0);
> > + bsd_i386_set_idt(16, 0);
> > + bsd_i386_set_idt(17, 0);
> > + bsd_i386_set_idt(18, 0);
> > + bsd_i386_set_idt(19, 0);
> > + bsd_i386_set_idt(0x80, 3);
> > +
> > + /* segment setup */
> > + env->gdt.base = target_mmap(0, sizeof(uint64_t) * TARGET_GDT_ENTRIES,
> > + PROT_READ|PROT_WRITE, MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
> > + env->gdt.limit = sizeof(uint64_t) * TARGET_GDT_ENTRIES - 1;
> > + gdt_table = g2h_untagged(env->gdt.base);
> > +
> > + bsd_i386_write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff,
> > + DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
> > + (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT));
> > +
> > + bsd_i386_write_dt(&gdt_table[__USER_DS >> 3], 0, 0xfffff,
> > + DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
> > + (3 << DESC_DPL_SHIFT) | (0x2 << DESC_TYPE_SHIFT));
> > +
> > + cpu_x86_load_seg(env, R_CS, __USER_CS);
> > + cpu_x86_load_seg(env, R_SS, __USER_DS);
> > + cpu_x86_load_seg(env, R_DS, __USER_DS);
> > + cpu_x86_load_seg(env, R_ES, __USER_DS);
> > + cpu_x86_load_seg(env, R_FS, __USER_DS);
> > + cpu_x86_load_seg(env, R_GS, __USER_DS);
> > + /* This hack makes Wine work... */
> > + env->segs[R_FS].selector = 0;
> > +}
> > +
> > +static inline void target_cpu_loop(CPUX86State *env)
> > +{
> > + CPUState *cs = env_cpu(env);
> > + int trapnr;
> > + abi_ulong pc;
> > + /* target_siginfo_t info; */
> > +
> > + for (;;) {
> > + cpu_exec_start(cs);
> > + trapnr = cpu_exec(cs);
> > + cpu_exec_end(cs);
> > + process_queued_cpu_work(cs);
> > +
> > + switch (trapnr) {
> > + case 0x80:
> > + /* syscall from int $0x80 */
> > + if (bsd_type == target_freebsd) {
> > + abi_ulong params = (abi_ulong) env->regs[R_ESP] +
> > + sizeof(int32_t);
> > + int32_t syscall_nr = env->regs[R_EAX];
> > + int32_t arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8;
> > +
> > + if (syscall_nr == TARGET_FREEBSD_NR_syscall) {
> > + get_user_s32(syscall_nr, params);
> > + params += sizeof(int32_t);
> > + } else if (syscall_nr == TARGET_FREEBSD_NR___syscall) {
> > + get_user_s32(syscall_nr, params);
> > + params += sizeof(int64_t);
> > + }
> > + get_user_s32(arg1, params);
> > + params += sizeof(int32_t);
> > + get_user_s32(arg2, params);
> > + params += sizeof(int32_t);
> > + get_user_s32(arg3, params);
> > + params += sizeof(int32_t);
> > + get_user_s32(arg4, params);
> > + params += sizeof(int32_t);
> > + get_user_s32(arg5, params);
> > + params += sizeof(int32_t);
> > + get_user_s32(arg6, params);
> > + params += sizeof(int32_t);
> > + get_user_s32(arg7, params);
> > + params += sizeof(int32_t);
> > + get_user_s32(arg8, params);
> > + env->regs[R_EAX] = do_freebsd_syscall(env,
> > + syscall_nr,
> > + arg1,
> > + arg2,
> > + arg3,
> > + arg4,
> > + arg5,
> > + arg6,
> > + arg7,
> > + arg8);
> > + } else { /* if (bsd_type == target_openbsd) */
> > + env->regs[R_EAX] = do_openbsd_syscall(env,
> > + env->regs[R_EAX],
> > + env->regs[R_EBX],
> > + env->regs[R_ECX],
> > + env->regs[R_EDX],
> > + env->regs[R_ESI],
> > + env->regs[R_EDI],
> > + env->regs[R_EBP]);
> > + }
> > + if (((abi_ulong)env->regs[R_EAX]) >= (abi_ulong)(-515)) {
> > + env->regs[R_EAX] = -env->regs[R_EAX];
> > + env->eflags |= CC_C;
> > + } else {
> > + env->eflags &= ~CC_C;
> > + }
> > + break;
> > +
> > +#if 0
> > + case EXCP0B_NOSEG:
> > + case EXCP0C_STACK:
> > + info.si_signo = TARGET_SIGBUS;
> > + info.si_errno = 0;
> > + info.si_code = TARGET_SI_KERNEL;
> > + info._sifields._sigfault._addr = 0;
> > + queue_signal(env, info.si_signo, &info);
> > + break;
> > +
> > + case EXCP0D_GPF:
> > + /* XXX: potential problem if ABI32 */
> > + if (env->eflags & VM_MASK) {
> > + handle_vm86_fault(env);
> > + } else {
> > + info.si_signo = TARGET_SIGSEGV;
> > + info.si_errno = 0;
> > + info.si_code = TARGET_SI_KERNEL;
> > + info._sifields._sigfault._addr = 0;
> > + queue_signal(env, info.si_signo, &info);
> > + }
> > + break;
> > +
> > + case EXCP0E_PAGE:
> > + info.si_signo = TARGET_SIGSEGV;
> > + info.si_errno = 0;
> > + if (!(env->error_code & 1)) {
> > + info.si_code = TARGET_SEGV_MAPERR;
> > + } else {
> > + info.si_code = TARGET_SEGV_ACCERR;
> > + }
> > + info._sifields._sigfault._addr = env->cr[2];
> > + queue_signal(env, info.si_signo, &info);
> > + break;
> > +
> > + case EXCP00_DIVZ:
> > + if (env->eflags & VM_MASK) {
> > + handle_vm86_trap(env, trapnr);
> > + } else {
> > + /* division by zero */
> > + info.si_signo = TARGET_SIGFPE;
> > + info.si_errno = 0;
> > + info.si_code = TARGET_FPE_INTDIV;
> > + info._sifields._sigfault._addr = env->eip;
> > + queue_signal(env, info.si_signo, &info);
> > + }
> > + break;
> > +
> > + case EXCP01_DB:
> > + case EXCP03_INT3:
> > + if (env->eflags & VM_MASK) {
> > + handle_vm86_trap(env, trapnr);
> > + } else {
> > + info.si_signo = TARGET_SIGTRAP;
> > + info.si_errno = 0;
> > + if (trapnr == EXCP01_DB) {
> > + info.si_code = TARGET_TRAP_BRKPT;
> > + info._sifields._sigfault._addr = env->eip;
> > + } else {
> > + info.si_code = TARGET_SI_KERNEL;
> > + info._sifields._sigfault._addr = 0;
> > + }
> > + queue_signal(env, info.si_signo, &info);
> > + }
> > + break;
> > +
> > + case EXCP04_INTO:
> > + case EXCP05_BOUND:
> > + if (env->eflags & VM_MASK) {
> > + handle_vm86_trap(env, trapnr);
> > + } else {
> > + info.si_signo = TARGET_SIGSEGV;
> > + info.si_errno = 0;
> > + info.si_code = TARGET_SI_KERNEL;
> > + info._sifields._sigfault._addr = 0;
> > + queue_signal(env, info.si_signo, &info);
> > + }
> > + break;
> > +
> > + case EXCP06_ILLOP:
> > + info.si_signo = TARGET_SIGILL;
> > + info.si_errno = 0;
> > + info.si_code = TARGET_ILL_ILLOPN;
> > + info._sifields._sigfault._addr = env->eip;
> > + queue_signal(env, info.si_signo, &info);
> > + break;
> > +#endif
> > + case EXCP_INTERRUPT:
> > + /* just indicate that signals should be handled asap */
> > + break;
> > +#if 0
> > + case EXCP_DEBUG:
> > + {
> > +
> > + info.si_signo = TARGET_SIGTRAP;
> > + info.si_errno = 0;
> > + info.si_code = TARGET_TRAP_BRKPT;
> > + queue_signal(env, info.si_signo, &info);
> > + }
> > + break;
> > +#endif
> > +
> > + case EXCP_ATOMIC:
> > + cpu_exec_step_atomic(cs);
> > + break;
> > +
> > + default:
> > + pc = env->segs[R_CS].base + env->eip;
> > + fprintf(stderr, "qemu: 0x%08lx: unhandled CPU exception 0x%x - "
> > + "aborting\n", (long)pc, trapnr);
> > + abort();
> > + }
> > + process_pending_signals(env);
> > + }
> > +}
>
> Those are some really big functions to want to inline. Any reason for that? At first
> glance they could live just fine in target_arch_cpu.c.
>
>
> Mostly because that's how Stacey wrote it and we have half a dozen implementations
> already. I'll see how hard it would be to transition to this structure. I worried about
> this being so different than linux-user, but at the same time I worried about regressions
> that may be introduced in the effort since our testing story isn't what I'd like. I'm also
> a bit worried because we have two branches: the tip that we're trying to release from
> and this effort which needs any changes also merged to that tip branch.
>
> Having said that, I'll see what I can do.
I guess I'm happy to have them in the header for now, but just add something to the to-do
list once you're not juggling multiple branches.
I'll not say that linux-user is ideal either, btw. Just stuff you see doing new patch review.
r~
next prev parent reply other threads:[~2021-08-08 6:18 UTC|newest]
Thread overview: 123+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-07 21:41 [PATCH for 6.2 00/49] bsd-user updates to run hello world Warner Losh
2021-08-07 21:41 ` [PATCH for 6.2 01/49] bsd-user: remove sparc and sparc64 Warner Losh
2021-08-08 4:28 ` Richard Henderson
2021-08-07 21:41 ` [PATCH for 6.2 02/49] bsd-user: add copyright header to elfload.c Warner Losh
2021-08-08 4:29 ` Richard Henderson
2021-08-07 21:41 ` [PATCH for 6.2 03/49] bsd-user: Add Stacey's copyright to main.c Warner Losh
2021-08-08 4:30 ` Richard Henderson
2021-08-07 21:41 ` [PATCH for 6.2 04/49] bsd-user: Remove all non-x86 code from elfload.c Warner Losh
2021-08-08 4:30 ` Richard Henderson
2021-08-07 21:41 ` [PATCH for 6.2 05/49] bsd-user: move arch specific defines out of elfload.c Warner Losh
2021-08-08 4:35 ` Richard Henderson
2021-08-07 21:41 ` [PATCH for 6.2 06/49] bsd-user: merge comments and guards from bsd-user fork Warner Losh
2021-08-08 4:37 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 07/49] bsd-user: style nits: apply qemu style to these files Warner Losh
2021-08-08 4:38 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 08/49] bsd-user: style nits: fix whitespace issues to be qemu standard Warner Losh
2021-08-08 4:38 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 09/49] bsd-user: add license Warner Losh
2021-08-08 4:39 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 10/49] bsd-user: pass the bsd_param into loader_exec Warner Losh
2021-08-08 4:48 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 11/49] bsd-user: Fix calculation of size to allocate Warner Losh
2021-08-08 4:49 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 12/49] bsd-user: implement path searching Warner Losh
2021-08-08 5:11 ` Richard Henderson
2021-08-08 5:48 ` Kyle Evans
2021-08-08 17:22 ` Warner Losh
2021-08-07 21:42 ` [PATCH for 6.2 13/49] bsd-user: Eliminate elf personality Warner Losh
2021-08-08 5:12 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 14/49] bsd-user: remove a.out support Warner Losh
2021-08-08 5:14 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 15/49] bsd-user: TARGET_NGROUPS unused in this file, remove Warner Losh
2021-08-08 5:15 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 16/49] bsd-user: elfload: simplify bswap a bit Warner Losh
2021-08-08 5:17 ` Richard Henderson
2021-08-10 18:19 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 17/49] bsd-user: assume pthreads and support of __thread Warner Losh
2021-08-08 5:18 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 18/49] bsd-user: add host-os.h Warner Losh
2021-08-08 5:19 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 19/49] bsd-user: Include host-os.h from main Warner Losh
2021-08-08 5:20 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 20/49] bsd-user: save the path the qemu emulator Warner Losh
2021-08-08 5:24 ` Richard Henderson
2021-08-08 16:44 ` Warner Losh
2021-08-07 21:42 ` [PATCH for 6.2 21/49] bsd-user: start to move target CPU functions to target_arch* Warner Losh
2021-08-07 21:42 ` [PATCH for 6.2 22/49] bsd-user: Move per-cpu code into target_arch_cpu.h Warner Losh
2021-08-08 5:35 ` Richard Henderson
2021-08-08 6:03 ` Warner Losh
2021-08-08 6:16 ` Richard Henderson [this message]
2021-08-08 17:38 ` Warner Losh
2021-08-07 21:42 ` [PATCH for 6.2 23/49] bsd-user: pull in target_arch_thread.h update target_arch_elf.h Warner Losh
2021-08-08 6:24 ` Richard Henderson
2021-08-08 21:43 ` Warner Losh
2021-08-08 22:56 ` Warner Losh
2021-08-09 17:53 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 24/49] bsd-user: Include more things in qemu.h Warner Losh
2021-08-09 20:31 ` Richard Henderson
2021-08-10 2:35 ` Warner Losh
2021-08-07 21:42 ` [PATCH for 6.2 25/49] bsd-user: define max args in terms of pages Warner Losh
2021-08-09 20:33 ` Richard Henderson
2021-08-10 2:38 ` Warner Losh
2021-08-07 21:42 ` [PATCH for 6.2 26/49] bsd-user: Create target specific vmparam.h Warner Losh
2021-08-09 20:39 ` Richard Henderson
2021-08-10 2:44 ` Warner Losh
2021-08-07 21:42 ` [PATCH for 6.2 27/49] bsd-user: Add architecture specific signal tramp code Warner Losh
2021-08-09 20:39 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 28/49] bsd-user: Move stack initializtion into a per-os file Warner Losh
2021-08-09 21:00 ` Richard Henderson
2021-08-20 3:48 ` Warner Losh
2021-08-07 21:42 ` [PATCH for 6.2 29/49] bsd-user: Add system independent stack, data and text limiting Warner Losh
2021-08-09 21:05 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 30/49] bsd-user: elf cleanup Warner Losh
2021-08-09 23:47 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 31/49] bsd-user: Remove dead #ifdefs from elfload.c Warner Losh
2021-08-10 4:21 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 32/49] bsd-user: *BSD specific siginfo defintions Warner Losh
2021-08-10 4:26 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 33/49] bsd-user: Rewrite target system call definintion glue Warner Losh
2021-08-10 15:18 ` Richard Henderson
2021-08-20 1:10 ` Warner Losh
2021-08-07 21:42 ` [PATCH for 6.2 34/49] bsd-user: Fix initializtion of task state Warner Losh
2021-08-10 15:02 ` Richard Henderson
2021-08-10 22:28 ` Warner Losh
2021-08-07 21:42 ` [PATCH for 6.2 35/49] bsd-user: remove error_init Warner Losh
2021-08-10 15:07 ` Richard Henderson
2021-08-10 22:29 ` Warner Losh
2021-08-07 21:42 ` [PATCH for 6.2 36/49] bsd-user: Make cpu_model and cpu_type visible to all of main.c Warner Losh
2021-08-10 15:08 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 37/49] bsd-user: update debugging in mmap.c Warner Losh
2021-08-10 16:18 ` Richard Henderson
2021-08-10 22:34 ` Warner Losh
2021-08-10 23:36 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 38/49] bsd-user: Update mapping to handle reserved and starting conditions Warner Losh
2021-08-10 16:27 ` Richard Henderson
2021-08-10 22:38 ` Warner Losh
2021-08-07 21:42 ` [PATCH for 6.2 39/49] bsd-user: Need to reset CPU after creation Warner Losh
2021-08-10 16:32 ` Richard Henderson
2021-08-10 22:40 ` Warner Losh
2021-08-10 23:39 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 40/49] bsd-user: Add target_arch_reg to describe a target's register set Warner Losh
2021-08-10 16:44 ` Richard Henderson
2021-08-20 23:36 ` Warner Losh
2021-08-07 21:42 ` [PATCH for 6.2 41/49] bsd-user: Add target_os_user.h to capture the user/kernel structures Warner Losh
2021-08-10 16:46 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 42/49] bsd-user: add stubbed out core dump support Warner Losh
2021-08-10 17:27 ` Richard Henderson
2021-08-20 3:16 ` Warner Losh
2021-08-07 21:42 ` [PATCH for 6.2 43/49] bsd-user: elfload.c style catch up patch Warner Losh
2021-08-10 17:36 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 44/49] bsd-user: Refactor load_elf_sections and is_target_elf_binary Warner Losh
2021-08-10 17:55 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 45/49] bsd-user: Make guest_base an unsigned long Warner Losh
2021-08-10 17:58 ` Richard Henderson
2021-08-10 18:04 ` Warner Losh
2021-08-07 21:42 ` [PATCH for 6.2 46/49] bsd-user: move qemu_log to later in the file Warner Losh
2021-08-10 17:59 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 47/49] bsd-user: Implement interlock for atomic operations Warner Losh
2021-08-10 18:03 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 48/49] bsd-user: Implement cpu_copy() helper routine Warner Losh
2021-08-10 18:06 ` Richard Henderson
2021-08-07 21:42 ` [PATCH for 6.2 49/49] bsd-user: Add '-0 argv0' option to bsd-user/main.c Warner Losh
2021-08-10 18:08 ` Richard Henderson
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=b228f86c-4ab2-b26c-2bd2-a04fc434c335@linaro.org \
--to=richard.henderson@linaro.org \
--cc=imp@bsdimp.com \
--cc=imp@freebsd.org \
--cc=kevans@freebsd.org \
--cc=qemu-devel@nongnu.org \
--cc=sson@freebsd.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;
as well as URLs for NNTP newsgroup(s).