dev.dpdk.org archive mirror
 help / color / mirror / Atom feed
From: Jingjing Wu <jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
To: dev-VfR2kkLFssw@public.gmane.org
Subject: [PATCH v6 14/22] ethdev: define structures for getting flow director information
Date: Fri, 21 Nov 2014 08:46:48 +0800	[thread overview]
Message-ID: <1416530816-2159-15-git-send-email-jingjing.wu@intel.com> (raw)
In-Reply-To: <1416530816-2159-1-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>

define structures for getting flow director information includes:
 - mode
 - supported flow types
 - table space
 - flexible payload size and granularity
 - configured flexible payload and mask information

Signed-off-by: jingjing.wu <jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
---
 lib/librte_ether/rte_eth_ctrl.h | 92 ++++++++++++++++++++++++++++++++++++++++-
 lib/librte_ether/rte_ethdev.h   |  9 ----
 2 files changed, 90 insertions(+), 11 deletions(-)

diff --git a/lib/librte_ether/rte_eth_ctrl.h b/lib/librte_ether/rte_eth_ctrl.h
index 9856842..b05d9eb 100644
--- a/lib/librte_ether/rte_eth_ctrl.h
+++ b/lib/librte_ether/rte_eth_ctrl.h
@@ -69,8 +69,7 @@ enum rte_filter_op {
 	RTE_ETH_FILTER_FLUSH,    /**< flush all entries */
 	RTE_ETH_FILTER_GET,      /**< get filter entry */
 	RTE_ETH_FILTER_SET,      /**< configurations */
-	RTE_ETH_FILTER_INFO,
-	/**< get information of filter, such as status or statistics */
+	RTE_ETH_FILTER_INFO,     /**< retrieve information */
 	RTE_ETH_FILTER_OP_MAX
 };
 
@@ -322,6 +321,95 @@ struct rte_eth_fdir_filter {
 	struct rte_eth_fdir_action action;  /**< Action taken when match */
 };
 
+/**
+ * Payload type
+ */
+enum rte_eth_payload_type {
+	RTE_ETH_PAYLOAD_UNKNOWN = 0,
+	RTE_ETH_L2_PAYLOAD,
+	RTE_ETH_L3_PAYLOAD,
+	RTE_ETH_L4_PAYLOAD,
+	RTE_ETH_PAYLOAD_MAX = 8,
+};
+
+/**
+ * A structure used to select bytes extracted from the protocol layers to
+ * flexible payload for filter
+ */
+struct rte_eth_flex_payload_cfg {
+	enum rte_eth_payload_type type;  /**< Payload type */
+	uint16_t src_offset[RTE_ETH_FDIR_MAX_FLEXLEN];
+	/**< Offset in bytes from the beginning of packet's payload
+	     src_offset[i] indicates the flexbyte i's offset in original
+	     packet payload. This value should be less than
+	     flex_payload_limit in struct rte_eth_fdir_info.*/
+};
+
+/**
+ * A structure used to define FDIR masks for flexible payload
+ * for each flow type
+ */
+struct rte_eth_fdir_flex_mask {
+	enum rte_eth_flow_type flow_type;  /**< Flow type */
+	uint8_t mask[RTE_ETH_FDIR_MAX_FLEXLEN];
+	/**< Mask for the whole flexible payload */
+};
+
+/**
+ * A structure used to define all flexible payload related setting
+ * include flexpay load and flex mask
+ */
+struct rte_eth_fdir_flex_conf {
+	uint16_t nb_payloads;  /**< The number of following payload cfg */
+	uint16_t nb_flexmasks; /**< The number of following mask */
+	struct rte_eth_flex_payload_cfg flex_set[RTE_ETH_PAYLOAD_MAX];
+	/**< Flex payload configuration for each payload type */
+	struct rte_eth_fdir_flex_mask flex_mask[RTE_ETH_FLOW_TYPE_MAX];
+	/**< Flex mask configuration for each flow type */
+};
+
+/**
+ *  Flow Director setting modes: none, signature or perfect.
+ */
+enum rte_fdir_mode {
+	RTE_FDIR_MODE_NONE      = 0, /**< Disable FDIR support. */
+	RTE_FDIR_MODE_SIGNATURE,     /**< Enable FDIR signature filter mode. */
+	RTE_FDIR_MODE_PERFECT,       /**< Enable FDIR perfect filter mode. */
+};
+
+/**
+ * A structure used to get the information of flow director filter.
+ * It supports RTE_ETH_FILTER_FDIR with RTE_ETH_FILTER_INFO operation.
+ * It includes the mode, flexible payload configuration information,
+ * capabilities and supported flow types, flexible payload characters.
+ * It can be gotten to help taking specific configurations per device.
+ */
+struct rte_eth_fdir_info {
+	enum rte_fdir_mode mode;     /**< Flow director mode */
+	struct rte_eth_fdir_flex_conf flex_conf;
+	/**< Flex payload configuration information */
+	uint32_t guarant_spc;          /**< Guaranteed spaces.*/
+	uint32_t best_spc;             /**< Best effort spaces.*/
+	uint32_t flow_types_mask[RTE_ETH_FLOW_TYPE_MAX / sizeof(uint32_t)];
+	/**< Bit mask for every supported flow type. */
+	uint32_t max_flexpayload;      /**< Total flex payload in bytes. */
+	uint32_t flex_payload_unit;
+	/**< Flexible payload unit in bytes. Size and alignments of all flex
+	     payload segments should be multiplies of this value. */
+	uint32_t max_flex_payload_segment_num;
+	/**< Max number of flexible payload continuous segments.
+	     Each segment should be a multiple of flex_payload_unit.*/
+	uint16_t flex_payload_limit;
+	/**< Maximum src_offset in bytes allowed. It indicates that
+	     src_offset[i] in struct rte_eth_flex_payload_cfg should be
+	     less than this value. */
+	uint32_t flex_bitmask_unit;
+	/**< Flex bitmask unit in bytes. Size of flex bitmasks should
+	     be a multiply of this value. */
+	uint32_t max_flex_bitmask_num;
+	/**< Max supported size of flex bitmasks in flex_bitmask_unit */
+};
+
 #ifdef __cplusplus
 }
 #endif
diff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.h
index c29525b..b658cf4 100644
--- a/lib/librte_ether/rte_ethdev.h
+++ b/lib/librte_ether/rte_ethdev.h
@@ -683,15 +683,6 @@ struct rte_eth_pfc_conf {
 };
 
 /**
- *  Flow Director setting modes: none (default), signature or perfect.
- */
-enum rte_fdir_mode {
-	RTE_FDIR_MODE_NONE      = 0, /**< Disable FDIR support. */
-	RTE_FDIR_MODE_SIGNATURE,     /**< Enable FDIR signature filter mode. */
-	RTE_FDIR_MODE_PERFECT,       /**< Enable FDIR perfect filter mode. */
-};
-
-/**
  *  Memory space that can be configured to store Flow Director filters
  *  in the board memory.
  */
-- 
1.8.1.4

  parent reply	other threads:[~2014-11-21  0:46 UTC|newest]

Thread overview: 123+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-26  6:03 [PATCH v3 00/20] Support flow director programming on Fortville Jingjing Wu
     [not found] ` <1411711418-12881-1-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-09-26  6:03   ` [PATCH v3 01/20] i40e: set up and initialize flow director Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 02/20] i40e: tear down " Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 03/20] i40e: initialize flexible payload setting Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 04/20] lib/librte_ether: new filter APIs definition Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 05/20] lib/librte_ether: define structures for adding/deleting flow director Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 06/20] i40e: implement operations to add/delete " Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 07/20] app/test-pmd: add test commands to add/delete flow director filter Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 08/20] i40e: match counter for flow director Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 09/20] i40e: report flow director match info to mbuf Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 10/20] lib/librte_ether: define structures for getting flow director information Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 11/20] i40e: implement operations to get fdir info Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 12/20] app/test-pmd: display fdir statistics Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 13/20] i40e: implement operation to flush flow director table Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 14/20] app/test-pmd: add test command " Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 15/20] lib/librte_ether: define structures for configuring flexible payload Jingjing Wu
2014-09-26  6:03   ` [PATCH v316/20] i40e: implement operations to configure " Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 17/20] app/test-pmd: add test command " Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 18/20] lib/librte_ether: define structures for configuring flex masks Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 19/20] i40e: implement operations to configure flexible masks Jingjing Wu
2014-09-26  6:03   ` [PATCH v3 20/20] app/test-pmd: add test command " Jingjing Wu
     [not found]     ` <1411711418-12881-21-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-13 15:58       ` De Lara Guarch, Pablo
2014-10-22  1:01   ` [PATCH v4 00/21] Support flow director programming on Fortville Jingjing Wu
     [not found]     ` <1413939687-11177-1-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-22  1:01       ` [PATCH v4 01/21] i40e: set up and initialize flow director Jingjing Wu
2014-10-22  1:01       ` [PATCH v4 02/21] i40e: tear down " Jingjing Wu
2014-10-22  1:01       ` [PATCH v4 03/21] i40e: initialize flexible payload setting Jingjing Wu
2014-10-22  1:01       ` [PATCH v4 04/21] ethdev: define structures for adding/deleting flow director Jingjing Wu
     [not found]         ` <1413939687-11177-5-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-27 16:57           ` Thomas Monjalon
2014-10-28  1:18             ` Wu, Jingjing
     [not found]               ` <9BB6961774997848B5B42BEC655768F8B2467E-0J0gbvR4kTg/UvCtAeCM4rfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-10-28 13:17                 ` Thomas Monjalon
2014-10-29  1:29                   ` Wu, Jingjing
2014-10-22  1:01       ` [PATCH v4 05/21] i40e: implement operations to add/delete " Jingjing Wu
2014-10-22  1:01       ` [PATCH v4 06/21] testpmd: add test commands to add/delete flow director filter Jingjing Wu
     [not found]         ` <1413939687-11177-7-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-28 13:23           ` Thomas Monjalon
2014-10-22  1:01       ` [PATCH v4 07/21] i40e: match counter for flow director Jingjing Wu
2014-10-22  1:01       ` [PATCH v4 08/21] mbuf: extend fdir field Jingjing Wu
     [not found]         ` <1413939687-11177-9-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-28 13:28           ` Thomas Monjalon
2014-10-29  1:45             ` Wu, Jingjing
2014-10-22  1:01       ` [PATCH v4 09/21] i40e: report flow director match info to mbuf Jingjing Wu
2014-10-22  1:01       ` [PATCH v4 10/21] testpmd: print extended fdir info in mbuf Jingjing Wu
2014-10-22  1:01       ` [PATCH v4 11/21] ethdev: define structures for getting flow director information Jingjing Wu
     [not found]         ` <1413939687-11177-12-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-28 13:44           ` Thomas Monjalon
2014-10-29  2:10             ` Wu, Jingjing
     [not found]               ` <9BB6961774997848B5B42BEC655768F8B24F58-0J0gbvR4kTg/UvCtAeCM4rfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-10-29  9:48                 ` Thomas Monjalon
2014-10-22  1:01       ` [PATCH v4 12/21] i40e: implement operations to get fdir info Jingjing Wu
2014-10-22  1:01       ` [PATCH v4 13/21] testpmd: display fdir statistics Jingjing Wu
2014-10-22  1:01       ` [PATCH v4 14/21] i40e: implement operation to flush flow director table Jingjing Wu
2014-10-22  1:01       ` [PATCH v4 15/21] testpmd: add test command " Jingjing Wu
     [not found]         ` <1413939687-11177-16-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-28 13:53           ` Thomas Monjalon
2014-10-22  1:01       ` [PATCH v4 16/21] ethdev: define structures for configuring flexible payload Jingjing Wu
     [not found]         ` <1413939687-11177-17-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-28 14:14           ` Thomas Monjalon
2014-10-29  3:21             ` Wu, Jingjing
     [not found]               ` <9BB6961774997848B5B42BEC655768F8B24FC7-0J0gbvR4kTg/UvCtAeCM4rfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-10-29  9:55                 ` Thomas Monjalon
2014-10-22  1:01       ` [PATCH v4 17/21] i40e: implement operations to configure " Jingjing Wu
2014-10-22  1:01       ` [PATCH v4 18/21] testpmd: add test command " Jingjing Wu
2014-10-22  1:01       ` [PATCH v4 19/21] ethdev: define structures for configuring flex masks Jingjing Wu
2014-10-22  1:01       ` [PATCH v4 20/21] i40e: implement operations to configure flexible masks Jingjing Wu
2014-10-22  1:01       ` [PATCH v4 21/21] testpmd: add test command " Jingjing Wu
     [not found]         ` <1413939687-11177-22-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-28 14:18           ` Thomas Monjalon
2014-10-29  2:35             ` Wu, Jingjing
2014-10-27 15:22       ` [PATCH v4 00/21] Support flow director programming on Fortville Thomas Monjalon
2014-10-28  0:48       ` Zhang, Helin
2014-10-30  7:26       ` [PATCH v5 " Jingjing Wu
     [not found]         ` <1414654006-7472-1-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-30  7:26           ` [PATCH v5 01/21] i40e: set up and initialize flow director Jingjing Wu
     [not found]             ` <1414654006-7472-2-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-10-30  8:25               ` Wu, Jingjing
2014-10-30  7:26           ` [PATCH v5 02/21] i40e: tear down " Jingjing Wu
     [not found]             ` <1414654006-7472-3-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-19  7:53               ` Cao, Min
2014-10-30  7:26           ` [PATCH v5 03/21] i40e: initialize flexible payload setting Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 04/21] ethdev: define structures for adding/deleting flow director Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 05/21] i40e: implement operations to add/delete " Jingjing Wu
     [not found]             ` <1414654006-7472-6-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-05 21:18               ` De Lara Guarch, Pablo
     [not found]                 ` <E115CCD9D858EF4F90C690B0DCB4D8972683387D-kPTMFJFq+rEMvF1YICWikbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-11-13  9:50                   ` Thomas Monjalon
2014-11-13 11:36                     ` Wu, Jingjing
2014-10-30  7:26           ` [PATCH v5 06/21] testpmd: add test commands to add/delete flow director filter Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 07/21] i40e: match counter for flow director Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 08/21] mbuf: extend fdir field Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 09/21] i40e: report flow director match info to mbuf Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 10/21] testpmd: print extended fdir info in mbuf Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 11/21] ethdev: define structures for getting flow director information Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 12/21] i40e: implement operations to get fdir info Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 13/21] testpmd: display fdir statistics Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 14/21] i40e: implement operation to flush flow director table Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 15/21] testpmd: add test command " Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 16/21] ethdev: define structures for configuring flexible payload Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 17/21] i40e: implement operations to configure " Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 18/21] testpmd: add test command " Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 19/21] ethdev: define structures for configuring flex masks Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 20/21] i40e: implement operations to configure flexible masks Jingjing Wu
2014-10-30  7:26           ` [PATCH v5 21/21] testpmd: add test command " Jingjing Wu
2014-10-30  8:07           ` [PATCH v5 01/21] i40e: set up and initialize flow director Jingjing Wu
2014-11-21  0:46           ` [PATCH v6 00/22] Support flow director programming on Fortville Jingjing Wu
     [not found]             ` <1416530816-2159-1-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-21  0:46               ` [PATCH v6 01/22] i40e: set up and initialize flow director Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 02/22] i40e: tear down " Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 03/22] i40e: initialize flexible payload setting Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 04/22] ethdev: define structures for adding/deleting flow director Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 05/22] i40e: define functions for transition between flow_type and pctype Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 06/22] i40e: implement operations to add/delete flow director Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 07/22] testpmd: add test commands to add/delete flow director filter Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 08/22] i40e: match counter for flow director Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 09/22] mbuf: extend fdir field Jingjing Wu
     [not found]                 ` <1416530816-2159-10-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-11-21 17:03                   ` Chilikin, Andrey
     [not found]                     ` <AAC06825A3B29643AF5372F5E0DDF0533503494E-kPTMFJFq+rFT4JjzTwqWc7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-11-21 19:34                       ` Ananyev, Konstantin
     [not found]                         ` <2601191342CEEE43887BDE71AB977258213B87A6-kPTMFJFq+rEu0RiL9chJVbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-11-21 19:37                           ` Chilikin, Andrey
2014-11-21  0:46               ` [PATCH v6 10/22] i40e: report flow director match info to mbuf Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 11/22] testpmd: print extended fdir info in mbuf Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 12/22] i40e: implement operation to flush flow director table Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 13/22] testpmd: add test command " Jingjing Wu
2014-11-21  0:46               ` Jingjing Wu [this message]
2014-11-21  0:46               ` [PATCH v6 15/22] i40e: implement operations to get fdir info Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 16/22] ethdev: define structures for getting flow director statistics Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 17/22] i40e: implement operations to get fdir statistics Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 18/22] testpmd: display fdir info Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 19/22] ethdev: add flexible payload setting in eth_conf Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 20/22] i40e: take flow director flexible payload configuration Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 21/22] testpmd: add test command to configure flexible mask Jingjing Wu
2014-11-21  0:46               ` [PATCH v6 22/22] testpmd: add test command to configure flexible payload Jingjing Wu
2014-11-21 11:34               ` [PATCH v6 00/22] Support flow director programming on Fortville Ananyev, Konstantin
     [not found]                 ` <2601191342CEEE43887BDE71AB977258213B85BF-kPTMFJFq+rEu0RiL9chJVbfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-11-24 23:20                   ` Thomas Monjalon
2014-11-25  4:51                     ` Wu, Jingjing
     [not found]                       ` <9BB6961774997848B5B42BEC655768F8B550A3-0J0gbvR4kTg/UvCtAeCM4rfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-11-25  9:23                         ` Thomas Monjalon
2014-10-30  7:34       ` [PATCH v4 00/21] " Cao, Min
2014-11-19  7:53       ` Cao, Min
2014-10-30  7:12   ` [PATCH v3 00/20] " Cao, Min

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=1416530816-2159-15-git-send-email-jingjing.wu@intel.com \
    --to=jingjing.wu-ral2jqcrhueavxtiumwx3w@public.gmane.org \
    --cc=dev-VfR2kkLFssw@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;
as well as URLs for NNTP newsgroup(s).