diff options
| author | Hirofumi Ogawa <hirofumi@mail.parknet.co.jp> | 2003-07-25 02:13:01 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2003-07-25 02:13:01 -0700 |
| commit | 3e0e362b54fbdd6410f99d4960f871b92ddb628c (patch) | |
| tree | b3a0ae93987cd56c74a8c230c7efab56016b289f /include | |
| parent | 24fbf4c418fd013491bcd06173f0c5cce91e4e26 (diff) | |
[PATCH] adds fat_get_cluster (7/11)
This adds fat_get_cluster() for generic reads of FAT cluster-chains, and
old fat_get_cluster() is renamed to fat_bmap_cluster().
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/msdos_fs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/msdos_fs.h b/include/linux/msdos_fs.h index 1ce9ba2f57b0..c9e534912cb9 100644 --- a/include/linux/msdos_fs.h +++ b/include/linux/msdos_fs.h @@ -237,6 +237,8 @@ extern void fat_cache_lookup(struct inode *inode, int cluster, int *f_clu, int *d_clu); extern void fat_cache_add(struct inode *inode, int f_clu, int d_clu); extern void fat_cache_inval_inode(struct inode *inode); +extern int fat_get_cluster(struct inode *inode, int cluster, + int *fclus, int *dclus); extern int fat_free(struct inode *inode, int skip); /* fat/dir.c */ |
