patch-2.0.21-2.1.0 linux/fs/xiafs/file.c
Next file: linux/include/asm-alpha/fcntl.h
Previous file: linux/fs/xiafs/dir.c
Back to the patch index
Back to the overall index
- Lines: 33
- Date:
Mon Sep 30 11:04:19 1996
- Orig file:
lx2.0/v2.0.21/linux/fs/xiafs/file.c
- Orig date:
Mon May 6 12:26:15 1996
diff -u --recursive --new-file lx2.0/v2.0.21/linux/fs/xiafs/file.c linux/fs/xiafs/file.c
@@ -29,8 +29,8 @@
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX(a,b) (((a)>(b))?(a):(b))
-static int xiafs_file_read(struct inode *, struct file *, char *, int);
-static int xiafs_file_write(struct inode *, struct file *, const char *, int);
+static long xiafs_file_read(struct inode *, struct file *, char *, unsigned long);
+static long xiafs_file_write(struct inode *, struct file *, const char *, unsigned long);
/*
* We have mostly NULL's here: the current defaults are ok for
@@ -69,8 +69,8 @@
NULL /* permission */
};
-static int
-xiafs_file_read(struct inode * inode, struct file * filp, char * buf, int count)
+static long
+xiafs_file_read(struct inode * inode, struct file * filp, char * buf, unsigned long count)
{
int read, left, chars;
int zone_nr, zones, f_zones, offset;
@@ -189,8 +189,8 @@
return read;
}
-static int
-xiafs_file_write(struct inode * inode, struct file * filp, const char * buf, int count)
+static long
+xiafs_file_write(struct inode * inode, struct file * filp, const char * buf, unsigned long count)
{
off_t pos;
int written, c;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov