From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DFFA2C33CAF for ; Wed, 22 Jan 2020 09:55:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id AD1E124683 for ; Wed, 22 Jan 2020 09:55:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579686959; bh=+xkFp8p9M2YP5yh6/o+n/1mHFliog5Xd/ra+QW6gKRE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=Sj/kckjwb1Z5gNw7IC+H4mQJxHLaIF3ZFQFPE1YClVcKZj2OMfIOd2PwDK1Ugf27Y qnBVW90y31u0RZZ3IbfQZyZs/Wr51JPXzzx8cLrqBrODWjyGyMJzX3y4V4Fj+sT3sy 4IX/h9ghIKXWa2OZqd6BxcPgkEu2Jygrw1nIrTCk= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730016AbgAVJcS (ORCPT ); Wed, 22 Jan 2020 04:32:18 -0500 Received: from mail.kernel.org ([198.145.29.99]:45020 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730012AbgAVJcR (ORCPT ); Wed, 22 Jan 2020 04:32:17 -0500 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 0A1642071E; Wed, 22 Jan 2020 09:32:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579685537; bh=+xkFp8p9M2YP5yh6/o+n/1mHFliog5Xd/ra+QW6gKRE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Biy0FSPJWCdWW6LI+hDY4sGxcT3siGYhTKnmez0E0cYEV1agv/qo90BiYsiNJc2x+ BppVNgnj9WOSpdY2HJnzMVVkvX5KWvxABk1+iB8nq+hSwWUBAd8Ow/YRk+Ed/Gmfg+ C3451WNzaC+YRPmSmQ2ta+QhI6Gtm88E9n2B+APg= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Jose Abreu , "David S. Miller" Subject: [PATCH 4.4 54/76] net: stmmac: Enable 16KB buffer size Date: Wed, 22 Jan 2020 10:29:10 +0100 Message-Id: <20200122092758.968566904@linuxfoundation.org> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200122092751.587775548@linuxfoundation.org> References: <20200122092751.587775548@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Jose Abreu commit b2f3a481c4cd62f78391b836b64c0a6e72b503d2 upstream. XGMAC supports maximum MTU that can go to 16KB. Lets add this check in the calculation of RX buffer size. Fixes: 7ac6653a085b ("stmmac: Move the STMicroelectronics driver") Signed-off-by: Jose Abreu Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c @@ -935,7 +935,9 @@ static int stmmac_set_bfsize(int mtu, in { int ret = bufsize; - if (mtu >= BUF_SIZE_4KiB) + if (mtu >= BUF_SIZE_8KiB) + ret = BUF_SIZE_16KiB; + else if (mtu >= BUF_SIZE_4KiB) ret = BUF_SIZE_8KiB; else if (mtu >= BUF_SIZE_2KiB) ret = BUF_SIZE_4KiB;