From nobody Sun Apr 19 09:08: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 14966C43334 for ; Mon, 4 Jul 2022 02:38:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231585AbiGDCiI (ORCPT ); Sun, 3 Jul 2022 22:38:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60032 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229868AbiGDCiG (ORCPT ); Sun, 3 Jul 2022 22:38:06 -0400 Received: from mail.nfschina.com (unknown [IPv6:2400:dd01:100f:2:72e2:84ff:fe10:5f45]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id B2D4764D8 for ; Sun, 3 Jul 2022 19:38:05 -0700 (PDT) Received: from localhost (unknown [127.0.0.1]) by mail.nfschina.com (Postfix) with ESMTP id 296EA1E80CCF; Mon, 4 Jul 2022 10:36:12 +0800 (CST) X-Virus-Scanned: amavisd-new at test.com Received: from mail.nfschina.com ([127.0.0.1]) by localhost (mail.nfschina.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id i1NA-UW8mOBP; Mon, 4 Jul 2022 10:36:09 +0800 (CST) Received: from node1.localdomain (unknown [219.141.250.2]) (Authenticated sender: zeming@nfschina.com) by mail.nfschina.com (Postfix) with ESMTPA id 620CE1E80C90; Mon, 4 Jul 2022 10:36:09 +0800 (CST) From: Li zeming To: dhowells@redhat.com, marc.dionne@auristor.com Cc: linux-afs@lists.infradead.org, linux-kernel@vger.kernel.org, kernel@nfschina.com, Li zeming Subject: [PATCH] afs/_enter: Fix typo in string Date: Mon, 4 Jul 2022 10:37:39 +0800 Message-Id: <20220704023739.3523-1-zeming@nfschina.com> X-Mailer: git-send-email 2.18.2 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Remove the repeated ',' from string Signed-off-by: Li zeming --- fs/afs/dir.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/afs/dir.c b/fs/afs/dir.c index 56ae5cd5184f..0628e843949f 100644 --- a/fs/afs/dir.c +++ b/fs/afs/dir.c @@ -574,7 +574,7 @@ static int afs_lookup_one_filldir(struct dir_context *c= tx, const char *name, struct afs_lookup_one_cookie *cookie =3D container_of(ctx, struct afs_lookup_one_cookie, ctx); =20 - _enter("{%s,%u},%s,%u,,%llu,%u", + _enter("{%s,%u},%s,%u,%llu,%u", cookie->name.name, cookie->name.len, name, nlen, (unsigned long long) ino, dtype); =20 @@ -643,7 +643,7 @@ static int afs_lookup_filldir(struct dir_context *ctx, = const char *name, container_of(ctx, struct afs_lookup_cookie, ctx); int ret; =20 - _enter("{%s,%u},%s,%u,,%llu,%u", + _enter("{%s,%u},%s,%u,%llu,%u", cookie->name.name, cookie->name.len, name, nlen, (unsigned long long) ino, dtype); =20 --=20 2.18.2