static struct inode *ext4_alloc_inode(struct super_block *sb) { struct ext4_inode_info *ei; ei = kmem_cache_alloc(ext4_inode_cachep, GFP_NOFS); if (!ei) return NULL; ei->vfs_inode.i_version = 1; spin_lock_init(&
fs/inode.c +1-1 Original file line numberDiff line numberDiff line change @@ -259,7 +259,7 @@ static struct inode *alloc_inode(struct super_block *sb) 259 259 if (ops->alloc_inode) 260 260 inode = ops->alloc_inode(sb); 261 261 else 262 - inode = kmem_cache_alloc...
Code Size: 0kCategory: OS DevelopDevelopment Platform: C/C++inode-alloc.txt:Code Content Current inode allocations in the proc-fs (hex-numbers): 00000000 reserved 00000001-00000fff static entries (goners) 001 root-ino 00001000-00001fff dynamic entries 0001xxxx-7fffxxxx pid-dir entries for pid ...
sectsize=4096 -b size=4096 -d sectsize=4096 /dev/datavg/data mkdir /data uuid=`blkid /dev/mapper/datavg-data '{print $3}'|awk -f"\"" '{print $2}'`; echo "uuid=$uuid /data xfs rw,noatime,nodiratime,noikeep,allocsize=100m,attr2,largeio,inode64,swalloc 0 0" >>/etc/fstab ...