| Kernel v2.3.48 /fs/fifo.c |
|---|
 2.3.48
 fs
 fifo.c
diff -u --recursive --new-file v2.3.47/linux/fs/fifo.c linux/fs/fifo.c
--- v2.3.47/linux/fs/fifo.c Thu Feb 10 17:11:17 2000
+++ linux/fs/fifo.c Sat Feb 26 20:33:06 2000
@@ -152,10 +152,6 @@
* is contain the open that then fills in the correct operations
* depending on the access mode of the file...
*/
-static struct file_operations def_fifo_fops = {
+struct file_operations def_fifo_fops = {
open: fifo_open, /* will set read or write pipe_fops */
-};
-
-struct inode_operations fifo_inode_operations = {
- &def_fifo_fops, /* default file operations */
};
|