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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4322FC433F5 for ; Mon, 3 Oct 2022 22:50:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229802AbiJCWuX (ORCPT ); Mon, 3 Oct 2022 18:50:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52970 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229544AbiJCWuQ (ORCPT ); Mon, 3 Oct 2022 18:50:16 -0400 Received: from mail-yw1-x1134.google.com (mail-yw1-x1134.google.com [IPv6:2607:f8b0:4864:20::1134]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B261C13F3F for ; Mon, 3 Oct 2022 15:50:15 -0700 (PDT) Received: by mail-yw1-x1134.google.com with SMTP id 00721157ae682-3573ed7cc15so75853797b3.1 for ; Mon, 03 Oct 2022 15:50:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date; bh=+yOmU2koXJaUi4kTLXBCgS1sOIuDpjEm5txZroHl0aY=; b=PO3vwBSOG9derv7yFSwl5QxJT2WZMzhC37vJ0uFCy1+vEWDiufh6gL7N1VyhAK+FDB bP7Wd+d6YCVw3i5nfJxNz4YydRDRH/RFPIRcG8ff7wAq28lu/qOuYbm03LvbhxCar0x+ F8QgWwtUyUL/c11rY4UiFCdRDhdShPzthVHFoS8JfIYFiDY/FxKiuj9ZVGoOJBOooH+N fvkCqQ0qoHL/NZWhlHXv0udPMD/Nw6GnUyagsmED0lmjfSJg1UGq4cbbveNxmR6ThY0b qagPn8fLUM8FECXXN4JFsYYEgnWPokTxdh+wGW1/yAN3sTcmmNOVsMWDBfZCxBpktweM AvLA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date; bh=+yOmU2koXJaUi4kTLXBCgS1sOIuDpjEm5txZroHl0aY=; b=n8FN+g5VWZN9uDzRfz/wEmywxmu4dzHF7TkLzBe3LB1v7nGHq+0nIKOtj1AJX+BhME T980ZXB5s8h95CqWjtZzQu6CjwhfJW52CBVO57siuF63Z02KOn0cjAWqU7MYLOOzZxdN u2dsB7TgxEpiyTHYqlHy/mMnwZI7xcz7cdqx/jzUW1fQ/jwobbz9a7Nee1k/eCEcOnmE nc53d8l+1e1CvgPDUQn6YSFJt8gkW7ZzSWCorHZo67Nom8eZPlRnBliN0YbhNQ8u4IIG aeCxLgCNuEPUISFsqFepUWwO+frs2NDutS1wlqNgbXsMsZ+a2dOUobNu6lZNjHqBNxGv MCSw== X-Gm-Message-State: ACrzQf3ZiyNAZOAzT0iz5VANwSevigFMeOSbMIZvEm7bULm3cWOD2Ef6 tidzyqVaGfieIsdYkq31Tik8Ha9NzFjsVObHYSUVIg== X-Google-Smtp-Source: AMsMyM48kBViyeH9nPrv3iPS/EkfLUaEgz3hWA92cdqVIuwD2xt7nymQsd62veF5gqlY0N1pqyLnle/mQdPGyx+d0KE= X-Received: by 2002:a0d:ea85:0:b0:355:58b2:5a48 with SMTP id t127-20020a0dea85000000b0035558b25a48mr19921240ywe.332.1664837414684; Mon, 03 Oct 2022 15:50:14 -0700 (PDT) MIME-Version: 1.0 References: <20221003181413.1221968-1-Jason@zx2c4.com> In-Reply-To: <20221003181413.1221968-1-Jason@zx2c4.com> From: Eric Dumazet Date: Mon, 3 Oct 2022 15:50:03 -0700 Message-ID: Subject: Re: [PATCH] once: rename _SLOW to _SLEEPABLE To: "Jason A. Donenfeld" Cc: netdev , LKML , Jakub Kicinski , Eric Dumazet , "David S . Miller" , Christophe Leroy Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Oct 3, 2022 at 11:14 AM Jason A. Donenfeld wrote: > > The _SLOW designation wasn't really descriptive of anything. This is > meant to be called from process context when it's possible to sleep. So > name this more aptly _SLEEPABLE, which better fits its intended use. > > Fixes: 62c07983bef9 ("once: add DO_ONCE_SLOW() for sleepable contexts") Yes, this works for me, thank you. Reviewed-by: Eric Dumazet