Received: by 2002:a05:6a10:8c0a:0:0:0:0 with SMTP id go10csp320194pxb; Thu, 21 Jan 2021 07:55:08 -0800 (PST) X-Google-Smtp-Source: ABdhPJxwUewWMkrmE/7gbzgmYaD7Hch1/1UnNnnWHWiBGgl66hAY+ORKgCVwV/EAtleFhDQLGMg9 X-Received: by 2002:aa7:ce87:: with SMTP id y7mr11798796edv.211.1611244507978; Thu, 21 Jan 2021 07:55:07 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1611244507; cv=none; d=google.com; s=arc-20160816; b=e98dAi1YctzBOUUThfZLqE55UGSSIIowylQuaeiz8sHGfimGBUgcWI4+p8P523CCkY Gd6kfrGAdUbMYw+KjplBMZVCt8EmxXiyHzgh/bIixZVzmPcnAeUlLvufPP+odogD/C3U EPbPWw8tWcyVhrnCLqIpvsRNSkoXPIUGa6fzRNHdAenwtURkuJR7NyJ8q/vtfY2tol6T NNpNIfAbR8jJMRkQ2Bv5KvuQEhu3IKhAC8VFixYCU7bzTBdTMf68FxkljtBzesPw/fwN nTk+8iHm2iI4jNWRFBOlhOnBIr9SY+VnbmtHn0hVLObli3690NDYoOwGRDCGts7sr0zk WZ4w== 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=DXBRm1nws8PTL48XKPBnVJ2wECodDxPvptsk1SEtfio=; b=LVmqtNVE73i8KDTrZpMyw2msAsqChmEjjdMQ+IbbQHrbZvRzT3AFi4uJmmemlh7yuG 6PR7dsWULAl5Fgzzu7qdcYNsLxiAOfdkgbXXlUMQsf9VIEo5Gl2xDXJnIyL4uPcOX3aY zP56dbT5gvTRqHqOhgxN1Vl5zWfUdljIZ86+IaIxfEEpbbsnM01/5w2+BO1HhMUhC4NP xdJnf5QhcqA7/MR4VSfqRCAJX/J5pUPo8/hfvnRVwy8Jx283K6Yjef6++JKhsXIzBkjE 4/LaNJaYjNYQzqYg5c25ccgqvg4mirMc9nZmAe3LCgGbgU/SsxNWlvQy/nAnG2czrrSJ J7Iw== 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 eb8si1019810edb.6.2021.01.21.07.54.43; Thu, 21 Jan 2021 07:55:07 -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 S1725933AbhAUPyU (ORCPT + 99 others); Thu, 21 Jan 2021 10:54:20 -0500 Received: from outgoing-auth-1.mit.edu ([18.9.28.11]:57794 "EHLO outgoing.mit.edu" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1729307AbhAUPwz (ORCPT ); Thu, 21 Jan 2021 10:52:55 -0500 Received: from cwcc.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 10LFpsox001544 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 21 Jan 2021 10:51:54 -0500 Received: by cwcc.thunk.org (Postfix, from userid 15806) id 2DC3315C35F5; Thu, 21 Jan 2021 10:51:54 -0500 (EST) Date: Thu, 21 Jan 2021 10:51:54 -0500 From: "Theodore Ts'o" To: Saranya Muruganandam Cc: linux-ext4@vger.kernel.org Subject: Re: [RFC PATCH v1 0/5] Add threading support to e2fsprogs Message-ID: References: <20210114002723.643589-1-saranyamohan@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210114002723.643589-1-saranyamohan@google.com> Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On Wed, Jan 13, 2021 at 04:27:18PM -0800, Saranya Muruganandam wrote: > This patch set adds the infrastructure to support threading to > libext2fs. It makes the unix_io I/O Manager thread-aware. Wang's > parallel bitmap code has been adapted to use the new threading > infrastructure. > > The code has been tested with TSAN and ASAN built into gcc 10.2: > > configure 'CFLAGS=-g -fsanitize=thread' 'LDFLAGS=-fsanitize=thread' > make clean ; make -j16 ; make -j16 check > configure 'CFLAGS=-g -fsanitize=address' 'LDFLAGS=-fsanitize=address' > make clean ; make -j16 ; make -j16 check > > As I(tytso) needed to excerpt out some of the changes to generated patches in > "Add configure and build support for the pthreads", the full patch > series can be found in git: > > git fetch https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git pthreads Thanks, I've applied this patch series. (There were some slight merge conflicts due to some other changes from the maint branch so I had to regenerate the aclocal.m4 and configure files.) - Ted