Received: by 2002:a05:6a10:f347:0:0:0:0 with SMTP id d7csp1169007pxu; Mon, 23 Nov 2020 13:30:30 -0800 (PST) X-Google-Smtp-Source: ABdhPJwtp5XU2pSyR3njIwdzhmo/7TG6cl0HyQszfj6REhjxndeTWutSHYj9CsYb30I/c9qRq22x X-Received: by 2002:a17:906:e11a:: with SMTP id gj26mr1462926ejb.291.1606167030775; Mon, 23 Nov 2020 13:30:30 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1606167030; cv=none; d=google.com; s=arc-20160816; b=N3mR54Dq47tmGkmBkrMEV1aiPx4L7eSxCQsxRKvj7L0WpDOmprAyk+rJmto2q/Gofl uYmbKR/yNpUF8bPHeIV4OOUDJ0wOqyl1LNUL7RHhw8il/UiuPMnRoPh8QgHPpMCgImxG HR11Z2uNJLlJyQKeSDktegfqFFr+fERxAGiSVnGe3cNbii95C5xVZPqdOLgAF1aruH3w vNmRqCzlDOB1uwjbFIsMw8D0TuCKME6/4HIq2TARVDA6udvieWb3BZnHrosRLhH8o5Mp +8d5GE2JcmKKj2AVrrf0MkbFSWGxrp4mTEjuTLapkgDq5WfnTmoi7Cihk4qgWVlYwyhS C2ng== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=pBSKnCeKm0g2RDlBIZlu/S9XfTbtN8qQ/LLvAxwOLTI=; b=JHMYQAZq677SIwes64LhQT23l+j8y180cI0TVkSCSLgwOEhbvj9n3GBeDN5mqGGrnr +EGE3ekp+HFqqBjbvKOO8CnNtLwFuQC5QMGNHMMNMmtU+2KjJcSbL2c1Q74CQlOGqJRa fzsJ7peKMgj451W0ywCJ6Lkx4rdGgjOlM6PAR0J35fb3aWw+lA2S4yEO1kKG16QpMEBH 1TVbfyt0gdlM9m/gvKsg/9glaGcKxDKxUzRX/VF8GQFSv/jZG1hEdJsqk6rCVC+u0sXL 4i0ljcWcZ1prl/GwJkY4NqwcMLX4EcsbBDl9JtSgIlerwq9JZQPkG61n3FciIDOCRJZ9 /5OQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id dm15si6580132edb.555.2020.11.23.13.30.07; Mon, 23 Nov 2020 13:30:30 -0800 (PST) Received-SPF: pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727725AbgKWV26 (ORCPT + 99 others); Mon, 23 Nov 2020 16:28:58 -0500 Received: from outgoing-auth-1.mit.edu ([18.9.28.11]:54128 "EHLO outgoing.mit.edu" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726325AbgKWV25 (ORCPT ); Mon, 23 Nov 2020 16:28:57 -0500 Received: from callcc.thunk.org (pool-72-74-133-215.bstnma.fios.verizon.net [72.74.133.215]) (authenticated bits=0) (User authenticated as tytso@ATHENA.MIT.EDU) by outgoing.mit.edu (8.14.7/8.12.4) with ESMTP id 0ANLSmYT012536 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Mon, 23 Nov 2020 16:28:48 -0500 Received: by callcc.thunk.org (Postfix, from userid 15806) id D889A420136; Mon, 23 Nov 2020 16:28:47 -0500 (EST) Date: Mon, 23 Nov 2020 16:28:47 -0500 From: "Theodore Y. Ts'o" To: Saranya Muruganandam Cc: linux-ext4@vger.kernel.org, adilger.kernel@dilger.ca, Li Xi , Wang Shilong Subject: Re: [RFC PATCH v3 01/61] e2fsck: add -m option for multithread Message-ID: <20201123212847.GD132317@mit.edu> References: <20201118153947.3394530-1-saranyamohan@google.com> <20201118153947.3394530-2-saranyamohan@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201118153947.3394530-2-saranyamohan@google.com> Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On Wed, Nov 18, 2020 at 07:38:47AM -0800, Saranya Muruganandam wrote: > From: Li Xi > > -m option is added but no actual functionality is added. This > patch only adds the logic that when -m is specified, one of > -p/-y/-n options should be specified. And when -m is specified, > -C shouldn't be specified and the completion progress report won't > be triggered by sending SIGUSR1/SIGUSR2 signals. This simplifies > the implementation of multi-thread fsck in the future. > > Completion progress support with multi-thread fsck will be added > back after multi-thread fsck implementation is finished. Right > now, disable it to simplify the implementation of multi-thread fsck. > > Signed-off-by: Li Xi > Signed-off-by: Wang Shilong > Signed-off-by: Saranya Muruganandam I'm a bit surprised the changes to the e2fsck man page aren't inclulded in this patch. I see the man page changes were added in "e2fsck: misc cleanups for pfsck", which I would have merged into other patches, but that's a bit of a nit-pick. (The way I normally do these sorts of changes is to expert the patches using "git format-patch", and then I'll use an editor to move patch hunks around, and then apply them all using "git am". Or I'll using something like the "guilt" program, which is essentially quilt for git patch series.) (Don't worry about making changes for this, unless you're going to be making lots of other changes to the patch series.) - Ted