fat.h (b13bb33eacb7266d66a3adf03adaa0886d091789) fat.h (16fab2015099a937e1a771f2785c5dd3445fe483)
1#ifndef _FAT_H
2#define _FAT_H
3
4#include <linux/buffer_head.h>
5#include <linux/nls.h>
6#include <linux/hash.h>
7#include <linux/ratelimit.h>
8#include <linux/msdos_fs.h>

--- 271 unchanged lines hidden (view full) ---

280 memcpy(dst, src, len * 2);
281#endif
282}
283
284/* fat/cache.c */
285extern void fat_cache_inval_inode(struct inode *inode);
286extern int fat_get_cluster(struct inode *inode, int cluster,
287 int *fclus, int *dclus);
1#ifndef _FAT_H
2#define _FAT_H
3
4#include <linux/buffer_head.h>
5#include <linux/nls.h>
6#include <linux/hash.h>
7#include <linux/ratelimit.h>
8#include <linux/msdos_fs.h>

--- 271 unchanged lines hidden (view full) ---

280 memcpy(dst, src, len * 2);
281#endif
282}
283
284/* fat/cache.c */
285extern void fat_cache_inval_inode(struct inode *inode);
286extern int fat_get_cluster(struct inode *inode, int cluster,
287 int *fclus, int *dclus);
288extern int fat_get_mapped_cluster(struct inode *inode, sector_t sector,
289 sector_t last_block,
290 unsigned long *mapped_blocks, sector_t *bmap);
288extern int fat_bmap(struct inode *inode, sector_t sector, sector_t *phys,
291extern int fat_bmap(struct inode *inode, sector_t sector, sector_t *phys,
289 unsigned long *mapped_blocks, int create);
292 unsigned long *mapped_blocks, int create, bool from_bmap);
290
291/* fat/dir.c */
292extern const struct file_operations fat_dir_operations;
293extern int fat_search_long(struct inode *inode, const unsigned char *name,
294 int name_len, struct fat_slot_info *sinfo);
295extern int fat_dir_empty(struct inode *dir);
296extern int fat_subdirs(struct inode *dir);
297extern int fat_scan(struct inode *dir, const unsigned char *name,

--- 124 unchanged lines hidden ---
293
294/* fat/dir.c */
295extern const struct file_operations fat_dir_operations;
296extern int fat_search_long(struct inode *inode, const unsigned char *name,
297 int name_len, struct fat_slot_info *sinfo);
298extern int fat_dir_empty(struct inode *dir);
299extern int fat_subdirs(struct inode *dir);
300extern int fat_scan(struct inode *dir, const unsigned char *name,

--- 124 unchanged lines hidden ---