From patchwork Tue Feb 13 10:11:30 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tobias Klauser X-Patchwork-Id: 872740 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3zgdcG2kFbz9sBW for ; Tue, 13 Feb 2018 21:11:42 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933964AbeBMKLh (ORCPT ); Tue, 13 Feb 2018 05:11:37 -0500 Received: from sym2.noone.org ([178.63.92.236]:60528 "EHLO sym2.noone.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933748AbeBMKLc (ORCPT ); Tue, 13 Feb 2018 05:11:32 -0500 Received: by sym2.noone.org (Postfix, from userid 1002) id 3zgdc272xkzvjcp; Tue, 13 Feb 2018 11:11:30 +0100 (CET) From: Tobias Klauser To: davem@davemloft.net Cc: netdev@vger.kernel.org Subject: [PATCH] net: af_unix: fix typo in UNIX_SKB_FRAGS_SZ comment Date: Tue, 13 Feb 2018 11:11:30 +0100 Message-Id: <1518516690-24993-1-git-send-email-tklauser@distanz.ch> X-Mailer: git-send-email 1.7.10.4 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Change "minimun" to "minimum". Signed-off-by: Tobias Klauser --- net/unix/af_unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index d545e1d0dea2..2d465bdeccbc 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c @@ -1825,7 +1825,7 @@ static int unix_dgram_sendmsg(struct socket *sock, struct msghdr *msg, } /* We use paged skbs for stream sockets, and limit occupancy to 32768 - * bytes, and a minimun of a full page. + * bytes, and a minimum of a full page. */ #define UNIX_SKB_FRAGS_SZ (PAGE_SIZE << get_order(32768))