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 CFF77C7EE29 for ; Thu, 25 May 2023 18:16:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234123AbjEYSQM (ORCPT ); Thu, 25 May 2023 14:16:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42958 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230474AbjEYSQL (ORCPT ); Thu, 25 May 2023 14:16:11 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 58D49E2 for ; Thu, 25 May 2023 11:16:10 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id E294564869 for ; Thu, 25 May 2023 18:16:09 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 49726C433EF; Thu, 25 May 2023 18:16:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1685038569; bh=plBJVTHIMNPxcCqmOhrk0aN7CkZvTcCEBw7bXx82tQ8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=r3TyY1yja8Fmqzn5aiEZ7pnLerGIQKRXBOPpO+u/hvc5xTmh40b99yp4q+J+qpDsG vDfWBAr3FtApI0Kz/xDp4oZbFBKaRcllZPCsCre5eSoLFrS9dii07EliOGRc0hBIax ZQYh1WPVBDGHySw05A5r161lBwkFqBHNt3fqIZh/AX/RcsdWA/+772hvJ4T75Ym24k f/FpXTUZYBVYcwbtIG5Mhp0WwV5vCFH01DPHTHzB/SiRWj5mbz19JnnWcuobfu69/s VFNTITaIOniSFaZAqK+MVomAIn2ZOvP/Xk43GBEPL7L3gwZjlN3mf1NQbLLdqrnRhn GCjwUVIOYQ04w== Date: Thu, 25 May 2023 20:16:04 +0200 From: Christian Brauner To: Jan Kara Cc: linux-fsdevel@vger.kernel.org, Al Viro Subject: Re: [PATCH] fs: Drop wait_unfrozen wait queue Message-ID: <20230525-vorenthalten-drama-aafc614c20df@brauner> References: <20230525141710.7595-1-jack@suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20230525141710.7595-1-jack@suse.cz> Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Thu, May 25, 2023 at 04:17:10PM +0200, Jan Kara wrote: > wait_unfrozen waitqueue is used only in quota code to wait for > filesystem to become unfrozen. In that place we can just use > sb_start_write() - sb_end_write() pair to achieve the same. So just > remove the waitqueue. > > Signed-off-by: Jan Kara > --- Removing code. I'm all here for it... Reviewed-by: Christian Brauner > fs/quota/quota.c | 5 +++-- > fs/super.c | 4 ---- > include/linux/fs.h | 1 - > 3 files changed, 3 insertions(+), 7 deletions(-) > > Guys, I can merge this cleanup through my tree since I don't expect any > conflicts and the generic part is pure removal of unused code. There'll likely be another set of fixes I'll take next week but I honestly don't care. But seems that this isn't really urgent so why not just wait for the merge window?