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=-2.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,UNPARSEABLE_RELAY,USER_AGENT_SANE_1 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 B57DDC3A59D for ; Thu, 22 Aug 2019 06:45:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 85F0E21726 for ; Thu, 22 Aug 2019 06:45:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731653AbfHVGp1 (ORCPT ); Thu, 22 Aug 2019 02:45:27 -0400 Received: from out30-130.freemail.mail.aliyun.com ([115.124.30.130]:60338 "EHLO out30-130.freemail.mail.aliyun.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730856AbfHVGp1 (ORCPT ); Thu, 22 Aug 2019 02:45:27 -0400 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R241e4;CH=green;DM=||false|;FP=0|-1|-1|-1|0|-1|-1|-1;HT=e01f04391;MF=joseph.qi@linux.alibaba.com;NM=1;PH=DS;RN=8;SR=0;TI=SMTPD_---0Ta74xR2_1566456323; Received: from JosephdeMacBook-Pro.local(mailfrom:joseph.qi@linux.alibaba.com fp:SMTPD_---0Ta74xR2_1566456323) by smtp.aliyun-inc.com(127.0.0.1); Thu, 22 Aug 2019 14:45:23 +0800 Subject: Re: [RFC] performance regression with "ext4: Allow parallel DIO reads" To: "Theodore Y. Ts'o" Cc: Jan Kara , Joseph Qi , Dave Chinner , Andreas Dilger , Ext4 Developers List , Xiaoguang Wang , Liu Bo References: <6DADA28C-542F-45F6-ADB0-870A81ABED23@dilger.ca> <15112e38-94fe-39d6-a8e2-064ff47187d5@linux.alibaba.com> <20190728225122.GG7777@dread.disaster.area> <960bb915-20cc-26a0-7abc-bfca01aa39c0@gmail.com> <20190815151336.GO14313@quack2.suse.cz> <075fd06f-b0b4-4122-81c6-e49200d5bd17@linux.alibaba.com> <20190816145719.GA3041@quack2.suse.cz> <20190820160805.GB10232@mit.edu> <20190821033443.GI10232@mit.edu> From: Joseph Qi Message-ID: <4e3606cf-34ae-6989-404a-de67324a4919@linux.alibaba.com> Date: Thu, 22 Aug 2019 14:45:23 +0800 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 In-Reply-To: <20190821033443.GI10232@mit.edu> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On 19/8/21 11:34, Theodore Y. Ts'o wrote: > On Wed, Aug 21, 2019 at 09:04:57AM +0800, Joseph Qi wrote: >> On 19/8/21 00:08, Theodore Y. Ts'o wrote: >>> On Tue, Aug 20, 2019 at 11:00:39AM +0800, Joseph Qi wrote: >>>> >>>> I've tested parallel dio reads with dioread_nolock, it doesn't have >>>> significant performance improvement and still poor compared with reverting >>>> parallel dio reads. IMO, this is because with parallel dio reads, it take >>>> inode shared lock at the very beginning in ext4_direct_IO_read(). >>> >>> Why is that a problem? It's a shared lock, so parallel threads should >>> be able to issue reads without getting serialized? >>> >> The above just tells the result that even mounting with dioread_nolock, >> parallel dio reads still has poor performance than before (w/o parallel >> dio reads). > > Right, but you were asserting that performance hit was *because* of > the shared lock. I'm asking what leading you to have that opinion. > The fact that parallel dioread reads doesn't necessarily say that it > was because of that particular shared lock. It could be due to any > number of other things. Have you looked at /proc/lock_stat (enabeld > via CONFIG_LOCK_STAT) to see where the locking bottlenecks might be? > I've enabled CONFIG_LOCK_STAT and CONFIG_DEBUG_RWSEMS, but doesn't see any statistics for i_rwsem. Am I missing something? Thanks, Joseph