From nobody Mon Feb 9 04:17:27 2026 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 650AAE7D271 for ; Tue, 26 Sep 2023 09:56:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234308AbjIZJ4v (ORCPT ); Tue, 26 Sep 2023 05:56:51 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37946 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234133AbjIZJ4q (ORCPT ); Tue, 26 Sep 2023 05:56:46 -0400 Received: from relayaws-01.paragon-software.com (relayaws-01.paragon-software.com [35.157.23.187]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E31CBBE; Tue, 26 Sep 2023 02:56:39 -0700 (PDT) Received: from dlg2.mail.paragon-software.com (vdlg-exch-02.paragon-software.com [172.30.1.105]) by relayaws-01.paragon-software.com (Postfix) with ESMTPS id BC5B521BC; Tue, 26 Sep 2023 09:50:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=paragon-software.com; s=mail; t=1695721847; bh=M2FK5gsLtmNBcSaysRw/Y++y3lLBnCCRyRI6dXE7TkE=; h=Date:Subject:From:To:CC:References:In-Reply-To; b=XHUt8KfYdRnPQjP75T3mvqKkT0lKFp8HuLuslcCVkw0uxFL6JlAkifzksCkkJ+n6b fGCHjdm03L0Nyu6du7YjamOBFvCO3Xq2r9hGvMnVe3dtDl+oQDaQN6PD6h+sPHeEtO +153iHrxH+T8LNfgdd1PmaaaOziZj5/1Qrq1wvtA= Received: from [172.16.192.129] (192.168.211.137) by vdlg-exch-02.paragon-software.com (172.30.1.105) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.7; Tue, 26 Sep 2023 12:56:37 +0300 Message-ID: <0b667ec4-8223-407b-9303-94b70dfa5101@paragon-software.com> Date: Tue, 26 Sep 2023 12:56:37 +0300 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: [PATCH 5/8] fs/ntfs3: Add more info into /proc/fs/ntfs3//volinfo Content-Language: en-US From: Konstantin Komarovc To: CC: , References: <7c217d7d-6ee4-4603-b5f1-ebe7b68cf430@paragon-software.com> In-Reply-To: <7c217d7d-6ee4-4603-b5f1-ebe7b68cf430@paragon-software.com> Content-Type: text/plain; charset="utf-8"; format="flowed" Content-Transfer-Encoding: quoted-printable X-Originating-IP: [192.168.211.137] X-ClientProxiedBy: vdlg-exch-02.paragon-software.com (172.30.1.105) To vdlg-exch-02.paragon-software.com (172.30.1.105) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Signed-off-by: Konstantin Komarov --- =C2=A0fs/ntfs3/super.c | 14 +++++++++++--- =C2=A01 file changed, 11 insertions(+), 3 deletions(-) diff --git a/fs/ntfs3/super.c b/fs/ntfs3/super.c index f9a214367113..5811da7e9d45 100644 --- a/fs/ntfs3/super.c +++ b/fs/ntfs3/super.c @@ -453,15 +453,23 @@ static struct proc_dir_entry *proc_info_root; =C2=A0 * ntfs3.1 =C2=A0 * cluster size =C2=A0 * number of clusters + * total number of mft records + * number of used mft records ~=3D number of files + folders + * real state of ntfs "dirty"/"clean" + * current state of ntfs "dirty"/"clean" =C2=A0*/ =C2=A0static int ntfs3_volinfo(struct seq_file *m, void *o) =C2=A0{ =C2=A0=C2=A0=C2=A0 =C2=A0struct super_block *sb =3D m->private; =C2=A0=C2=A0=C2=A0 =C2=A0struct ntfs_sb_info *sbi =3D sb->s_fs_info; -=C2=A0=C2=A0 =C2=A0seq_printf(m, "ntfs%d.%d\n%u\n%zu\n", sbi->volume.major= _ver, -=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 sbi->volume.minor_ver, = sbi->cluster_size, -=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 sbi->used.bitmap.nbits); +=C2=A0=C2=A0 =C2=A0seq_printf(m, "ntfs%d.%d\n%u\n%zu\n\%zu\n%zu\n%s\n%s\n", +=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 sbi->volume.major_ver, = sbi->volume.minor_ver, +=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 sbi->cluster_size, sbi-= >used.bitmap.nbits, +=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 sbi->mft.bitmap.nbits, +=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 sbi->mft.bitmap.nbits -= wnd_zeroes(&sbi->mft.bitmap), +=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 sbi->volume.real_dirty = ? "dirty" : "clean", +=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 =C2=A0=C2=A0=C2=A0 (sbi->volume.flags & VO= LUME_FLAG_DIRTY) ? "dirty" : "clean"); =C2=A0=C2=A0=C2=A0 =C2=A0return 0; =C2=A0} --=20 2.34.1