summaryrefslogtreecommitdiffstats
path: root/fs/fifo.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1997-01-07 02:33:00 +0000
committer <ralf@linux-mips.org>1997-01-07 02:33:00 +0000
commitbeb116954b9b7f3bb56412b2494b562f02b864b1 (patch)
tree120e997879884e1b9d93b265221b939d2ef1ade1 /fs/fifo.c
parent908d4681a1dc3792ecafbe64265783a86c4cccb6 (diff)
Import of Linux/MIPS 2.1.14
Diffstat (limited to 'fs/fifo.c')
-rw-r--r--fs/fifo.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/fifo.c b/fs/fifo.c
index e9753534a..f4d600e0c 100644
--- a/fs/fifo.c
+++ b/fs/fifo.c
@@ -131,7 +131,7 @@ static struct file_operations def_fifo_fops = {
NULL
};
-static struct inode_operations fifo_inode_operations = {
+struct inode_operations fifo_inode_operations = {
&def_fifo_fops, /* default file operations */
NULL, /* create */
NULL, /* lookup */
@@ -144,6 +144,8 @@ static struct inode_operations fifo_inode_operations = {
NULL, /* rename */
NULL, /* readlink */
NULL, /* follow_link */
+ NULL, /* readpage */
+ NULL, /* writepage */
NULL, /* bmap */
NULL, /* truncate */
NULL /* permission */