Thread: Help with Inode
View Single Post
  #2  
Old November 1st, 2011, 08:46
trasz@ trasz@ is offline
FreeBSD Developer
 
Join Date: Feb 2008
Location: Warszawa, Poland
Posts: 178
Thanks: 7
Thanked 37 Times in 29 Posts
Default

Assuming you really mean inode (i.e. structure describing a file in the filesystem, stored on the disk) and not vnode (structure in memory, representing inode being used) - for UFS, it's defined in sys/ufs/ufs/inode.h. An obvious problem with modifying it would be losing compatibility with unmodified version - your modified code won't be able to mount normal UFS filesystems.

Last edited by DutchDaemon; November 2nd, 2011 at 01:12.
Reply With Quote
The Following User Says Thank You to trasz@ For This Useful Post:
GroupInode (August 13th, 2012)