From patchwork Sat Aug 22 23:15:55 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 1349766 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=infradead.org header.i=@infradead.org header.a=rsa-sha256 header.s=merlin.20170209 header.b=ixD5P5F5; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4BYvQR1kRgz9sTR for ; Sun, 23 Aug 2020 09:16:15 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728587AbgHVXQN (ORCPT ); Sat, 22 Aug 2020 19:16:13 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37772 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728021AbgHVXQM (ORCPT ); Sat, 22 Aug 2020 19:16:12 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 976E3C061573; Sat, 22 Aug 2020 16:16:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=w9GETTYDkBsz3Sq/Hk7ivWJfP/PyQ+NfmwvQQHnutdM=; b=ixD5P5F51gV1Ln0Isro9I/UyGP 6m4mS2AQ9/reG7JyS2QTbNnwf0Jx8vCBLiMtz6FWEYTeniXeU5ziJwLpurcBibqDOTw9tTt1zJf85 4EOcX/zFA7Af1DZoXbvyT7LamUVGl4B6dLxNTegNs7s0Cab0qNCieGkLBqVCEYs0IAWh86nRXQGoy dhmHVqgs44rZs9o/xypLobEA06ijagHbbeJ91TTJXt/viKi0WjVQ4Eiu59IKDOIlOoSfu+GcQzTEW FP8fUHxQdg0KrSqWqBA3h69iPi/NpqA0OwThEuN9QHFRrP3yCmd4AQ6d4B0Z8Q1ZMlscvhOPaO+2T InLARLKQ==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1k9ck5-0006VD-2p; Sat, 22 Aug 2020 23:16:09 +0000 From: Randy Dunlap To: netdev@vger.kernel.org Cc: Randy Dunlap , Vlad Yasevich , Neil Horman , Marcelo Ricardo Leitner , linux-sctp@vger.kernel.org, "David S. Miller" , Jakub Kicinski Subject: [PATCH 1/7] net: sctp: associola.c: delete duplicated words Date: Sat, 22 Aug 2020 16:15:55 -0700 Message-Id: <20200822231601.32125-2-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200822231601.32125-1-rdunlap@infradead.org> References: <20200822231601.32125-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Drop the repeated word "the" in two places. Signed-off-by: Randy Dunlap Cc: Vlad Yasevich Cc: Neil Horman Cc: Marcelo Ricardo Leitner Cc: linux-sctp@vger.kernel.org Cc: "David S. Miller" Cc: Jakub Kicinski --- net/sctp/associola.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-next-20200731.orig/net/sctp/associola.c +++ linux-next-20200731/net/sctp/associola.c @@ -1351,7 +1351,7 @@ static void sctp_select_active_and_retra } /* We did not find anything useful for a possible retransmission - * path; either primary path that we found is the the same as + * path; either primary path that we found is the same as * the current one, or we didn't generally find an active one. */ if (trans_sec == NULL) @@ -1537,7 +1537,7 @@ void sctp_assoc_rwnd_decrease(struct sct /* If we've reached or overflowed our receive buffer, announce * a 0 rwnd if rwnd would still be positive. Store the - * the potential pressure overflow so that the window can be restored + * potential pressure overflow so that the window can be restored * back to original value. */ if (rx_count >= asoc->base.sk->sk_rcvbuf) From patchwork Sat Aug 22 23:15:56 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 1349767 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=infradead.org header.i=@infradead.org header.a=rsa-sha256 header.s=merlin.20170209 header.b=tBJsruhY; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4BYvQT102cz9sTR for ; Sun, 23 Aug 2020 09:16:17 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728614AbgHVXQQ (ORCPT ); Sat, 22 Aug 2020 19:16:16 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37778 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727115AbgHVXQO (ORCPT ); Sat, 22 Aug 2020 19:16:14 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6F0ECC061573; Sat, 22 Aug 2020 16:16:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=5vreDZpe3vF5j4MRs+/BjxZJW2uGIU7+S7gFV4WuKQg=; b=tBJsruhYaB6qg1GO0tMx/useVk 01MAAbVN3bNrmvfJovfEnOkkLbA88Aw4PFEsaZUGtf2I9SN8F6JQoGegNeChsRnJDbaXzncnUKwKF LUDOUeZUOC8mAFQS2YkZne00/6JHk9j5EL7AbleCnEe5B5BhPmxdLjkEMhOa7eZthKmDGgPJMQlKD vxy3deC0oSf9g5skcZaGwsbcKcGfAyQER7uNaEdLriwPWomgL2a7cjpuwFU3GHFtdVSjmbFAK/dDT zbfdjWnG+nKrOrTItqQxciWwOyZt70F4WFusdcIe5GwfNOhDfcihzPw6D8kfbWlxOUoCahVnjtP9r cvHhtblw==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1k9ck8-0006VD-3w; Sat, 22 Aug 2020 23:16:12 +0000 From: Randy Dunlap To: netdev@vger.kernel.org Cc: Randy Dunlap , Vlad Yasevich , Neil Horman , Marcelo Ricardo Leitner , linux-sctp@vger.kernel.org, "David S. Miller" , Jakub Kicinski Subject: [PATCH 2/7] net: sctp: auth.c: delete duplicated words Date: Sat, 22 Aug 2020 16:15:56 -0700 Message-Id: <20200822231601.32125-3-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200822231601.32125-1-rdunlap@infradead.org> References: <20200822231601.32125-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Drop the repeated word "the" and "now". Signed-off-by: Randy Dunlap Cc: Vlad Yasevich Cc: Neil Horman Cc: Marcelo Ricardo Leitner Cc: linux-sctp@vger.kernel.org Cc: "David S. Miller" Cc: Jakub Kicinski --- net/sctp/auth.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-next-20200731.orig/net/sctp/auth.c +++ linux-next-20200731/net/sctp/auth.c @@ -445,7 +445,7 @@ struct sctp_shared_key *sctp_auth_get_sh } /* - * Initialize all the possible digest transforms that we can use. Right now + * Initialize all the possible digest transforms that we can use. Right * now, the supported digests are SHA1 and SHA256. We do this here once * because of the restrictiong that transforms may only be allocated in * user context. This forces us to pre-allocated all possible transforms @@ -810,7 +810,7 @@ int sctp_auth_ep_set_hmacs(struct sctp_e } /* Set a new shared key on either endpoint or association. If the - * the key with a same ID already exists, replace the key (remove the + * key with a same ID already exists, replace the key (remove the * old key and add a new one). */ int sctp_auth_set_key(struct sctp_endpoint *ep, From patchwork Sat Aug 22 23:15:57 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 1349768 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=infradead.org header.i=@infradead.org header.a=rsa-sha256 header.s=merlin.20170209 header.b=v92yRORr; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4BYvQY3FGFz9sTR for ; Sun, 23 Aug 2020 09:16:21 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728641AbgHVXQU (ORCPT ); Sat, 22 Aug 2020 19:16:20 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37790 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727115AbgHVXQR (ORCPT ); Sat, 22 Aug 2020 19:16:17 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7AA7DC061573; Sat, 22 Aug 2020 16:16:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=oZca3cfPefz8CGKkkEbxyq++GJ96gqnIcPIfu0aj+Lg=; b=v92yRORrBlvUGSYhfw522OGem4 5L95YcMNmQfxLqgC8md6/0yVszAbuqg9SrDRrJg2K2Vlce4MrlRJ3uQyZCSacnErwCjDkB3+/qz7W ezA6N2l//6uDLRaqKzDMiy6xdHEoYWpeCBB3z8baFpqv9A27O8Oil26PWmW+XrYVZucaVV/71pc3n J8V5n1OZDhzF3jIfQUYQyY+QpOv59LTybafJbgouuYWyj79X6USd2uK5yEGHIoHcWAO5HBE0WhbuO EpRM027Iu3Wt2ZJjHh/XuKzpsXOhpBQYcq03h0yrK59RvG0SiH6eJax4QtJAFvU3bszvqIId3qfta sKTaiK4g==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1k9ckB-0006VD-58; Sat, 22 Aug 2020 23:16:15 +0000 From: Randy Dunlap To: netdev@vger.kernel.org Cc: Randy Dunlap , Vlad Yasevich , Neil Horman , Marcelo Ricardo Leitner , linux-sctp@vger.kernel.org, "David S. Miller" , Jakub Kicinski Subject: [PATCH 3/7] net: sctp: bind_addr.c: delete duplicated word Date: Sat, 22 Aug 2020 16:15:57 -0700 Message-Id: <20200822231601.32125-4-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200822231601.32125-1-rdunlap@infradead.org> References: <20200822231601.32125-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Drop the repeated word "of". Signed-off-by: Randy Dunlap Cc: Vlad Yasevich Cc: Neil Horman Cc: Marcelo Ricardo Leitner Cc: linux-sctp@vger.kernel.org Cc: "David S. Miller" Cc: Jakub Kicinski --- net/sctp/bind_addr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200731.orig/net/sctp/bind_addr.c +++ linux-next-20200731/net/sctp/bind_addr.c @@ -505,7 +505,7 @@ int sctp_in_scope(struct net *net, const return 0; /* * For INIT and INIT-ACK address list, let L be the level of - * of requested destination address, sender and receiver + * requested destination address, sender and receiver * SHOULD include all of its addresses with level greater * than or equal to L. * From patchwork Sat Aug 22 23:15:58 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 1349769 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=infradead.org header.i=@infradead.org header.a=rsa-sha256 header.s=merlin.20170209 header.b=DsbTiGEj; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4BYvQd72TZz9sTR for ; Sun, 23 Aug 2020 09:16:25 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728654AbgHVXQX (ORCPT ); Sat, 22 Aug 2020 19:16:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37798 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727115AbgHVXQU (ORCPT ); Sat, 22 Aug 2020 19:16:20 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8B78AC061573; Sat, 22 Aug 2020 16:16:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=gdUf/hhWvkpYBoPnnLAIMvjxz9/l5TJRRSOCns8PMbI=; b=DsbTiGEj3nr8J4naewUkyr/SMo wS6UpL0T17pETTcJ+bBY5Yk7Ht/p6roUqEpXRT2IvOqyginKjJxT8tjFAZ2M4eCtt1exYmflSzxQS kt0ZzMHzH2vjuwP1VpBGLW5yGAgnBvVSlJD9/IwtSL/05fCc1J/pDazQ3zdCKCYRvWhqL/Q+NhP3i dI9u8r1fnoSBOjxhbGdWbiBQiWYRYWvqi5XiFVuuQ/BuBuHzFWFN7Q3b1zbKvI1JSLTQLseHk4c5u fMW99ntRzi8Km8kvENg8Xiy/3Cgb+gQG057wpkJqFLZofWOfRXsvawUVgd4MVtT0L+cEc+RnSnBBf 8EJhnh7A==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1k9ckE-0006VD-6A; Sat, 22 Aug 2020 23:16:18 +0000 From: Randy Dunlap To: netdev@vger.kernel.org Cc: Randy Dunlap , Vlad Yasevich , Neil Horman , Marcelo Ricardo Leitner , linux-sctp@vger.kernel.org, "David S. Miller" , Jakub Kicinski Subject: [PATCH 4/7] net: sctp: chunk.c: delete duplicated word Date: Sat, 22 Aug 2020 16:15:58 -0700 Message-Id: <20200822231601.32125-5-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200822231601.32125-1-rdunlap@infradead.org> References: <20200822231601.32125-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Drop the repeated word "the". Signed-off-by: Randy Dunlap Cc: Vlad Yasevich Cc: Neil Horman Cc: Marcelo Ricardo Leitner Cc: linux-sctp@vger.kernel.org Cc: "David S. Miller" Cc: Jakub Kicinski --- net/sctp/chunk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200731.orig/net/sctp/chunk.c +++ linux-next-20200731/net/sctp/chunk.c @@ -179,7 +179,7 @@ struct sctp_datamsg *sctp_datamsg_from_u __func__, asoc, max_data); } - /* If the the peer requested that we authenticate DATA chunks + /* If the peer requested that we authenticate DATA chunks * we need to account for bundling of the AUTH chunks along with * DATA. */ From patchwork Sat Aug 22 23:15:59 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 1349770 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=infradead.org header.i=@infradead.org header.a=rsa-sha256 header.s=merlin.20170209 header.b=iy+s6bBu; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4BYvQk40Pmz9sTR for ; Sun, 23 Aug 2020 09:16:30 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728662AbgHVXQ1 (ORCPT ); Sat, 22 Aug 2020 19:16:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37810 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727115AbgHVXQY (ORCPT ); Sat, 22 Aug 2020 19:16:24 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9A0EAC061573; Sat, 22 Aug 2020 16:16:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=homh8fpwndT7ZC40hZu7Zm4w4XuTvWlAprBv3e2gJ+c=; b=iy+s6bBukJCDu3sVPccyYd8xoc 8XTB5fP7Ke4ZTgjFH1yNhKkzdW+N5o556yYwNE+W+7nEOr2zscXcggXsBYDQWiCMIAcmCGUq9Hd4X 1guLy9xhaz1F7Gx2XxSaftb65MirrgyIRpUo0ilAYYMKwSN+LkEDZuNfoc3tMVQNJuk5OVuB+bHZD pfiwi+X8Sh0a0cw1HDLh6hv7ArJFZrn8u5gJM4JSLHgcyTCSljVModNvvk6V2qYvlPtglWZOmusUB GIyboOssxfu2sobLz/OtMH7NNk1lymJab2Kkixzpcsr6DtGEN8vCwRW4+2Tstpkopr1tpmg2eZHeR aUHiRjYw==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1k9ckH-0006VD-9S; Sat, 22 Aug 2020 23:16:21 +0000 From: Randy Dunlap To: netdev@vger.kernel.org Cc: Randy Dunlap , Vlad Yasevich , Neil Horman , Marcelo Ricardo Leitner , linux-sctp@vger.kernel.org, "David S. Miller" , Jakub Kicinski Subject: [PATCH 5/7] net: sctp: protocol.c: delete duplicated words + punctuation Date: Sat, 22 Aug 2020 16:15:59 -0700 Message-Id: <20200822231601.32125-6-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200822231601.32125-1-rdunlap@infradead.org> References: <20200822231601.32125-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Drop the repeated words "of" and "that". Add some punctuation for readability. Signed-off-by: Randy Dunlap Cc: Vlad Yasevich Cc: Neil Horman Cc: Marcelo Ricardo Leitner Cc: linux-sctp@vger.kernel.org Cc: "David S. Miller" Cc: Jakub Kicinski --- net/sctp/protocol.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- linux-next-20200731.orig/net/sctp/protocol.c +++ linux-next-20200731/net/sctp/protocol.c @@ -372,7 +372,7 @@ static int sctp_v4_available(union sctp_ * Level 3 - private addresses. * Level 4 - global addresses * For INIT and INIT-ACK address list, let L be the level of - * of requested destination address, sender and receiver + * requested destination address, sender and receiver * SHOULD include all of its addresses with level greater * than or equal to L. * @@ -1483,10 +1483,10 @@ static __init int sctp_init(void) num_entries = (1UL << order) * PAGE_SIZE / sizeof(struct sctp_bind_hashbucket); - /* And finish by rounding it down to the nearest power of two - * this wastes some memory of course, but its needed because + /* And finish by rounding it down to the nearest power of two. + * This wastes some memory of course, but it's needed because * the hash function operates based on the assumption that - * that the number of entries is a power of two + * the number of entries is a power of two. */ sctp_port_hashsize = rounddown_pow_of_two(num_entries); From patchwork Sat Aug 22 23:16:00 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 1349771 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=infradead.org header.i=@infradead.org header.a=rsa-sha256 header.s=merlin.20170209 header.b=qMUE7/+z; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4BYvQl5jCRz9sTR for ; Sun, 23 Aug 2020 09:16:31 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728678AbgHVXQa (ORCPT ); Sat, 22 Aug 2020 19:16:30 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37822 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728664AbgHVXQ2 (ORCPT ); Sat, 22 Aug 2020 19:16:28 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 371C5C061573; Sat, 22 Aug 2020 16:16:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=EZnbOAcTuCcaexzwhZSY+in/0mQRLC+xi5Hz63sGS+c=; b=qMUE7/+zTsMrwVy5Dzm0c/nbiJ LyB8Mq8fVnWs8vkuKDaNEsDXrb8dJgnQl0+ihPEqOe8Gn76aktT3zjqumZSxIG9F287sqHxBtV549 G4RfRUHlX9OiwlYMABZ0bjed8agxc5alFY6zsmaCq8MagrJ52s2TIwfAaDni4VmeacIm2nnUG9+xK XprHcm9U/KJMaLiJ1zwgb6i5D5sfwVKT0Kc0Vb3gQ8ax94m217zdXlC++B7MZOS/C1oL15RkJAa+b MOKqMcoqnsDkosyUghwd0M5hzb4WRKzXakivL2lYw7s9diJqEGXI49x1QKNzcmXDKvgE0rNX5Gmyr OoXsyNfQ==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1k9ckK-0006VD-AQ; Sat, 22 Aug 2020 23:16:25 +0000 From: Randy Dunlap To: netdev@vger.kernel.org Cc: Randy Dunlap , Vlad Yasevich , Neil Horman , Marcelo Ricardo Leitner , linux-sctp@vger.kernel.org, "David S. Miller" , Jakub Kicinski Subject: [PATCH 6/7] net: sctp: sm_make_chunk.c: delete duplicated words + fix typo Date: Sat, 22 Aug 2020 16:16:00 -0700 Message-Id: <20200822231601.32125-7-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200822231601.32125-1-rdunlap@infradead.org> References: <20200822231601.32125-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Drop the repeated words "for", "that", and "a". Change "his" to "this". Signed-off-by: Randy Dunlap Cc: Vlad Yasevich Cc: Neil Horman Cc: Marcelo Ricardo Leitner Cc: linux-sctp@vger.kernel.org Cc: "David S. Miller" Cc: Jakub Kicinski --- net/sctp/sm_make_chunk.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- linux-next-20200731.orig/net/sctp/sm_make_chunk.c +++ linux-next-20200731/net/sctp/sm_make_chunk.c @@ -1235,7 +1235,7 @@ nodata: /* Create an Operation Error chunk of a fixed size, specifically, * min(asoc->pathmtu, SCTP_DEFAULT_MAXSEGMENT) - overheads. - * This is a helper function to allocate an error chunk for for those + * This is a helper function to allocate an error chunk for those * invalid parameter codes in which we may not want to report all the * errors, if the incoming chunk is large. If it can't fit in a single * packet, we ignore it. @@ -1780,7 +1780,7 @@ no_hmac: * for init collision case of lost COOKIE ACK. * If skb has been timestamped, then use the stamp, otherwise * use current time. This introduces a small possibility that - * that a cookie may be considered expired, but his would only slow + * a cookie may be considered expired, but this would only slow * down the new association establishment instead of every packet. */ if (sock_flag(ep->base.sk, SOCK_TIMESTAMP)) @@ -2319,7 +2319,7 @@ int sctp_process_init(struct sctp_associ /* This implementation defaults to making the first transport * added as the primary transport. The source address seems to - * be a a better choice than any of the embedded addresses. + * be a better choice than any of the embedded addresses. */ if (!sctp_assoc_add_peer(asoc, peer_addr, gfp, SCTP_ACTIVE)) goto nomem; From patchwork Sat Aug 22 23:16:01 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 1349772 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=infradead.org header.i=@infradead.org header.a=rsa-sha256 header.s=merlin.20170209 header.b=TjPviCgX; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4BYvQp5GLhz9sTR for ; Sun, 23 Aug 2020 09:16:34 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728690AbgHVXQd (ORCPT ); Sat, 22 Aug 2020 19:16:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37828 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728673AbgHVXQa (ORCPT ); Sat, 22 Aug 2020 19:16:30 -0400 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 36DDCC061573; Sat, 22 Aug 2020 16:16:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=3L/UsgXFqsCf4W0xBIw/XFmX/HWp9gaIOQiCvn/gjeI=; b=TjPviCgXdKtGKO/xSg7eevO5PW QI9KPF0JpYDe7Ly7rx8hbl2ZhtQ8vNUwo5nbVqyd4OvX285vXcyXHU2tWG1Z5Tga4jlXa3XCWqoEE zp/JHVb3xj2XCvuL1xOhYo6hcI9pqI46fgtbEv8LksmT8utUhHZXGvSGNZzYriWgFXpmNzU26qHRU yKX7SjdTDAqU1Vq0UL7gT5hgJszRnY4Ur/qlI7YdET28netI/mHUnhJNAZg4PhVWqR1L3oVcm86vX JHw2yUxMpNpz7GE2QxMuz4c4kRWKAcRCIpmnVV839gH9GUwVjcEXFQKWlFuqYBrUiE3YUqAAnQpBS KFO/An6g==; Received: from [2601:1c0:6280:3f0::19c2] (helo=smtpauth.infradead.org) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1k9ckN-0006VD-U1; Sat, 22 Aug 2020 23:16:28 +0000 From: Randy Dunlap To: netdev@vger.kernel.org Cc: Randy Dunlap , Vlad Yasevich , Neil Horman , Marcelo Ricardo Leitner , linux-sctp@vger.kernel.org, "David S. Miller" , Jakub Kicinski Subject: [PATCH 7/7] net: sctp: ulpqueue.c: delete duplicated word Date: Sat, 22 Aug 2020 16:16:01 -0700 Message-Id: <20200822231601.32125-8-rdunlap@infradead.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200822231601.32125-1-rdunlap@infradead.org> References: <20200822231601.32125-1-rdunlap@infradead.org> MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Drop the repeated word "an". Signed-off-by: Randy Dunlap Cc: Vlad Yasevich Cc: Neil Horman Cc: Marcelo Ricardo Leitner Cc: linux-sctp@vger.kernel.org Cc: "David S. Miller" Cc: Jakub Kicinski --- net/sctp/ulpqueue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20200731.orig/net/sctp/ulpqueue.c +++ linux-next-20200731/net/sctp/ulpqueue.c @@ -740,7 +740,7 @@ static void sctp_ulpq_reasm_drain(struct /* Helper function to gather skbs that have possibly become - * ordered by an an incoming chunk. + * ordered by an incoming chunk. */ static void sctp_ulpq_retrieve_ordered(struct sctp_ulpq *ulpq, struct sctp_ulpevent *event)