summaryrefslogtreecommitdiff
path: root/core/include/fs.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2010-02-26 17:15:35 -0800
committerH. Peter Anvin <hpa@zytor.com>2010-02-26 17:15:35 -0800
commit5143a9816e38bc518443392804d1d2ca80a225ab (patch)
tree310893fdd6f3bae410a1e0580e314d388f8054e3 /core/include/fs.h
parent3e89b30bfa7b90d785d8f97ea5638a7b63e12c94 (diff)
downloadsyslinux-5143a9816e38bc518443392804d1d2ca80a225ab.tar.gz
fat: use generic_getfssec(), fix generic_getfssec(), add dprintf
Use generic_getfssec() for the FAT filesystem. Do a bunch of calculations based on clusters rather than on sectors, so we don't have to do the same thing N times for N sectors per cluster. Fix boundary conditions in generic_getfssec(). Adjust iso9660 to match the resulting interface change. Add dprintf's to generic_getfssec() and a few other routines. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'core/include/fs.h')
-rw-r--r--core/include/fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/include/fs.h b/core/include/fs.h
index 1870de79..79499d80 100644
--- a/core/include/fs.h
+++ b/core/include/fs.h
@@ -70,7 +70,7 @@ struct fs_ops {
/* the _dir_ stuff */
struct dirent * (*readdir)(struct file *);
- void (*populate_next_extent)(struct inode *);
+ void (*next_extent)(struct inode *);
};
enum inode_mode {I_FILE, I_DIR, I_SYMLINK};