patch-2.3.10 linux/fs/fat/dir.c
Next file: linux/fs/fat/mmap.c
Previous file: linux/fs/ext2/ioctl.c
Back to the patch index
Back to the overall index
- Lines: 45
- Date:
Tue Jul 6 22:19:38 1999
- Orig file:
v2.3.9/linux/fs/fat/dir.c
- Orig date:
Thu May 13 23:18:20 1999
diff -u --recursive --new-file v2.3.9/linux/fs/fat/dir.c linux/fs/fat/dir.c
@@ -295,6 +295,8 @@
char bufname[14];
char *ptname = bufname;
int dotoffset = 0;
+ unsigned long *furrfu = &lpos;
+ unsigned long dummy;
cpos = filp->f_pos;
/* Fake . and .. for the root directory. */
@@ -305,8 +307,11 @@
cpos++;
filp->f_pos++;
}
- if (cpos == 2)
+ if (cpos == 2) {
+ dummy = 2;
+ furrfu = &dummy;
cpos = 0;
+ }
}
if (cpos & (sizeof(struct msdos_dir_entry)-1))
return -ENOENT;
@@ -440,7 +445,7 @@
if (!long_slots||shortnames) {
if (both)
bufname[i] = '\0';
- if (filldir(dirent, bufname, i, lpos, inum) < 0)
+ if (filldir(dirent, bufname, i, *furrfu, inum) < 0)
goto FillFailed;
} else {
char longname[275];
@@ -451,11 +456,12 @@
memcpy(&longname[long_len+1], bufname, i);
long_len += i;
}
- if (filldir(dirent, longname, long_len, lpos, inum) < 0)
+ if (filldir(dirent, longname, long_len, *furrfu, inum) < 0)
goto FillFailed;
}
RecEnd:
+ furrfu = &lpos;
filp->f_pos = cpos;
goto GetNew;
EODir:
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)