From patchwork Mon Jul 25 01:59:03 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Slark Xiao X-Patchwork-Id: 12927683 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 061EFC43334 for ; Mon, 25 Jul 2022 02:00:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232738AbiGYCAQ (ORCPT ); Sun, 24 Jul 2022 22:00:16 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59202 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229745AbiGYCAQ (ORCPT ); Sun, 24 Jul 2022 22:00:16 -0400 Received: from mail-m975.mail.163.com (mail-m975.mail.163.com [123.126.97.5]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id B459F21B3; Sun, 24 Jul 2022 19:00:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=163.com; s=s110527; h=From:Subject:Date:Message-Id:MIME-Version; bh=6Zj5A pdAiEx8X+QuboEHsQ4u/PvScDJ4OjKZQgS8oPA=; b=HFP7K6XiYK5KmBAOJ2Q4K uY2lA7Q85TbTio/W4FC8TZUyLvFL5dxDaKAxxWHz3++1EOmeLsguOgXaRj1GEQKu JukR5wQn6Jyto57IkOwmQ5K9X1HaVcjXpY1ia+DFLrhd1NV+DLFR9+9kTrjuVI84 aZxuEHRHmOz4AtYK5dQes8= Received: from localhost.localdomain (unknown [112.97.48.126]) by smtp5 (Coremail) with SMTP id HdxpCgCn_dTo+N1i1CHWQA--.190S2; Mon, 25 Jul 2022 09:59:08 +0800 (CST) From: Slark Xiao To: tglx@linutronix.de, mingo@redhat.com, shuah@kernel.org, peterz@infradead.org, dvhart@infradead.org, dave@stgolabs.net, andrealmeid@igalia.com Cc: linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org, Slark Xiao Subject: [PATCH] selftests: futex: Fix typo 'the the' in comment Date: Mon, 25 Jul 2022 09:59:03 +0800 Message-Id: <20220725015903.5449-1-slark_xiao@163.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-CM-TRANSID: HdxpCgCn_dTo+N1i1CHWQA--.190S2 X-Coremail-Antispam: 1Uf129KBjvdXoWrZFyDGF1DKFyDJr4fZrWUurg_yoWDJFc_Kr 4DJrZ7Xrs8GFn5tr10ya13ur4xG34UuF48CrW5WF47KFn0yFW5Aw4kAr48AFyrWw43Ary2 gFnxXrs8K3W3ujkaLaAFLSUrUUUUUb8apTn2vfkv8UJUUUU8Yxn0WfASr-VFAUDa7-sFnT 9fnUUvcSsGvfC2KfnxnUUI43ZEXa7xRJu4j7UUUUU== X-Originating-IP: [112.97.48.126] X-CM-SenderInfo: xvod2y5b0lt0i6rwjhhfrp/1tbiGQ1JZFyPdo1IBwAAse Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org Replace 'the the' with 'the' in the comment. Signed-off-by: Slark Xiao --- .../futex/functional/futex_requeue_pi_signal_restart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/selftests/futex/functional/futex_requeue_pi_signal_restart.c b/tools/testing/selftests/futex/functional/futex_requeue_pi_signal_restart.c index f8c43ce8fe66..c6b8f32990c8 100644 --- a/tools/testing/selftests/futex/functional/futex_requeue_pi_signal_restart.c +++ b/tools/testing/selftests/futex/functional/futex_requeue_pi_signal_restart.c @@ -184,7 +184,7 @@ int main(int argc, char *argv[]) /* * If res is non-zero, we either requeued the waiter or hit an * error, break out and handle it. If it is zero, then the - * signal may have hit before the the waiter was blocked on f1. + * signal may have hit before the waiter was blocked on f1. * Try again. */ if (res > 0) {