From: Felipe Franciosi Subject: Re: Simple inode question (ext2/3) Date: Tue, 24 Feb 2009 18:12:49 +0000 (GMT) Message-ID: References: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed To: linux-ext4@vger.kernel.org Return-path: Received: from cardinal.doc.ic.ac.uk ([146.169.1.194]:51666 "EHLO cardinal.doc.ic.ac.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759117AbZBXSMv (ORCPT ); Tue, 24 Feb 2009 13:12:51 -0500 Received: from pintail.doc.ic.ac.uk ([146.169.1.119]) by cardinal.doc.ic.ac.uk with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1Lc1lx-0006vh-7g for linux-ext4@vger.kernel.org; Tue, 24 Feb 2009 18:12:49 +0000 In-Reply-To: Sender: linux-ext4-owner@vger.kernel.org List-ID: My bad, I meant "bh->b_data" instead of "bh" (missed it while transcribing). ino = (struct ext3_inode *)(bh->b_data+(k*sizeof(struct ext3_inode))); Still, my questions stand. As a matter of fact, I might as well ask another noobie question: Do I have to "free" (or decrease any counters) after sb_getblk() ? I appreciate any help, Felipe On Tue, 24 Feb 2009, Felipe Franciosi wrote: > Hi there! > > I've been trying to write a kernel module that is capable of locating a specific mounted filesystem (ext2/3) and dump all the inode entries that are in use. I have two questions: > > 1) Is it possible to know if an inode is free just by looking to its (struct ext3_inode) info or do I have to check the inode bitmap for the specific block group? > > 2) Does the following look correct? > > --------8<-------- > > struct vfsmount *mountpoint = ... // fetch this from the proper namespace > struct ext3_sb_info *sbi = EXT3_SB(mountpoint->mnt_sb); > struct ext3_group_desc *egd; > struct ext3_inode *ino; > struct buffer_head *bh; > int i, j, k; > > for (i=0; is_groups_count; i++) { > egd = ext3_get_group_desc(mountpoint->mnt_sb, i, NULL); > for (j=0; j<(sbi->s_inodes_per_group)/(sbi->s_inodes_per_block); j++) { > bh = sb_getblk(mountpoint->mnt_sb, le32_to_cpu(egd->bg_inode_table+j)); > for (k=0; ks_inodes_per_block; k++) { > ino = (struct ext3_inode *)(bh+(k*sizeof(struct ext3_inode))); > // dump contents of ino > // index of ino should be: (i*(sbi->s_inodes_per_group)) + (j*(sbi->s_inodes_per_block)) + k > } > } > } > > --------8<-------- > > Cheers, > Felipe > > -- > To unsubscribe from this list: send the line "unsubscribe linux-ext4" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html >