public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
From: Harish Chegondi <harish.chegondi-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
To: Leon Romanovsky <leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Dennis Dalessandro
	<dennis.dalessandro-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH for-next 13/16] IB/hfi1: Move structure and MACRO definitions in user_sdma.c to user_sdma.h
Date: Sun, 27 Aug 2017 22:04:27 -0700	[thread overview]
Message-ID: <59A3A45B.6080202@intel.com> (raw)
In-Reply-To: <20170822154025.GD1724-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>



On 08/22/2017 08:40 AM, Leon Romanovsky wrote:
> On Mon, Aug 21, 2017 at 06:27:29PM -0700, Dennis Dalessandro wrote:
>> From: Harish Chegondi <harish.chegondi-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
>>
>> Clean up user_sdma.c by moving the structure and MACRO definitions into
>> the header file user_sdma.h
>>
>> Reviewed-by: Dennis Dalessandro <dennis.dalessandro-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
>> Signed-off-by: Harish Chegondi <harish.chegondi-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
>> Signed-off-by: Dennis Dalessandro <dennis.dalessandro-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
>> ---
>>  drivers/infiniband/hw/hfi1/user_sdma.c |  168 --------------------------------
>>  drivers/infiniband/hw/hfi1/user_sdma.h |  166 ++++++++++++++++++++++++++++++++
>>  2 files changed, 166 insertions(+), 168 deletions(-)
>>
>> diff --git a/drivers/infiniband/hw/hfi1/user_sdma.c b/drivers/infiniband/hw/hfi1/user_sdma.c
>> index 8a1653a..dacb0fc 100644
>> --- a/drivers/infiniband/hw/hfi1/user_sdma.c
>> +++ b/drivers/infiniband/hw/hfi1/user_sdma.c
>> @@ -74,176 +74,8 @@
>>  module_param_named(sdma_comp_size, hfi1_sdma_comp_ring_size, uint, S_IRUGO);
>>  MODULE_PARM_DESC(sdma_comp_size, "Size of User SDMA completion ring. Default: 128");
>>
>> -/* The maximum number of Data io vectors per message/request */
>> -#define MAX_VECTORS_PER_REQ 8
>> -/*
>> - * Maximum number of packet to send from each message/request
>> - * before moving to the next one.
>> - */
>> -#define MAX_PKTS_PER_QUEUE 16
>> -
>> -#define num_pages(x) (1 + ((((x) - 1) & PAGE_MASK) >> PAGE_SHIFT))
>> -
>> -#define req_opcode(x) \
>> -	(((x) >> HFI1_SDMA_REQ_OPCODE_SHIFT) & HFI1_SDMA_REQ_OPCODE_MASK)
>> -#define req_version(x) \
>> -	(((x) >> HFI1_SDMA_REQ_VERSION_SHIFT) & HFI1_SDMA_REQ_OPCODE_MASK)
>> -#define req_iovcnt(x) \
>> -	(((x) >> HFI1_SDMA_REQ_IOVCNT_SHIFT) & HFI1_SDMA_REQ_IOVCNT_MASK)
>> -
>> -/* Number of BTH.PSN bits used for sequence number in expected rcvs */
>> -#define BTH_SEQ_MASK 0x7ffull
>> -
>> -#define AHG_KDETH_INTR_SHIFT 12
>> -#define AHG_KDETH_SH_SHIFT   13
>> -#define AHG_KDETH_ARRAY_SIZE  9
>> -
>> -#define PBC2LRH(x) ((((x) & 0xfff) << 2) - 4)
>> -#define LRH2PBC(x) ((((x) >> 2) + 1) & 0xfff)
>> -
>> -#define AHG_HEADER_SET(arr, idx, dw, bit, width, value)			\
>> -	do {								\
>> -		if ((idx) < ARRAY_SIZE((arr)))				\
>> -			(arr)[(idx++)] = sdma_build_ahg_descriptor(	\
>> -				(__force u16)(value), (dw), (bit),	\
>> -							(width));	\
>> -		else							\
>> -			return -ERANGE;					\
>> -	} while (0)
>> -
>> -/* Tx request flag bits */
>> -#define TXREQ_FLAGS_REQ_ACK   BIT(0)      /* Set the ACK bit in the header */
>> -#define TXREQ_FLAGS_REQ_DISABLE_SH BIT(1) /* Disable header suppression */
>> -
>> -#define SDMA_PKT_Q_INACTIVE BIT(0)
>> -#define SDMA_PKT_Q_ACTIVE   BIT(1)
>> -#define SDMA_PKT_Q_DEFERRED BIT(2)
>> -
>> -/*
>> - * Maximum retry attempts to submit a TX request
>> - * before putting the process to sleep.
>> - */
>> -#define MAX_DEFER_RETRY_COUNT 1
>> -
>>  static unsigned initial_pkt_count = 8;
>>
>> -#define SDMA_IOWAIT_TIMEOUT 1000 /* in milliseconds */
>> -
>> -struct sdma_mmu_node;
>> -
>> -struct user_sdma_iovec {
>> -	struct list_head list;
>> -	struct iovec iov;
>> -	/* number of pages in this vector */
>> -	unsigned npages;
>> -	/* array of pinned pages for this vector */
>> -	struct page **pages;
>> -	/*
>> -	 * offset into the virtual address space of the vector at
>> -	 * which we last left off.
>> -	 */
>> -	u64 offset;
>> -	struct sdma_mmu_node *node;
>> -};
>> -
>> -struct sdma_mmu_node {
>> -	struct mmu_rb_node rb;
>> -	struct hfi1_user_sdma_pkt_q *pq;
>> -	atomic_t refcount;
>> -	struct page **pages;
>> -	unsigned npages;
>> -};
>> -
>> -/* evict operation argument */
>> -struct evict_data {
>> -	u32 cleared;	/* count evicted so far */
>> -	u32 target;	/* target count to evict */
>> -};
>> -
>> -struct user_sdma_request {
>> -	/* This is the original header from user space */
>> -	struct hfi1_pkt_header hdr;
>> -
>> -	/* Read mostly fields */
>> -	struct hfi1_user_sdma_pkt_q *pq ____cacheline_aligned_in_smp;
>> -	struct hfi1_user_sdma_comp_q *cq;
>> -	/*
>> -	 * Pointer to the SDMA engine for this request.
>> -	 * Since different request could be on different VLs,
>> -	 * each request will need it's own engine pointer.
>> -	 */
>> -	struct sdma_engine *sde;
>> -	struct sdma_req_info info;
>> -	/* TID array values copied from the tid_iov vector */
>> -	u32 *tids;
>> -	/* total length of the data in the request */
>> -	u32 data_len;
>> -	/* number of elements copied to the tids array */
>> -	u16 n_tids;
>> -	/*
>> -	 * We copy the iovs for this request (based on
>> -	 * info.iovcnt). These are only the data vectors
>> -	 */
>> -	u8 data_iovs;
>> -	s8 ahg_idx;
>> -
>> -	/* Writeable fields shared with interrupt */
>> -	u64 seqcomp ____cacheline_aligned_in_smp;
>> -	u64 seqsubmitted;
>> -	/* status of the last txreq completed */
>> -	int status;
>> -
>> -	/* Send side fields */
>> -	struct list_head txps ____cacheline_aligned_in_smp;
>> -	u64 seqnum;
>> -	/*
>> -	 * KDETH.OFFSET (TID) field
>> -	 * The offset can cover multiple packets, depending on the
>> -	 * size of the TID entry.
>> -	 */
>> -	u32 tidoffset;
>> -	/*
>> -	 * KDETH.Offset (Eager) field
>> -	 * We need to remember the initial value so the headers
>> -	 * can be updated properly.
>> -	 */
>> -	u32 koffset;
>> -	u32 sent;
>> -	/* TID index copied from the tid_iov vector */
>> -	u16 tididx;
>> -	/* progress index moving along the iovs array */
>> -	u8 iov_idx;
>> -	u8 done;
>> -	u8 has_error;
>> -
>> -	struct user_sdma_iovec iovs[MAX_VECTORS_PER_REQ];
>> -} ____cacheline_aligned_in_smp;
>> -
>> -/*
>> - * A single txreq could span up to 3 physical pages when the MTU
>> - * is sufficiently large (> 4K). Each of the IOV pointers also
>> - * needs it's own set of flags so the vector has been handled
>> - * independently of each other.
>> - */
>> -struct user_sdma_txreq {
>> -	/* Packet header for the txreq */
>> -	struct hfi1_pkt_header hdr;
>> -	struct sdma_txreq txreq;
>> -	struct list_head list;
>> -	struct user_sdma_request *req;
>> -	u16 flags;
>> -	unsigned busycount;
>> -	u64 seqnum;
>> -};
>> -
>> -#define SDMA_DBG(req, fmt, ...)				     \
>> -	hfi1_cdbg(SDMA, "[%u:%u:%u:%u] " fmt, (req)->pq->dd->unit, \
>> -		 (req)->pq->ctxt, (req)->pq->subctxt, (req)->info.comp_idx, \
>> -		 ##__VA_ARGS__)
>> -#define SDMA_Q_DBG(pq, fmt, ...)			 \
>> -	hfi1_cdbg(SDMA, "[%u:%u:%u] " fmt, (pq)->dd->unit, (pq)->ctxt, \
>> -		 (pq)->subctxt, ##__VA_ARGS__)
>> -
>>  static int user_sdma_send_pkts(struct user_sdma_request *req,
>>  			       unsigned maxpkts);
>>  static void user_sdma_txreq_cb(struct sdma_txreq *txreq, int status);
>> diff --git a/drivers/infiniband/hw/hfi1/user_sdma.h b/drivers/infiniband/hw/hfi1/user_sdma.h
>> index 84c199d..6c10484 100644
>> --- a/drivers/infiniband/hw/hfi1/user_sdma.h
>> +++ b/drivers/infiniband/hw/hfi1/user_sdma.h
>> @@ -53,6 +53,67 @@
>>  #include "iowait.h"
>>  #include "user_exp_rcv.h"
>>
>> +/* The maximum number of Data io vectors per message/request */
>> +#define MAX_VECTORS_PER_REQ 8
>> +/*
>> + * Maximum number of packet to send from each message/request
>> + * before moving to the next one.
>> + */
>> +#define MAX_PKTS_PER_QUEUE 16
>> +
>> +#define num_pages(x) (1 + ((((x) - 1) & PAGE_MASK) >> PAGE_SHIFT))
>> +
>> +#define req_opcode(x) \
>> +	(((x) >> HFI1_SDMA_REQ_OPCODE_SHIFT) & HFI1_SDMA_REQ_OPCODE_MASK)
>> +#define req_version(x) \
>> +	(((x) >> HFI1_SDMA_REQ_VERSION_SHIFT) & HFI1_SDMA_REQ_OPCODE_MASK)
>> +#define req_iovcnt(x) \
>> +	(((x) >> HFI1_SDMA_REQ_IOVCNT_SHIFT) & HFI1_SDMA_REQ_IOVCNT_MASK)
>> +
>> +/* Number of BTH.PSN bits used for sequence number in expected rcvs */
>> +#define BTH_SEQ_MASK 0x7ffull
>> +
>> +#define AHG_KDETH_INTR_SHIFT 12
>> +#define AHG_KDETH_SH_SHIFT   13
>> +#define AHG_KDETH_ARRAY_SIZE  9
>> +
>> +#define PBC2LRH(x) ((((x) & 0xfff) << 2) - 4)
>> +#define LRH2PBC(x) ((((x) >> 2) + 1) & 0xfff)
>> +
>> +#define AHG_HEADER_SET(arr, idx, dw, bit, width, value)			\
>> +	do {								\
>> +		if ((idx) < ARRAY_SIZE((arr)))				\
>> +			(arr)[(idx++)] = sdma_build_ahg_descriptor(	\
>> +				(__force u16)(value), (dw), (bit),	\
>> +							(width));	\
>> +		else							\
>> +			return -ERANGE;					\
>> +	} while (0)
> 
> I know that this was in original code, but it violates Documentation/process/coding-style.rst
>  687 12) Macros, Enums and RTL
> ....
>  713 Things to avoid when using macros:
>  714
>  715 1) macros that affect control flow:
>  716
>  717 .. code-block:: c
>  718
>  719         #define FOO(x)                                  \
>  720                 do {                                    \
>  721                         if (blah(x) < 0)                \
>  722                                 return -EBUGGERED;      \
>  723                 } while (0)
>  724
>  725 is a **very** bad idea.  It looks like a function call but exits the ``calling``
>  726 function; don't break the internal parsers of those who will read the code.

I will fix this Macro in a separate patch I will soon submit.

Thanks.

> 
> 
> 
>> +
>> +/* Tx request flag bits */
>> +#define TXREQ_FLAGS_REQ_ACK   BIT(0)      /* Set the ACK bit in the header */
>> +#define TXREQ_FLAGS_REQ_DISABLE_SH BIT(1) /* Disable header suppression */
>> +
>> +#define SDMA_PKT_Q_INACTIVE BIT(0)
>> +#define SDMA_PKT_Q_ACTIVE   BIT(1)
>> +#define SDMA_PKT_Q_DEFERRED BIT(2)
>> +
>> +/*
>> + * Maximum retry attempts to submit a TX request
>> + * before putting the process to sleep.
>> + */
>> +#define MAX_DEFER_RETRY_COUNT 1
>> +
>> +#define SDMA_IOWAIT_TIMEOUT 1000 /* in milliseconds */
>> +
>> +#define SDMA_DBG(req, fmt, ...)				     \
>> +	hfi1_cdbg(SDMA, "[%u:%u:%u:%u] " fmt, (req)->pq->dd->unit, \
>> +		 (req)->pq->ctxt, (req)->pq->subctxt, (req)->info.comp_idx, \
>> +		 ##__VA_ARGS__)
>> +#define SDMA_Q_DBG(pq, fmt, ...)			 \
>> +	hfi1_cdbg(SDMA, "[%u:%u:%u] " fmt, (pq)->dd->unit, (pq)->ctxt, \
>> +		 (pq)->subctxt, ##__VA_ARGS__)
>> +
>>  extern uint extended_psn;
>>
>>  struct hfi1_user_sdma_pkt_q {
>> @@ -79,6 +140,111 @@ struct hfi1_user_sdma_comp_q {
>>  	struct hfi1_sdma_comp_entry *comps;
>>  };
>>
>> +struct sdma_mmu_node {
>> +	struct mmu_rb_node rb;
>> +	struct hfi1_user_sdma_pkt_q *pq;
>> +	atomic_t refcount;
>> +	struct page **pages;
>> +	unsigned int npages;
>> +};
>> +
>> +struct user_sdma_iovec {
>> +	struct list_head list;
>> +	struct iovec iov;
>> +	/* number of pages in this vector */
>> +	unsigned int npages;
>> +	/* array of pinned pages for this vector */
>> +	struct page **pages;
>> +	/*
>> +	 * offset into the virtual address space of the vector at
>> +	 * which we last left off.
>> +	 */
>> +	u64 offset;
>> +	struct sdma_mmu_node *node;
>> +};
>> +
>> +/* evict operation argument */
>> +struct evict_data {
>> +	u32 cleared;	/* count evicted so far */
>> +	u32 target;	/* target count to evict */
>> +};
>> +
>> +struct user_sdma_request {
>> +	/* This is the original header from user space */
>> +	struct hfi1_pkt_header hdr;
>> +
>> +	/* Read mostly fields */
>> +	struct hfi1_user_sdma_pkt_q *pq ____cacheline_aligned_in_smp;
>> +	struct hfi1_user_sdma_comp_q *cq;
>> +	/*
>> +	 * Pointer to the SDMA engine for this request.
>> +	 * Since different request could be on different VLs,
>> +	 * each request will need it's own engine pointer.
>> +	 */
>> +	struct sdma_engine *sde;
>> +	struct sdma_req_info info;
>> +	/* TID array values copied from the tid_iov vector */
>> +	u32 *tids;
>> +	/* total length of the data in the request */
>> +	u32 data_len;
>> +	/* number of elements copied to the tids array */
>> +	u16 n_tids;
>> +	/*
>> +	 * We copy the iovs for this request (based on
>> +	 * info.iovcnt). These are only the data vectors
>> +	 */
>> +	u8 data_iovs;
>> +	s8 ahg_idx;
>> +
>> +	/* Writeable fields shared with interrupt */
>> +	u64 seqcomp ____cacheline_aligned_in_smp;
>> +	u64 seqsubmitted;
>> +	/* status of the last txreq completed */
>> +	int status;
>> +
>> +	/* Send side fields */
>> +	struct list_head txps ____cacheline_aligned_in_smp;
>> +	u64 seqnum;
>> +	/*
>> +	 * KDETH.OFFSET (TID) field
>> +	 * The offset can cover multiple packets, depending on the
>> +	 * size of the TID entry.
>> +	 */
>> +	u32 tidoffset;
>> +	/*
>> +	 * KDETH.Offset (Eager) field
>> +	 * We need to remember the initial value so the headers
>> +	 * can be updated properly.
>> +	 */
>> +	u32 koffset;
>> +	u32 sent;
>> +	/* TID index copied from the tid_iov vector */
>> +	u16 tididx;
>> +	/* progress index moving along the iovs array */
>> +	u8 iov_idx;
>> +	u8 done;
>> +	u8 has_error;
>> +
>> +	struct user_sdma_iovec iovs[MAX_VECTORS_PER_REQ];
>> +} ____cacheline_aligned_in_smp;
>> +
>> +/*
>> + * A single txreq could span up to 3 physical pages when the MTU
>> + * is sufficiently large (> 4K). Each of the IOV pointers also
>> + * needs it's own set of flags so the vector has been handled
>> + * independently of each other.
>> + */
>> +struct user_sdma_txreq {
>> +	/* Packet header for the txreq */
>> +	struct hfi1_pkt_header hdr;
>> +	struct sdma_txreq txreq;
>> +	struct list_head list;
>> +	struct user_sdma_request *req;
>> +	u16 flags;
>> +	unsigned int busycount;
>> +	u64 seqnum;
>> +};
>> +
>>  int hfi1_user_sdma_alloc_queues(struct hfi1_ctxtdata *uctxt,
>>  				struct hfi1_filedata *fd);
>>  int hfi1_user_sdma_free_queues(struct hfi1_filedata *fd,
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
>> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2017-08-28  5:04 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-22  1:26 [PATCH for-next 00/16] IB/hfi1, qib, rdmavt: patches for next 08/21/2017 Dennis Dalessandro
2017-08-22  1:26 ` [PATCH for-next 02/16] IB/{qib, hfi1}: Avoid flow control testing for RDMA write operation Dennis Dalessandro
     [not found] ` <20170822011657.32701.22207.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2017-08-22  1:26   ` [PATCH for-next 01/16] IB/rdmavt: Use rvt_put_swqe() in rvt_clear_mr_ref() Dennis Dalessandro
2017-08-22  1:26   ` [PATCH for-next 03/16] IB/qib: Remove unnecessary memory allocation for boardname Dennis Dalessandro
2017-08-22  1:26   ` [PATCH for-next 04/16] IB/qib: Stricter bounds checking for copy and array access Dennis Dalessandro
2017-08-22  1:26   ` [PATCH for-next 05/16] IB/hfi1: Ratelimit prints from sdma_interrupt Dennis Dalessandro
2017-08-22  1:26   ` [PATCH for-next 06/16] IB/hfi1: Improve local kmem_cache_alloc performance Dennis Dalessandro
2017-08-22  1:26   ` [PATCH for-next 07/16] IB/hfi1: Clean up hfi1_user_exp_rcv_setup function Dennis Dalessandro
2017-08-22  1:26   ` [PATCH for-next 08/16] IB/hfi1: Clean up user_sdma_send_pkts() function Dennis Dalessandro
2017-08-22  1:27   ` [PATCH for-next 09/16] IB/hfi1: Clean up pin_vector_pages() function Dennis Dalessandro
     [not found]     ` <20170822012702.32701.90032.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2017-08-22 15:46       ` Leon Romanovsky
     [not found]         ` <20170822154659.GE1724-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
2017-08-22 18:39           ` Harish Chegondi
     [not found]             ` <599C7A74.9010301-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2017-08-23  4:49               ` Leon Romanovsky
     [not found]                 ` <20170823044900.GK1724-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
2017-08-28  5:00                   ` Harish Chegondi
2017-08-22  1:27   ` [PATCH for-next 10/16] IB/hfi1: Fix the bail out code in " Dennis Dalessandro
2017-08-22  1:27   ` [PATCH for-next 11/16] IB/hfi1: Remove duplicate definitions of num_user_pages() function Dennis Dalessandro
2017-08-22  1:27   ` [PATCH for-next 12/16] IB/hfi1: Move structure definitions from user_exp_rcv.c to user_exp_rcv.h Dennis Dalessandro
2017-08-22  1:27   ` [PATCH for-next 13/16] IB/hfi1: Move structure and MACRO definitions in user_sdma.c to user_sdma.h Dennis Dalessandro
     [not found]     ` <20170822012728.32701.38661.stgit-9QXIwq+3FY+1XWohqUldA0EOCMrvLtNR@public.gmane.org>
2017-08-22 15:40       ` Leon Romanovsky
     [not found]         ` <20170822154025.GD1724-U/DQcQFIOTAAJjI8aNfphQ@public.gmane.org>
2017-08-28  5:04           ` Harish Chegondi [this message]
2017-08-22  1:27   ` [PATCH for-next 14/16] IB/hfi1: Fix whitespace alignment issue for MAD Dennis Dalessandro
2017-08-22  1:27   ` [PATCH for-next 15/16] IB/hfi1: Add received request info to qp_stats Dennis Dalessandro
2017-08-22  1:27   ` [PATCH for-next 16/16] IB/hfi1: Add opcode states " Dennis Dalessandro
2017-08-28 23:16   ` [PATCH for-next 00/16] IB/hfi1, qib, rdmavt: patches for next 08/21/2017 Doug Ledford

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=59A3A45B.6080202@intel.com \
    --to=harish.chegondi-ral2jqcrhueavxtiumwx3w@public.gmane.org \
    --cc=dennis.dalessandro-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    --cc=dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=leon-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.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