fatent.c (7b3b6e42032e94a6132a85642e95106f5346650e) fatent.c (9e975dae2970d22557662761c8505ce9fd165684)
1/*
2 * Copyright (C) 2004, OGAWA Hirofumi
3 * Released under GPL v2.
4 */
5
6#include <linux/module.h>
7#include <linux/fs.h>
8#include <linux/msdos_fs.h>
9#include <linux/blkdev.h>
1/*
2 * Copyright (C) 2004, OGAWA Hirofumi
3 * Released under GPL v2.
4 */
5
6#include <linux/module.h>
7#include <linux/fs.h>
8#include <linux/msdos_fs.h>
9#include <linux/blkdev.h>
10#include "fat.h"
10
11struct fatent_operations {
12 void (*ent_blocknr)(struct super_block *, int, int *, sector_t *);
13 void (*ent_set_ptr)(struct fat_entry *, int);
14 int (*ent_bread)(struct super_block *, struct fat_entry *,
15 int, sector_t);
16 int (*ent_get)(struct fat_entry *);
17 void (*ent_put)(struct fat_entry *, int);

--- 649 unchanged lines hidden ---
11
12struct fatent_operations {
13 void (*ent_blocknr)(struct super_block *, int, int *, sector_t *);
14 void (*ent_set_ptr)(struct fat_entry *, int);
15 int (*ent_bread)(struct super_block *, struct fat_entry *,
16 int, sector_t);
17 int (*ent_get)(struct fat_entry *);
18 void (*ent_put)(struct fat_entry *, int);

--- 649 unchanged lines hidden ---