From nobody Sat Jun 20 01:55:54 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9D6F8C433EF for ; Thu, 24 Mar 2022 06:33:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235529AbiCXGeb (ORCPT ); Thu, 24 Mar 2022 02:34:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50228 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229528AbiCXGe3 (ORCPT ); Thu, 24 Mar 2022 02:34:29 -0400 Received: from mail.meizu.com (edge05.meizu.com [157.122.146.251]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1CB53972C5; Wed, 23 Mar 2022 23:32:57 -0700 (PDT) Received: from IT-EXMB-1-125.meizu.com (172.16.1.125) by mz-mail12.meizu.com (172.16.1.108) with Microsoft SMTP Server (TLS) id 14.3.487.0; Thu, 24 Mar 2022 14:32:49 +0800 Received: from meizu.meizu.com (172.16.137.70) by IT-EXMB-1-125.meizu.com (172.16.1.125) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.14; Thu, 24 Mar 2022 14:32:47 +0800 From: Haowen Bai To: , , , , , CC: , , , Haowen Bai Subject: [PATCH] SUNRPC: Increase size of servername string Date: Thu, 24 Mar 2022 14:32:46 +0800 Message-ID: <1648103566-15528-1-git-send-email-baihaowen@meizu.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 X-Originating-IP: [172.16.137.70] X-ClientProxiedBy: IT-EXMB-1-125.meizu.com (172.16.1.125) To IT-EXMB-1-125.meizu.com (172.16.1.125) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" This patch will fix the warning from smatch: net/sunrpc/clnt.c:562 rpc_create() error: snprintf() chops off the last chars of 'sun->sun_path': 108 vs 48 Signed-off-by: Haowen Bai --- net/sunrpc/clnt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index c83fe61..6e0209e 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c @@ -526,7 +526,7 @@ struct rpc_clnt *rpc_create(struct rpc_create_args *arg= s) .servername =3D args->servername, .bc_xprt =3D args->bc_xprt, }; - char servername[48]; + char servername[108]; struct rpc_clnt *clnt; int i; =20 --=20 2.7.4