All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/9 v2 net-next] net: qed: drop duplicate words in comments
@ 2020-07-15 16:42 Randy Dunlap
  2020-07-15 16:42 ` [PATCH 2/9 v2 net-next] net: skbuff.h: " Randy Dunlap
                   ` (7 more replies)
  0 siblings, 8 replies; 12+ messages in thread
From: Randy Dunlap @ 2020-07-15 16:42 UTC (permalink / raw)
  To: linux-kernel; +Cc: Randy Dunlap, David S. Miller, Jakub Kicinski, netdev

Drop doubled word "the" in two comments.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: netdev@vger.kernel.org
---
v2: move wireless patches to a separate patch series.

 include/linux/qed/qed_chain.h |    2 +-
 include/linux/qed/qed_if.h    |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

--- linux-next-20200714.orig/include/linux/qed/qed_chain.h
+++ linux-next-20200714/include/linux/qed/qed_chain.h
@@ -130,7 +130,7 @@ struct qed_chain {
 	} pbl_sp;
 
 	/* Address of first page of the chain - the address is required
-	 * for fastpath operation [consume/produce] but only for the the SINGLE
+	 * for fastpath operation [consume/produce] but only for the SINGLE
 	 * flavour which isn't considered fastpath [== SPQ].
 	 */
 	void *p_virt_addr;
--- linux-next-20200714.orig/include/linux/qed/qed_if.h
+++ linux-next-20200714/include/linux/qed/qed_if.h
@@ -498,7 +498,7 @@ struct qed_fcoe_pf_params {
 	u8 bdq_pbl_num_entries[2];
 };
 
-/* Most of the the parameters below are described in the FW iSCSI / TCP HSI */
+/* Most of the parameters below are described in the FW iSCSI / TCP HSI */
 struct qed_iscsi_pf_params {
 	u64 glbl_q_params_addr;
 	u64 bdq_pbl_base_addr[3];

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 2/9 v2 net-next] net: skbuff.h: drop duplicate words in comments
  2020-07-15 16:42 [PATCH 1/9 v2 net-next] net: qed: drop duplicate words in comments Randy Dunlap
@ 2020-07-15 16:42 ` Randy Dunlap
  2020-07-15 16:42 ` [PATCH 3/9 v2 net-next] net: wimax: fix " Randy Dunlap
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Randy Dunlap @ 2020-07-15 16:42 UTC (permalink / raw)
  To: linux-kernel; +Cc: Randy Dunlap, David S. Miller, Jakub Kicinski, netdev

Drop doubled words in several comments.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: netdev@vger.kernel.org
---
v2: move wireless patches to a separate patch series.

 include/linux/skbuff.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- linux-next-20200714.orig/include/linux/skbuff.h
+++ linux-next-20200714/include/linux/skbuff.h
@@ -1329,7 +1329,7 @@ void skb_flow_dissect_meta(const struct
 			   void *target_container);
 
 /* Gets a skb connection tracking info, ctinfo map should be a
- * a map of mapsize to translate enum ip_conntrack_info states
+ * map of mapsize to translate enum ip_conntrack_info states
  * to user states.
  */
 void
@@ -3813,7 +3813,7 @@ static inline bool skb_defer_rx_timestam
  * must call this function to return the skb back to the stack with a
  * timestamp.
  *
- * @skb: clone of the the original outgoing packet
+ * @skb: clone of the original outgoing packet
  * @hwtstamps: hardware time stamps
  *
  */

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 3/9 v2 net-next] net: wimax: fix duplicate words in comments
  2020-07-15 16:42 [PATCH 1/9 v2 net-next] net: qed: drop duplicate words in comments Randy Dunlap
  2020-07-15 16:42 ` [PATCH 2/9 v2 net-next] net: skbuff.h: " Randy Dunlap
@ 2020-07-15 16:42 ` Randy Dunlap
  2020-07-16  3:34   ` Jakub Kicinski
  2020-07-15 16:42 ` [PATCH 4/9 v2 net-next] net: 9p: drop duplicate word in comment Randy Dunlap
                   ` (5 subsequent siblings)
  7 siblings, 1 reply; 12+ messages in thread
From: Randy Dunlap @ 2020-07-15 16:42 UTC (permalink / raw)
  To: linux-kernel; +Cc: Randy Dunlap, David S. Miller, Jakub Kicinski, netdev

Drop doubled words in two comments.
Fix a spello/typo.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: netdev@vger.kernel.org
---
v2: move wireless patches to a separate patch series.

 include/linux/wimax/debug.h |    4 ++--
 include/net/wimax.h         |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

--- linux-next-20200714.orig/include/linux/wimax/debug.h
+++ linux-next-20200714/include/linux/wimax/debug.h
@@ -184,8 +184,8 @@ do {									\
 
 
 /*
- * CPP sintatic sugar to generate A_B like symbol names when one of
- * the arguments is a a preprocessor #define.
+ * CPP syntatic sugar to generate A_B like symbol names when one of
+ * the arguments is a preprocessor #define.
  */
 #define __D_PASTE__(varname, modulename) varname##_##modulename
 #define __D_PASTE(varname, modulename) (__D_PASTE__(varname, modulename))
--- linux-next-20200714.orig/include/net/wimax.h
+++ linux-next-20200714/include/net/wimax.h
@@ -28,7 +28,7 @@
  *
  * USAGE
  *
- * Embed a `struct wimax_dev` at the beginning of the the device's
+ * Embed a `struct wimax_dev` at the beginning of the device's
  * private structure, initialize and register it. For details, see
  * `struct wimax_dev`s documentation.
  *

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 4/9 v2 net-next] net: 9p: drop duplicate word in comment
  2020-07-15 16:42 [PATCH 1/9 v2 net-next] net: qed: drop duplicate words in comments Randy Dunlap
  2020-07-15 16:42 ` [PATCH 2/9 v2 net-next] net: skbuff.h: " Randy Dunlap
  2020-07-15 16:42 ` [PATCH 3/9 v2 net-next] net: wimax: fix " Randy Dunlap
@ 2020-07-15 16:42 ` Randy Dunlap
  2020-07-15 16:42 ` [PATCH 5/9 v2 net-next] net: caif: drop duplicate words in comments Randy Dunlap
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Randy Dunlap @ 2020-07-15 16:42 UTC (permalink / raw)
  To: linux-kernel; +Cc: Randy Dunlap, David S. Miller, Jakub Kicinski, netdev

Drop doubled word "not" in a comment.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: netdev@vger.kernel.org
---
v2: move wireless patches to a separate patch series.

 include/net/9p/transport.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200714.orig/include/net/9p/transport.h
+++ linux-next-20200714/include/net/9p/transport.h
@@ -25,7 +25,7 @@
  * @request: member function to issue a request to the transport
  * @cancel: member function to cancel a request (if it hasn't been sent)
  * @cancelled: member function to notify that a cancelled request will not
- *             not receive a reply
+ *             receive a reply
  *
  * This is the basic API for a transport module which is registered by the
  * transport module with the 9P core network module and used by the client

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 5/9 v2 net-next] net: caif: drop duplicate words in comments
  2020-07-15 16:42 [PATCH 1/9 v2 net-next] net: qed: drop duplicate words in comments Randy Dunlap
                   ` (2 preceding siblings ...)
  2020-07-15 16:42 ` [PATCH 4/9 v2 net-next] net: 9p: drop duplicate word in comment Randy Dunlap
@ 2020-07-15 16:42 ` Randy Dunlap
  2020-07-15 16:42 ` [PATCH 6/9 v2 net-next] net: dsa.h: drop duplicate word in comment Randy Dunlap
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Randy Dunlap @ 2020-07-15 16:42 UTC (permalink / raw)
  To: linux-kernel; +Cc: Randy Dunlap, David S. Miller, Jakub Kicinski, netdev

Drop doubled words "or" and "the" in several comments.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: netdev@vger.kernel.org
---
v2: move wireless patches to a separate patch series.

 include/net/caif/caif_layer.h         |    4 ++--
 include/uapi/linux/caif/caif_socket.h |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

--- linux-next-20200714.orig/include/net/caif/caif_layer.h
+++ linux-next-20200714/include/net/caif/caif_layer.h
@@ -156,7 +156,7 @@ struct cflayer {
 	 *  CAIF packets upwards in the stack.
 	 *	Packet handling rules:
 	 *	      - The CAIF packet (cfpkt) ownership is passed to the
-	 *		called receive function. This means that the the
+	 *		called receive function. This means that the
 	 *		packet cannot be accessed after passing it to the
 	 *		above layer using up->receive().
 	 *
@@ -184,7 +184,7 @@ struct cflayer {
 	 *	CAIF packet downwards in the stack.
 	 *	Packet handling rules:
 	 *	      - The CAIF packet (cfpkt) ownership is passed to the
-	 *		transmit function. This means that the the packet
+	 *		transmit function. This means that the packet
 	 *		cannot be accessed after passing it to the below
 	 *		layer using dn->transmit().
 	 *
--- linux-next-20200714.orig/include/uapi/linux/caif/caif_socket.h
+++ linux-next-20200714/include/uapi/linux/caif/caif_socket.h
@@ -169,7 +169,7 @@ struct sockaddr_caif {
  * @CAIFSO_LINK_SELECT:		Selector used if multiple CAIF Link layers are
  *				available. Either a high bandwidth
  *				link can be selected (CAIF_LINK_HIGH_BANDW) or
- *				or a low latency link (CAIF_LINK_LOW_LATENCY).
+ *				a low latency link (CAIF_LINK_LOW_LATENCY).
  *                              This option is of type __u32.
  *				Alternatively SO_BINDTODEVICE can be used.
  *

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 6/9 v2 net-next] net: dsa.h: drop duplicate word in comment
  2020-07-15 16:42 [PATCH 1/9 v2 net-next] net: qed: drop duplicate words in comments Randy Dunlap
                   ` (3 preceding siblings ...)
  2020-07-15 16:42 ` [PATCH 5/9 v2 net-next] net: caif: drop duplicate words in comments Randy Dunlap
@ 2020-07-15 16:42 ` Randy Dunlap
  2020-07-15 16:42 ` [PATCH 7/9 v2 net-next] net: ip6_fib.h: " Randy Dunlap
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 12+ messages in thread
From: Randy Dunlap @ 2020-07-15 16:42 UTC (permalink / raw)
  To: linux-kernel; +Cc: Randy Dunlap, David S. Miller, Jakub Kicinski, netdev

Drop doubled word "to" in a comment.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: netdev@vger.kernel.org
---
v2: move wireless patches to a separate patch series.

 include/net/dsa.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200714.orig/include/net/dsa.h
+++ linux-next-20200714/include/net/dsa.h
@@ -612,7 +612,7 @@ struct dsa_switch_ops {
 	 * MTU change functionality. Switches can also adjust their MRU through
 	 * this method. By MTU, one understands the SDU (L2 payload) length.
 	 * If the switch needs to account for the DSA tag on the CPU port, this
-	 * method needs to to do so privately.
+	 * method needs to do so privately.
 	 */
 	int	(*port_change_mtu)(struct dsa_switch *ds, int port,
 				   int new_mtu);

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 7/9 v2 net-next] net: ip6_fib.h: drop duplicate word in comment
  2020-07-15 16:42 [PATCH 1/9 v2 net-next] net: qed: drop duplicate words in comments Randy Dunlap
                   ` (4 preceding siblings ...)
  2020-07-15 16:42 ` [PATCH 6/9 v2 net-next] net: dsa.h: drop duplicate word in comment Randy Dunlap
@ 2020-07-15 16:42 ` Randy Dunlap
  2020-07-15 16:42 ` [PATCH 8/9 v2 net-next] net: sctp: drop duplicate words in comments Randy Dunlap
  2020-07-15 16:42 ` [PATCH 9/9 v2 net-next] net: ipv6: drop duplicate word in comment Randy Dunlap
  7 siblings, 0 replies; 12+ messages in thread
From: Randy Dunlap @ 2020-07-15 16:42 UTC (permalink / raw)
  To: linux-kernel; +Cc: Randy Dunlap, David S. Miller, Jakub Kicinski, netdev

Drop doubled word "the" in a comment.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: netdev@vger.kernel.org
---
v2: move wireless patches to a separate patch series.

 include/net/ip6_fib.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200714.orig/include/net/ip6_fib.h
+++ linux-next-20200714/include/net/ip6_fib.h
@@ -166,7 +166,7 @@ struct fib6_info {
 	struct fib6_node __rcu		*fib6_node;
 
 	/* Multipath routes:
-	 * siblings is a list of fib6_info that have the the same metric/weight,
+	 * siblings is a list of fib6_info that have the same metric/weight,
 	 * destination, but not the same gateway. nsiblings is just a cache
 	 * to speed up lookup.
 	 */

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 8/9 v2 net-next] net: sctp: drop duplicate words in comments
  2020-07-15 16:42 [PATCH 1/9 v2 net-next] net: qed: drop duplicate words in comments Randy Dunlap
                   ` (5 preceding siblings ...)
  2020-07-15 16:42 ` [PATCH 7/9 v2 net-next] net: ip6_fib.h: " Randy Dunlap
@ 2020-07-15 16:42 ` Randy Dunlap
  2020-07-15 16:42 ` [PATCH 9/9 v2 net-next] net: ipv6: drop duplicate word in comment Randy Dunlap
  7 siblings, 0 replies; 12+ messages in thread
From: Randy Dunlap @ 2020-07-15 16:42 UTC (permalink / raw)
  To: linux-kernel; +Cc: Randy Dunlap, David S. Miller, Jakub Kicinski, netdev

Drop doubled words in several comments.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: netdev@vger.kernel.org
---
v2: move wireless patches to a separate patch series.

 include/net/sctp/sctp.h    |    2 +-
 include/net/sctp/structs.h |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

--- linux-next-20200714.orig/include/net/sctp/sctp.h
+++ linux-next-20200714/include/net/sctp/sctp.h
@@ -291,7 +291,7 @@ atomic_dec(&sctp_dbg_objcnt_## name)
 #define SCTP_DBG_OBJCNT(name) \
 atomic_t sctp_dbg_objcnt_## name = ATOMIC_INIT(0)
 
-/* Macro to help create new entries in in the global array of
+/* Macro to help create new entries in the global array of
  * objcnt counters.
  */
 #define SCTP_DBG_OBJCNT_ENTRY(name) \
--- linux-next-20200714.orig/include/net/sctp/structs.h
+++ linux-next-20200714/include/net/sctp/structs.h
@@ -1398,7 +1398,7 @@ struct sctp_stream_priorities {
 	struct list_head prio_sched;
 	/* List of streams scheduled */
 	struct list_head active;
-	/* The next stream stream in line */
+	/* The next stream in line */
 	struct sctp_stream_out_ext *next;
 	__u16 prio;
 };
@@ -1460,7 +1460,7 @@ struct sctp_stream {
 		struct {
 			/* List of streams scheduled */
 			struct list_head rr_list;
-			/* The next stream stream in line */
+			/* The next stream in line */
 			struct sctp_stream_out_ext *rr_next;
 		};
 	};
@@ -1770,7 +1770,7 @@ struct sctp_association {
 	int max_burst;
 
 	/* This is the max_retrans value for the association.  This value will
-	 * be initialized initialized from system defaults, but can be
+	 * be initialized from system defaults, but can be
 	 * modified by the SCTP_ASSOCINFO socket option.
 	 */
 	int max_retrans;

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 9/9 v2 net-next] net: ipv6: drop duplicate word in comment
  2020-07-15 16:42 [PATCH 1/9 v2 net-next] net: qed: drop duplicate words in comments Randy Dunlap
                   ` (6 preceding siblings ...)
  2020-07-15 16:42 ` [PATCH 8/9 v2 net-next] net: sctp: drop duplicate words in comments Randy Dunlap
@ 2020-07-15 16:42 ` Randy Dunlap
  7 siblings, 0 replies; 12+ messages in thread
From: Randy Dunlap @ 2020-07-15 16:42 UTC (permalink / raw)
  To: linux-kernel; +Cc: Randy Dunlap, David S. Miller, Jakub Kicinski, netdev

Drop the doubled word "by" in a comment.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: netdev@vger.kernel.org
---
v2: move wireless patches to a separate patch series, though this one
    is a new patch.

 include/linux/ipv6.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200714.orig/include/linux/ipv6.h
+++ linux-next-20200714/include/linux/ipv6.h
@@ -223,7 +223,7 @@ struct ipv6_pinfo {
 
 	/*
 	 * Packed in 16bits.
-	 * Omit one shift by by putting the signed field at MSB.
+	 * Omit one shift by putting the signed field at MSB.
 	 */
 #if defined(__BIG_ENDIAN_BITFIELD)
 	__s16			hop_limit:9;

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 3/9 v2 net-next] net: wimax: fix duplicate words in comments
  2020-07-15 16:42 ` [PATCH 3/9 v2 net-next] net: wimax: fix " Randy Dunlap
@ 2020-07-16  3:34   ` Jakub Kicinski
  2020-07-16  3:35     ` Randy Dunlap
  0 siblings, 1 reply; 12+ messages in thread
From: Jakub Kicinski @ 2020-07-16  3:34 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-kernel, David S. Miller, netdev

On Wed, 15 Jul 2020 09:42:40 -0700 Randy Dunlap wrote:
>  /*
> - * CPP sintatic sugar to generate A_B like symbol names when one of
> - * the arguments is a a preprocessor #define.
> + * CPP syntatic sugar to generate A_B like symbol names when one of

synta*c*tic

Let me fix that up before applying.

> + * the arguments is a preprocessor #define.
>   */


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 3/9 v2 net-next] net: wimax: fix duplicate words in comments
  2020-07-16  3:34   ` Jakub Kicinski
@ 2020-07-16  3:35     ` Randy Dunlap
  2020-07-16  3:50       ` Jakub Kicinski
  0 siblings, 1 reply; 12+ messages in thread
From: Randy Dunlap @ 2020-07-16  3:35 UTC (permalink / raw)
  To: Jakub Kicinski; +Cc: linux-kernel, David S. Miller, netdev

On 7/15/20 8:34 PM, Jakub Kicinski wrote:
> On Wed, 15 Jul 2020 09:42:40 -0700 Randy Dunlap wrote:
>>  /*
>> - * CPP sintatic sugar to generate A_B like symbol names when one of
>> - * the arguments is a a preprocessor #define.
>> + * CPP syntatic sugar to generate A_B like symbol names when one of
> 
> synta*c*tic
> 
> Let me fix that up before applying.

eww. Thanks.

>> + * the arguments is a preprocessor #define.
>>   */
> 


-- 
~Randy


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 3/9 v2 net-next] net: wimax: fix duplicate words in comments
  2020-07-16  3:35     ` Randy Dunlap
@ 2020-07-16  3:50       ` Jakub Kicinski
  0 siblings, 0 replies; 12+ messages in thread
From: Jakub Kicinski @ 2020-07-16  3:50 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-kernel, David S. Miller, netdev

On Wed, 15 Jul 2020 20:35:34 -0700 Randy Dunlap wrote:
> On 7/15/20 8:34 PM, Jakub Kicinski wrote:
> > On Wed, 15 Jul 2020 09:42:40 -0700 Randy Dunlap wrote:  
> >>  /*
> >> - * CPP sintatic sugar to generate A_B like symbol names when one of
> >> - * the arguments is a a preprocessor #define.
> >> + * CPP syntatic sugar to generate A_B like symbol names when one of  
> > 
> > synta*c*tic
> > 
> > Let me fix that up before applying.  
> 
> eww. Thanks.

Applied, pushed. Thanks!

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2020-07-16  3:50 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-15 16:42 [PATCH 1/9 v2 net-next] net: qed: drop duplicate words in comments Randy Dunlap
2020-07-15 16:42 ` [PATCH 2/9 v2 net-next] net: skbuff.h: " Randy Dunlap
2020-07-15 16:42 ` [PATCH 3/9 v2 net-next] net: wimax: fix " Randy Dunlap
2020-07-16  3:34   ` Jakub Kicinski
2020-07-16  3:35     ` Randy Dunlap
2020-07-16  3:50       ` Jakub Kicinski
2020-07-15 16:42 ` [PATCH 4/9 v2 net-next] net: 9p: drop duplicate word in comment Randy Dunlap
2020-07-15 16:42 ` [PATCH 5/9 v2 net-next] net: caif: drop duplicate words in comments Randy Dunlap
2020-07-15 16:42 ` [PATCH 6/9 v2 net-next] net: dsa.h: drop duplicate word in comment Randy Dunlap
2020-07-15 16:42 ` [PATCH 7/9 v2 net-next] net: ip6_fib.h: " Randy Dunlap
2020-07-15 16:42 ` [PATCH 8/9 v2 net-next] net: sctp: drop duplicate words in comments Randy Dunlap
2020-07-15 16:42 ` [PATCH 9/9 v2 net-next] net: ipv6: drop duplicate word in comment Randy Dunlap

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.