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.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED autolearn=no 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 DCFC6C43461 for ; Mon, 17 May 2021 08:44:11 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C2437610C9 for ; Mon, 17 May 2021 08:44:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235561AbhEQIp0 (ORCPT ); Mon, 17 May 2021 04:45:26 -0400 Received: from mail.kernel.org ([198.145.29.99]:60942 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235494AbhEQIpT (ORCPT ); Mon, 17 May 2021 04:45:19 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 4EFB461184; Mon, 17 May 2021 08:44:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1621241043; bh=pGxJJRkE9qeDtccc/YEcwOP1pJnAulKNh3xYI4CjqcE=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=VhyR280qktq3Yj7mvUPKACKxoTFcuZgScgzvJHx3l38cArr8+Z1PHUCauN7611dwt NPqfUoJoLvybKsWnw5XBfWBnw8Kv/cK+DKuTDCcu6S3genrIH4gyCUDyMru0esHMq3 IQajegZypqB2swBYx+h3oZex0t4OU4xmY+RiLrkmtgPak2eiVPLgJdWphXaIjg2ZQR xazekUTIUzom3w/On/AUGF/4aikSScp4WWIi0uoJhNFKiP0lEpNVnpQ48HG9k3wCGu 5YN9cseL+gw6iSznh8e4ihyONNGEmrxfyQM2XPKMRSASOUsEWkgPtNFIfn50Tm8Cvs 7//2tKougJRQA== Received: by mail-wm1-f51.google.com with SMTP id z19-20020a7bc7d30000b029017521c1fb75so2478967wmk.0; Mon, 17 May 2021 01:44:03 -0700 (PDT) X-Gm-Message-State: AOAM532xA7QFH2+P2DODo0KsRt+DGT3pXCyq8ZIi0NgyHPpf7piGEIYX dJrCQe9X2ZzMmeQwNuDMXzA6JKwTdDafiIYGbrI= X-Google-Smtp-Source: ABdhPJyn3HuFOFAJWNgd1wcrETQpYkMJHnXvEOT0odsuIYz2sA4AdaozgJ+/NI7bT1baIPTv7IRh4lYoa6g98QiwBCo= X-Received: by 2002:a7b:c446:: with SMTP id l6mr6057480wmi.75.1621241041984; Mon, 17 May 2021 01:44:01 -0700 (PDT) MIME-Version: 1.0 References: <20210514220942.879805-1-arnd@kernel.org> <20210514220942.879805-2-arnd@kernel.org> In-Reply-To: From: Arnd Bergmann Date: Mon, 17 May 2021 10:42:54 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH 1/5] asm-generic/uaccess.h: remove __strncpy_from_user/__strnlen_user To: Geert Uytterhoeven Cc: Linux-Arch , Christoph Hellwig , Al Viro , Vineet Gupta , Yoshinori Sato , Brian Cain , Paul Walmsley , Palmer Dabbelt , Albert Ou , Jeff Dike , Richard Weinberger , Anton Ivanov , Sid Manning , Andrew Morton , Mike Rapoport , arcml , Linux Kernel Mailing List , "moderated list:H8/300 ARCHITECTURE" , "open list:QUALCOMM HEXAGON..." , linux-m68k , linux-riscv , linux-um Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, May 17, 2021 at 9:42 AM Geert Uytterhoeven wrote: > > On Sat, May 15, 2021 at 12:10 AM Arnd Bergmann wrote: > > From: Arnd Bergmann > > > > This is a preparation for changing over architectures to the > > generic implementation one at a time. As there are no callers > > of either __strncpy_from_user() or __strnlen_user(), fold these > > into the strncpy_from_user() strnlen_user() functions to make > > ... and ... Fixed, thanks! Arnd