BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / commit / fdbcccf62b88b2a1490e2c6cfae5a7c1e61e7cf3 / vfs / tmpfs

// Related

Nucleus

Barry SuperBlock Inode list fdbcccf (3 years, 3 months ago)
diff --git a/vfs/tmpfs/super.c b/vfs/tmpfs/super.c
index 4746588..50376b0 100644
--- a/vfs/tmpfs/super.c
+++ b/vfs/tmpfs/super.c
@@ -33,7 +33,6 @@ tmpfs_alloc_inode(SuperBlock *sb)
 	Inode *inode = new(&inodeType);
 	inode->ops = &tmpfsInodeOps;
 	inode->fileOps = &tmpfsFileOps;
-	inode->super = get(sb);
 	inode->nlink = 1;
 	return inode;
 }