Received: by 2002:a25:8b12:0:0:0:0:0 with SMTP id i18csp416706ybl; Fri, 23 Aug 2019 02:52:41 -0700 (PDT) X-Google-Smtp-Source: APXvYqza0sdW+dVifcfRX5JbXP69iBm0m291KI59G/P/CDp2z6E10d0KJ2asj5EHJFc9okjxPkLK X-Received: by 2002:a17:902:4b:: with SMTP id 69mr3753513pla.89.1566553961532; Fri, 23 Aug 2019 02:52:41 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1566553961; cv=none; d=google.com; s=arc-20160816; b=nTQ7u5qiRZQxQ1dQd34BwFaab/JxvGOQvBkaR+k2uH1AIHZ1ecpQVT/i60vn1LVXpx JmjoS3Nx/FqPOFrIR2msWod+I5+8zhWY867s86rQr0mdalOBerN/tjOoht30p0KrGP8V 315LD7rk4OOYiq79islR6BwsDYli4B+OjqgTSG9AYukpOnDd6lhKSycSqxJugCI3DLzR EujpH2z2S3LXatmiLDEJ+DRteZUDtZ3kblTTXcg6hsA25l0wLOoyzTSFyPsRHutCq2Uh UuTtMcFNEt5wUB3DdwUBDiePfvX1zkPPqTexQUdx5Fn7FDaw7AvyhyYyXwC9LeF4AM9c BqIg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=q9bxLlyY9VqmP8Be+f79lai7NAeRFAfrv2bigCtRjNM=; b=yatjYHjF5LXP5wX5DxGv3YI8FlvTs2oXaZgAZW0YT9NdFtwNKcoB2+sh6qvqA31/tp 7nSFAZ3/HIrGJpNJCqeVxJRnlrJvtmfaMRc3wxePtqgHGZsgehv+UaPTJOgp3BX6zX12 ybAxsr8jAmGcNBo4m2WtnCfPgYtk2VqtNK1KoyXCaMstRJycuQBqxkj8qRf4cIogoLX0 hU5z6Aq87DmUgiv7X/ith1SKwNlITPr2MVYewMzvyfiumr1XGEjWKccEQyxyTtpLHvGH NeTW5N5fVtOheZeu7ITldtEiSQb1J0sjfSj66n+YQkgqU9FzGX2I+wUZlEoanJXNIaRN KEVA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-ext4-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id n129si1553100pgn.254.2019.08.23.02.52.27; Fri, 23 Aug 2019 02:52:41 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-ext4-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-ext4-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2403837AbfHWCuL (ORCPT + 99 others); Thu, 22 Aug 2019 22:50:11 -0400 Received: from szxga04-in.huawei.com ([45.249.212.190]:5203 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726283AbfHWCuL (ORCPT ); Thu, 22 Aug 2019 22:50:11 -0400 Received: from DGGEMS408-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id 46EEB239800F4B6F10CA; Fri, 23 Aug 2019 10:50:00 +0800 (CST) Received: from localhost.localdomain (10.67.212.132) by DGGEMS408-HUB.china.huawei.com (10.3.19.208) with Microsoft SMTP Server id 14.3.439.0; Fri, 23 Aug 2019 10:49:51 +0800 From: Shaokun Zhang To: , CC: Yang Guo , Theodore Ts'o , "Andreas Dilger" , Shaokun Zhang Subject: [PATCH] ext4: change the type of ext4 cache stats to percpu_counter to improve performance Date: Fri, 23 Aug 2019 10:47:34 +0800 Message-ID: <1566528454-13725-1-git-send-email-zhangshaokun@hisilicon.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Originating-IP: [10.67.212.132] X-CFilter-Loop: Reflected Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org From: Yang Guo @es_stats_cache_hits and @es_stats_cache_misses are accessed frequently in ext4_es_lookup_extent function, it would influence the ext4 read/write performance in NUMA system. Let's optimize it using percpu_counter, it is profitable for the performance. The test command is as below: fio -name=randwrite -numjobs=8 -filename=/mnt/test1 -rw=randwrite -ioengine=libaio -direct=1 -iodepth=64 -sync=0 -norandommap -group_reporting -runtime=120 -time_based -bs=4k -size=5G And the result is better 10% than the initial implement: without the patch,IOPS=197k, BW=770MiB/s (808MB/s)(90.3GiB/120002msec) with the patch, IOPS=218k, BW=852MiB/s (894MB/s)(99.9GiB/120002msec) Cc: "Theodore Ts'o" Cc: Andreas Dilger Signed-off-by: Yang Guo Signed-off-by: Shaokun Zhang --- fs/ext4/extents_status.c | 20 +++++++++++++------- fs/ext4/extents_status.h | 4 ++-- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/fs/ext4/extents_status.c b/fs/ext4/extents_status.c index 7521de2dcf3a..7699e80ae236 100644 --- a/fs/ext4/extents_status.c +++ b/fs/ext4/extents_status.c @@ -947,9 +947,9 @@ int ext4_es_lookup_extent(struct inode *inode, ext4_lblk_t lblk, es->es_pblk = es1->es_pblk; if (!ext4_es_is_referenced(es1)) ext4_es_set_referenced(es1); - stats->es_stats_cache_hits++; + percpu_counter_inc(&stats->es_stats_cache_hits); } else { - stats->es_stats_cache_misses++; + percpu_counter_inc(&stats->es_stats_cache_misses); } read_unlock(&EXT4_I(inode)->i_es_lock); @@ -1235,9 +1235,9 @@ int ext4_seq_es_shrinker_info_show(struct seq_file *seq, void *v) seq_printf(seq, "stats:\n %lld objects\n %lld reclaimable objects\n", percpu_counter_sum_positive(&es_stats->es_stats_all_cnt), percpu_counter_sum_positive(&es_stats->es_stats_shk_cnt)); - seq_printf(seq, " %lu/%lu cache hits/misses\n", - es_stats->es_stats_cache_hits, - es_stats->es_stats_cache_misses); + seq_printf(seq, " %llu/%llu cache hits/misses\n", + percpu_counter_sum_positive(&es_stats->es_stats_cache_hits), + percpu_counter_sum_positive(&es_stats->es_stats_cache_misses)); if (inode_cnt) seq_printf(seq, " %d inodes on list\n", inode_cnt); @@ -1264,8 +1264,14 @@ int ext4_es_register_shrinker(struct ext4_sb_info *sbi) sbi->s_es_nr_inode = 0; spin_lock_init(&sbi->s_es_lock); sbi->s_es_stats.es_stats_shrunk = 0; - sbi->s_es_stats.es_stats_cache_hits = 0; - sbi->s_es_stats.es_stats_cache_misses = 0; + err = percpu_counter_init(&sbi->s_es_stats.es_stats_cache_hits, 0, + GFP_KERNEL); + if (err) + return err; + err = percpu_counter_init(&sbi->s_es_stats.es_stats_cache_misses, 0, + GFP_KERNEL); + if (err) + return err; sbi->s_es_stats.es_stats_scan_time = 0; sbi->s_es_stats.es_stats_max_scan_time = 0; err = percpu_counter_init(&sbi->s_es_stats.es_stats_all_cnt, 0, GFP_KERNEL); diff --git a/fs/ext4/extents_status.h b/fs/ext4/extents_status.h index 131a8b7df265..e722dd9bd06e 100644 --- a/fs/ext4/extents_status.h +++ b/fs/ext4/extents_status.h @@ -70,8 +70,8 @@ struct ext4_es_tree { struct ext4_es_stats { unsigned long es_stats_shrunk; - unsigned long es_stats_cache_hits; - unsigned long es_stats_cache_misses; + struct percpu_counter es_stats_cache_hits; + struct percpu_counter es_stats_cache_misses; u64 es_stats_scan_time; u64 es_stats_max_scan_time; struct percpu_counter es_stats_all_cnt; -- 2.7.4