summaryrefslogtreecommitdiffstats
path: root/fs/pipe.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1998-09-19 19:15:08 +0000
committerRalf Baechle <ralf@linux-mips.org>1998-09-19 19:15:08 +0000
commit03ba4131783cc9e872f8bb26a03f15bc11f27564 (patch)
tree88db8dba75ae06ba3bad08e42c5e52efc162535c /fs/pipe.c
parent257730f99381dd26e10b832fce4c94cae7ac1176 (diff)
- Merge with Linux 2.1.121.
- Bugfixes.
Diffstat (limited to 'fs/pipe.c')
-rw-r--r--fs/pipe.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/pipe.c b/fs/pipe.c
index 0e3c2ff39..8308eb06c 100644
--- a/fs/pipe.c
+++ b/fs/pipe.c
@@ -304,6 +304,7 @@ struct file_operations connecting_fifo_fops = {
pipe_ioctl,
NULL, /* no mmap on pipes.. surprise */
pipe_read_open,
+ NULL, /* flush */
pipe_read_release,
NULL
};
@@ -317,6 +318,7 @@ struct file_operations read_fifo_fops = {
pipe_ioctl,
NULL, /* no mmap on pipes.. surprise */
pipe_read_open,
+ NULL, /* flush */
pipe_read_release,
NULL
};
@@ -330,6 +332,7 @@ struct file_operations write_fifo_fops = {
pipe_ioctl,
NULL, /* mmap */
pipe_write_open,
+ NULL, /* flush */
pipe_write_release,
NULL
};
@@ -343,6 +346,7 @@ struct file_operations rdwr_fifo_fops = {
pipe_ioctl,
NULL, /* mmap */
pipe_rdwr_open,
+ NULL, /* flush */
pipe_rdwr_release,
NULL
};
@@ -356,6 +360,7 @@ struct file_operations read_pipe_fops = {
pipe_ioctl,
NULL, /* no mmap on pipes.. surprise */
pipe_read_open,
+ NULL, /* flush */
pipe_read_release,
NULL
};
@@ -369,6 +374,7 @@ struct file_operations write_pipe_fops = {
pipe_ioctl,
NULL, /* mmap */
pipe_write_open,
+ NULL, /* flush */
pipe_write_release,
NULL
};
@@ -382,6 +388,7 @@ struct file_operations rdwr_pipe_fops = {
pipe_ioctl,
NULL, /* mmap */
pipe_rdwr_open,
+ NULL, /* flush */
pipe_rdwr_release,
NULL
};