patch-2.0.21-2.1.0 linux/fs/umsdos/file.c
Next file: linux/fs/umsdos/symlink.c
Previous file: linux/fs/umsdos/dir.c
Back to the patch index
Back to the overall index
- Lines: 28
- Date:
Mon Sep 30 11:06:07 1996
- Orig file:
lx2.0/v2.0.21/linux/fs/umsdos/file.c
- Orig date:
Tue Feb 20 10:28:13 1996
diff -u --recursive --new-file lx2.0/v2.0.21/linux/fs/umsdos/file.c linux/fs/umsdos/file.c
@@ -24,11 +24,11 @@
/*
Read a file into user space memory
*/
-static int UMSDOS_file_read(
+static long UMSDOS_file_read(
struct inode *inode,
struct file *filp,
char *buf,
- int count)
+ unsigned long count)
{
/* We have to set the access time because msdos don't care */
int ret = fat_file_read(inode,filp,buf,count);
@@ -41,11 +41,11 @@
/*
Write a file from user space memory
*/
-static int UMSDOS_file_write(
+static long UMSDOS_file_write(
struct inode *inode,
struct file *filp,
const char *buf,
- int count)
+ unsigned long count)
{
return fat_file_write(inode,filp,buf,count);
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov