[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Support FIFO in 2.2
This allows init to work on my system.
diff -u -w -r1.8 -r1.9
--- inode-v22.c 2000/07/10 12:31:58 1.8
+++ inode-v22.c 2000/07/12 13:29:49 1.9
@@ -1633,6 +1633,8 @@
inode->i_op = &chrdev_inode_operations;
} else if (S_ISBLK(inode->i_mode)) {
inode->i_op = &blkdev_inode_operations;
+ } else if (S_ISFIFO(inode->i_mode)) {
+ init_fifo(inode);
}
/* If the node is a device of some sort, then the number of the
--
dwmw2