summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fs/fat/Makefile2
-rw-r--r--fs/fat/buffer.c97
-rw-r--r--fs/fat/cache.c69
-rw-r--r--fs/fat/cvf.c176
-rw-r--r--fs/fat/dir.c29
-rw-r--r--fs/fat/fatfs_syms.c5
-rw-r--r--fs/fat/file.c41
-rw-r--r--fs/fat/inode.c154
-rw-r--r--fs/fat/misc.c105
-rw-r--r--fs/msdos/namei.c53
-rw-r--r--fs/vfat/namei.c83
-rw-r--r--include/linux/fat_cvf.h47
-rw-r--r--include/linux/msdos_fs.h16
-rw-r--r--include/linux/msdos_fs_sb.h4
14 files changed, 160 insertions, 721 deletions
diff --git a/fs/fat/Makefile b/fs/fat/Makefile
index 56f462bef577..7d64219ff647 100644
--- a/fs/fat/Makefile
+++ b/fs/fat/Makefile
@@ -6,6 +6,6 @@ export-objs := fatfs_syms.o
obj-$(CONFIG_FAT_FS) += fat.o
-fat-objs := buffer.o cache.o dir.o file.o inode.o misc.o cvf.o fatfs_syms.o
+fat-objs := cache.o dir.o file.o inode.o misc.o fatfs_syms.o
include $(TOPDIR)/Rules.make
diff --git a/fs/fat/buffer.c b/fs/fat/buffer.c
deleted file mode 100644
index 38a6fb3f0be4..000000000000
--- a/fs/fat/buffer.c
+++ /dev/null
@@ -1,97 +0,0 @@
-/*
- * linux/fs/fat/buffer.c
- *
- *
- */
-
-#include <linux/slab.h>
-#include <linux/fs.h>
-#include <linux/msdos_fs.h>
-#include <linux/fat_cvf.h>
-#include <linux/buffer_head.h>
-
-struct buffer_head *fat_bread(struct super_block *sb, int block)
-{
- return MSDOS_SB(sb)->cvf_format->cvf_bread(sb,block);
-}
-struct buffer_head *fat_getblk(struct super_block *sb, int block)
-{
- return MSDOS_SB(sb)->cvf_format->cvf_getblk(sb,block);
-}
-void fat_brelse (struct super_block *sb, struct buffer_head *bh)
-{
- if (bh)
- MSDOS_SB(sb)->cvf_format->cvf_brelse(sb,bh);
-}
-void fat_mark_buffer_dirty (
- struct super_block *sb,
- struct buffer_head *bh)
-{
- MSDOS_SB(sb)->cvf_format->cvf_mark_buffer_dirty(sb,bh);
-}
-void fat_set_uptodate (
- struct super_block *sb,
- struct buffer_head *bh,
- int val)
-{
- MSDOS_SB(sb)->cvf_format->cvf_set_uptodate(sb,bh,val);
-}
-int fat_is_uptodate(struct super_block *sb, struct buffer_head *bh)
-{
- return MSDOS_SB(sb)->cvf_format->cvf_is_uptodate(sb,bh);
-}
-void fat_ll_rw_block (
- struct super_block *sb,
- int opr,
- int nbreq,
- struct buffer_head *bh[32])
-{
- MSDOS_SB(sb)->cvf_format->cvf_ll_rw_block(sb,opr,nbreq,bh);
-}
-
-struct buffer_head *default_fat_bread(struct super_block *sb, int block)
-{
- return sb_bread(sb, block);
-}
-
-struct buffer_head *default_fat_getblk(struct super_block *sb, int block)
-{
- return sb_getblk(sb, block);
-}
-
-void default_fat_brelse(struct super_block *sb, struct buffer_head *bh)
-{
- brelse (bh);
-}
-
-void default_fat_mark_buffer_dirty (
- struct super_block *sb,
- struct buffer_head *bh)
-{
- mark_buffer_dirty (bh);
-}
-
-void default_fat_set_uptodate (
- struct super_block *sb,
- struct buffer_head *bh,
- int val)
-{
- if (val)
- set_buffer_uptodate(bh);
- else
- clear_buffer_uptodate(bh);
-}
-
-int default_fat_is_uptodate (struct super_block *sb, struct buffer_head *bh)
-{
- return buffer_uptodate(bh);
-}
-
-void default_fat_ll_rw_block (
- struct super_block *sb,
- int opr,
- int nbreq,
- struct buffer_head *bh[32])
-{
- ll_rw_block(opr,nbreq,bh);
-}
diff --git a/fs/fat/cache.c b/fs/fat/cache.c
index b5792dbb9a9a..2c993bb01a03 100644
--- a/fs/fat/cache.c
+++ b/fs/fat/cache.c
@@ -10,31 +10,11 @@
#include <linux/fs.h>
#include <linux/msdos_fs.h>
-#include <linux/fat_cvf.h>
#include <linux/buffer_head.h>
-#if 0
-# define PRINTK(x) printk x
-#else
-# define PRINTK(x)
-#endif
-
static struct fat_cache *fat_cache,cache[FAT_CACHE];
static spinlock_t fat_cache_lock = SPIN_LOCK_UNLOCKED;
-/* Returns the this'th FAT entry, -1 if it is an end-of-file entry. If
- new_value is != -1, that FAT entry is replaced by it. */
-
-int fat_access(struct super_block *sb,int nr,int new_value)
-{
- return MSDOS_SB(sb)->cvf_format->fat_access(sb,nr,new_value);
-}
-
-int fat_bmap(struct inode *inode,int sector)
-{
- return MSDOS_SB(inode->i_sb)->cvf_format->cvf_bmap(inode,sector);
-}
-
int __fat_access(struct super_block *sb, int nr, int new_value)
{
struct msdos_sb_info *sbi = MSDOS_SB(sb);
@@ -51,17 +31,18 @@ int __fat_access(struct super_block *sb, int nr, int new_value)
last = first+1;
}
b = sbi->fat_start + (first >> sb->s_blocksize_bits);
- if (!(bh = fat_bread(sb, b))) {
- printk("FAT: bread(block %d) in fat_access failed\n", b);
+ if (!(bh = sb_bread(sb, b))) {
+ printk(KERN_ERR "FAT: bread(block %d) in"
+ " fat_access failed\n", b);
return -EIO;
}
if ((first >> sb->s_blocksize_bits) == (last >> sb->s_blocksize_bits)) {
bh2 = bh;
} else {
- if (!(bh2 = fat_bread(sb, b+1))) {
- fat_brelse(sb, bh);
- printk("FAT: bread(block %d) in fat_access failed\n",
- b + 1);
+ if (!(bh2 = sb_bread(sb, b + 1))) {
+ brelse(bh);
+ printk(KERN_ERR "FAT: bread(block %d) in"
+ " fat_access failed\n", b + 1);
return -EIO;
}
}
@@ -99,35 +80,39 @@ int __fat_access(struct super_block *sb, int nr, int new_value)
*p_first = new_value & 0xff;
*p_last = (*p_last & 0xf0) | (new_value >> 8);
}
- fat_mark_buffer_dirty(sb, bh2);
+ mark_buffer_dirty(bh2);
}
- fat_mark_buffer_dirty(sb, bh);
+ mark_buffer_dirty(bh);
for (copy = 1; copy < sbi->fats; copy++) {
b = sbi->fat_start + (first >> sb->s_blocksize_bits)
+ sbi->fat_length * copy;
- if (!(c_bh = fat_bread(sb, b)))
+ if (!(c_bh = sb_bread(sb, b)))
break;
if (bh != bh2) {
- if (!(c_bh2 = fat_bread(sb, b+1))) {
- fat_brelse(sb, c_bh);
+ if (!(c_bh2 = sb_bread(sb, b+1))) {
+ brelse(c_bh);
break;
}
memcpy(c_bh2->b_data, bh2->b_data, sb->s_blocksize);
- fat_mark_buffer_dirty(sb, c_bh2);
- fat_brelse(sb, c_bh2);
+ mark_buffer_dirty(c_bh2);
+ brelse(c_bh2);
}
memcpy(c_bh->b_data, bh->b_data, sb->s_blocksize);
- fat_mark_buffer_dirty(sb, c_bh);
- fat_brelse(sb, c_bh);
+ mark_buffer_dirty(c_bh);
+ brelse(c_bh);
}
}
- fat_brelse(sb, bh);
+ brelse(bh);
if (bh != bh2)
- fat_brelse(sb, bh2);
+ brelse(bh2);
return next;
}
-int default_fat_access(struct super_block *sb, int nr, int new_value)
+/*
+ * Returns the this'th FAT entry, -1 if it is an end-of-file entry. If
+ * new_value is != -1, that FAT entry is replaced by it.
+ */
+int fat_access(struct super_block *sb, int nr, int new_value)
{
int next;
@@ -150,7 +135,7 @@ out:
void fat_cache_init(void)
{
- static int initialized = 0;
+ static int initialized;
int count;
spin_lock(&fat_cache_lock);
@@ -227,8 +212,8 @@ void fat_cache_add(struct inode *inode,int f_clu,int d_clu)
&& walk->start_cluster == first
&& walk->file_cluster == f_clu) {
if (walk->disk_cluster != d_clu) {
- printk("FAT: cache corruption inode=%lu\n",
- inode->i_ino);
+ printk(KERN_ERR "FAT: cache corruption"
+ " (ino %lu)\n", inode->i_ino);
spin_unlock(&fat_cache_lock);
fat_cache_inval_inode(inode);
return;
@@ -317,7 +302,7 @@ static int fat_get_cluster(struct inode *inode, int cluster)
return nr;
}
-int default_fat_bmap(struct inode *inode,int sector)
+int fat_bmap(struct inode *inode, int sector)
{
struct super_block *sb = inode->i_sb;
struct msdos_sb_info *sbi = MSDOS_SB(sb);
diff --git a/fs/fat/cvf.c b/fs/fat/cvf.c
deleted file mode 100644
index 90690a02ff5f..000000000000
--- a/fs/fat/cvf.c
+++ /dev/null
@@ -1,176 +0,0 @@
-/*
- * CVF extensions for fat-based filesystems
- *
- * written 1997,1998 by Frank Gockel <gockel@sent13.uni-duisburg.de>
- *
- * please do not remove the next line, dmsdos needs it for verifying patches
- * CVF-FAT-VERSION-ID: 1.2.0
- *
- */
-
-#include <linux/fs.h>
-#include <linux/msdos_fs.h>
-#include <linux/msdos_fs_sb.h>
-#include <linux/fat_cvf.h>
-#include <linux/config.h>
-#include <linux/buffer_head.h>
-#ifdef CONFIG_KMOD
-#include <linux/kmod.h>
-#endif
-
-#define MAX_CVF_FORMATS 3
-
-struct buffer_head *default_fat_bread(struct super_block *,int);
-struct buffer_head *default_fat_getblk(struct super_block *, int);
-void default_fat_brelse(struct super_block *, struct buffer_head *);
-void default_fat_mark_buffer_dirty (struct super_block *, struct buffer_head *);
-void default_fat_set_uptodate (struct super_block *, struct buffer_head *,int);
-int default_fat_is_uptodate(struct super_block *, struct buffer_head *);
-int default_fat_access(struct super_block *sb,int nr,int new_value);
-void default_fat_ll_rw_block (struct super_block *sb, int opr, int nbreq,
- struct buffer_head *bh[32]);
-int default_fat_bmap(struct inode *inode,int block);
-ssize_t default_fat_file_write(struct file *filp, const char *buf,
- size_t count, loff_t *ppos);
-
-struct cvf_format default_cvf = {
- cvf_version: 0, /* version - who cares? */
- cvf_version_text: "plain",
- flags: 0, /* flags - who cares? */
- cvf_bread: default_fat_bread,
- cvf_getblk: default_fat_getblk,
- cvf_brelse: default_fat_brelse,
- cvf_mark_buffer_dirty: default_fat_mark_buffer_dirty,
- cvf_set_uptodate: default_fat_set_uptodate,
- cvf_is_uptodate: default_fat_is_uptodate,
- cvf_ll_rw_block: default_fat_ll_rw_block,
- fat_access: default_fat_access,
- cvf_bmap: default_fat_bmap,
- cvf_file_read: generic_file_read,
- cvf_file_write: default_fat_file_write,
-};
-
-struct cvf_format *cvf_formats[MAX_CVF_FORMATS];
-int cvf_format_use_count[MAX_CVF_FORMATS];
-
-int register_cvf_format(struct cvf_format*cvf_format)
-{ int i,j;
-
- for(i=0;i<MAX_CVF_FORMATS;++i)
- { if(cvf_formats[i]==NULL)
- { /* free slot found, now check version */
- for(j=0;j<MAX_CVF_FORMATS;++j)
- { if(cvf_formats[j])
- { if(cvf_formats[j]->cvf_version==cvf_format->cvf_version)
- { printk("register_cvf_format: version %d already registered\n",
- cvf_format->cvf_version);
- return -1;
- }
- }
- }
- cvf_formats[i]=cvf_format;
- cvf_format_use_count[i]=0;
- printk("CVF format %s (version id %d) successfully registered.\n",
- cvf_format->cvf_version_text,cvf_format->cvf_version);
- return 0;
- }
- }
-
- printk("register_cvf_format: too many formats\n");
- return -1;
-}
-
-int unregister_cvf_format(struct cvf_format*cvf_format)
-{ int i;
-
- for(i=0;i<MAX_CVF_FORMATS;++i)
- { if(cvf_formats[i])
- { if(cvf_formats[i]->cvf_version==cvf_format->cvf_version)
- { if(cvf_format_use_count[i])
- { printk("unregister_cvf_format: format %d in use, cannot remove!\n",
- cvf_formats[i]->cvf_version);
- return -1;
- }
-
- printk("CVF format %s (version id %d) successfully unregistered.\n",
- cvf_formats[i]->cvf_version_text,cvf_formats[i]->cvf_version);
- cvf_formats[i]=NULL;
- return 0;
- }
- }
- }
-
- printk("unregister_cvf_format: format %d is not registered\n",
- cvf_format->cvf_version);
- return -1;
-}
-
-void dec_cvf_format_use_count_by_version(int version)
-{ int i;
-
- for(i=0;i<MAX_CVF_FORMATS;++i)
- { if(cvf_formats[i])
- { if(cvf_formats[i]->cvf_version==version)
- { --cvf_format_use_count[i];
- if(cvf_format_use_count[i]<0)
- { cvf_format_use_count[i]=0;
- printk(KERN_EMERG "FAT FS/CVF: This is a bug in cvf_version_use_count\n");
- }
- return;
- }
- }
- }
-
- printk("dec_cvf_format_use_count_by_version: version %d not found ???\n",
- version);
-}
-
-int detect_cvf(struct super_block*sb,char*force)
-{ int i;
- int found=0;
- int found_i=-1;
-
- if(force)
- if(strcmp(force,"autoload")==0)
- {
-#ifdef CONFIG_KMOD
- request_module("cvf_autoload");
- force=NULL;
-#else
- printk("cannot autoload CVF modules: kmod support is not compiled into kernel\n");
- return -1;
-#endif
- }
-
-#ifdef CONFIG_KMOD
- if(force)
- if(*force)
- request_module(force);
-#endif
-
- if(force)
- { if(*force)
- { for(i=0;i<MAX_CVF_FORMATS;++i)
- { if(cvf_formats[i])
- { if(!strcmp(cvf_formats[i]->cvf_version_text,force))
- return i;
- }
- }
- printk("CVF format %s unknown (module not loaded?)\n",force);
- return -1;
- }
- }
-
- for(i=0;i<MAX_CVF_FORMATS;++i)
- { if(cvf_formats[i])
- { if(cvf_formats[i]->detect_cvf(sb))
- { ++found;
- found_i=i;
- }
- }
- }
-
- if(found==1)return found_i;
- if(found>1)printk("CVF detection ambiguous, please use cvf_format=xxx option\n");
- return -1;
-}
diff --git a/fs/fat/dir.c b/fs/fat/dir.c
index dc11bcc8a352..36b4bb569aa8 100644
--- a/fs/fat/dir.c
+++ b/fs/fat/dir.c
@@ -22,8 +22,6 @@
#include <asm/uaccess.h>
-#define PRINTK(X)
-
struct file_operations fat_dir_operations = {
read: generic_read_dir,
readdir: fat_readdir,
@@ -219,7 +217,7 @@ parse_record:
unicode = (wchar_t *)
__get_free_page(GFP_KERNEL);
if (!unicode) {
- fat_brelse(sb, bh);
+ brelse(bh);
return -ENOMEM;
}
}
@@ -335,7 +333,7 @@ Found:
*spos = cpos - sizeof(struct msdos_dir_entry);
*lpos = cpos - res*sizeof(struct msdos_dir_entry);
EODir:
- fat_brelse(sb, bh);
+ brelse(bh);
if (unicode) {
free_page((unsigned long) unicode);
}
@@ -417,7 +415,7 @@ GetNew:
__get_free_page(GFP_KERNEL);
if (!unicode) {
filp->f_pos = cpos;
- fat_brelse(sb, bh);
+ brelse(bh);
ret = -ENOMEM;
goto out;
}
@@ -578,7 +576,7 @@ EODir:
filp->f_pos = cpos;
FillFailed:
if (bh)
- fat_brelse(sb, bh);
+ brelse(bh);
if (unicode) {
free_page((unsigned long) unicode);
}
@@ -636,8 +634,6 @@ static int vfat_ioctl_fill(
put_user(0, d1->d_name+len);
put_user(len, &d1->d_reclen);
}
- PRINTK(("FAT d1=%p d2=%p len=%d, name_len=%d\n",
- d1, d2, len, name_len));
return 0;
}
@@ -672,11 +668,6 @@ int fat_dir_ioctl(struct inode * inode, struct file * filp,
vfat_ioctl_fill, 1, 1);
}
default:
- /* forward ioctl to CVF extension */
- if (MSDOS_SB(inode->i_sb)->cvf_format &&
- MSDOS_SB(inode->i_sb)->cvf_format->cvf_dir_ioctl)
- return MSDOS_SB(inode->i_sb)->cvf_format
- ->cvf_dir_ioctl(inode,filp,cmd,arg);
return -EINVAL;
}
@@ -704,9 +695,8 @@ int fat_dir_empty(struct inode *dir)
break;
}
}
- if (bh)
- fat_brelse(dir->i_sb, bh);
+ brelse(bh);
return result;
}
@@ -726,7 +716,7 @@ int fat_add_entries(struct inode *dir,int slots, struct buffer_head **bh,
while (fat_get_entry(dir, &curr, bh, de, ino) > -1) {
/* check the maximum size of directory */
if (curr >= FAT_MAX_DIR_SIZE) {
- fat_brelse(sb, *bh);
+ brelse(*bh);
return -ENOSPC;
}
@@ -743,7 +733,7 @@ int fat_add_entries(struct inode *dir,int slots, struct buffer_head **bh,
new_bh = fat_extend_dir(dir);
if (IS_ERR(new_bh))
return PTR_ERR(new_bh);
- fat_brelse(sb, new_bh);
+ brelse(new_bh);
do {
fat_get_entry(dir, &curr, bh, de, ino);
} while (++row < slots);
@@ -753,7 +743,6 @@ int fat_add_entries(struct inode *dir,int slots, struct buffer_head **bh,
int fat_new_dir(struct inode *dir, struct inode *parent, int is_vfat)
{
- struct super_block *sb = dir->i_sb;
struct buffer_head *bh;
struct msdos_dir_entry *de;
__u16 date, time;
@@ -779,8 +768,8 @@ int fat_new_dir(struct inode *dir, struct inode *parent, int is_vfat)
de[0].starthi = CT_LE_W(MSDOS_I(dir)->i_logstart>>16);
de[1].start = CT_LE_W(MSDOS_I(parent)->i_logstart);
de[1].starthi = CT_LE_W(MSDOS_I(parent)->i_logstart>>16);
- fat_mark_buffer_dirty(sb, bh);
- fat_brelse(sb, bh);
+ mark_buffer_dirty(bh);
+ brelse(bh);
dir->i_atime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
mark_inode_dirty(dir);
diff --git a/fs/fat/fatfs_syms.c b/fs/fat/fatfs_syms.c
index ce21704c6f2d..aba880e20123 100644
--- a/fs/fat/fatfs_syms.c
+++ b/fs/fat/fatfs_syms.c
@@ -10,7 +10,6 @@
#include <linux/mm.h>
#include <linux/msdos_fs.h>
-#include <linux/fat_cvf.h>
EXPORT_SYMBOL(fat_new_dir);
EXPORT_SYMBOL(fat_get_block);
@@ -18,7 +17,6 @@ EXPORT_SYMBOL(fat_clear_inode);
EXPORT_SYMBOL(fat_date_unix2dos);
EXPORT_SYMBOL(fat_delete_inode);
EXPORT_SYMBOL(fat__get_entry);
-EXPORT_SYMBOL(fat_mark_buffer_dirty);
EXPORT_SYMBOL(fat_notify_change);
EXPORT_SYMBOL(fat_put_super);
EXPORT_SYMBOL(fat_attach);
@@ -30,13 +28,10 @@ EXPORT_SYMBOL(fat_readdir);
EXPORT_SYMBOL(fat_scan);
EXPORT_SYMBOL(fat_statfs);
EXPORT_SYMBOL(fat_write_inode);
-EXPORT_SYMBOL(register_cvf_format);
-EXPORT_SYMBOL(unregister_cvf_format);
EXPORT_SYMBOL(fat_dir_ioctl);
EXPORT_SYMBOL(fat_add_entries);
EXPORT_SYMBOL(fat_dir_empty);
EXPORT_SYMBOL(fat_truncate);
-EXPORT_SYMBOL(fat_brelse);
int __init fat_init_inodecache(void);
void __exit fat_destroy_inodecache(void);
diff --git a/fs/fat/file.c b/fs/fat/file.c
index ac7ab9d2241e..24badf43f0bb 100644
--- a/fs/fat/file.c
+++ b/fs/fat/file.c
@@ -8,16 +8,15 @@
#include <linux/time.h>
#include <linux/msdos_fs.h>
-#include <linux/fat_cvf.h>
#include <linux/smp_lock.h>
#include <linux/buffer_head.h>
-#define PRINTK(x)
-#define Printk(x) printk x
+static ssize_t fat_file_write(struct file *filp, const char *buf, size_t count,
+ loff_t *ppos);
struct file_operations fat_file_operations = {
llseek: generic_file_llseek,
- read: fat_file_read,
+ read: generic_file_read,
write: fat_file_write,
mmap: generic_file_mmap,
fsync: file_fsync,
@@ -29,19 +28,8 @@ struct inode_operations fat_file_inode_operations = {
setattr: fat_notify_change,
};
-ssize_t fat_file_read(
- struct file *filp,
- char *buf,
- size_t count,
- loff_t *ppos)
-{
- struct inode *inode = filp->f_dentry->d_inode;
- return MSDOS_SB(inode->i_sb)->cvf_format
- ->cvf_file_read(filp,buf,count,ppos);
-}
-
-
-int fat_get_block(struct inode *inode, sector_t iblock, struct buffer_head *bh_result, int create)
+int fat_get_block(struct inode *inode, sector_t iblock,
+ struct buffer_head *bh_result, int create)
{
struct super_block *sb = inode->i_sb;
unsigned long phys;
@@ -77,23 +65,8 @@ int fat_get_block(struct inode *inode, sector_t iblock, struct buffer_head *bh_r
return 0;
}
-ssize_t fat_file_write(
- struct file *filp,
- const char *buf,
- size_t count,
- loff_t *ppos)
-{
- struct inode *inode = filp->f_dentry->d_inode;
- struct super_block *sb = inode->i_sb;
- return MSDOS_SB(sb)->cvf_format
- ->cvf_file_write(filp,buf,count,ppos);
-}
-
-ssize_t default_fat_file_write(
- struct file *filp,
- const char *buf,
- size_t count,
- loff_t *ppos)
+static ssize_t fat_file_write(struct file *filp, const char *buf, size_t count,
+ loff_t *ppos)
{
struct inode *inode = filp->f_dentry->d_inode;
int retval;
diff --git a/fs/fat/inode.c b/fs/fat/inode.c
index ae4808f74406..25abfc0cf5f1 100644
--- a/fs/fat/inode.c
+++ b/fs/fat/inode.c
@@ -16,28 +16,10 @@
#include <linux/smp_lock.h>
#include <linux/seq_file.h>
#include <linux/msdos_fs.h>
-#include <linux/fat_cvf.h>
#include <linux/pagemap.h>
#include <linux/buffer_head.h>
-
-//#include <asm/uaccess.h>
#include <asm/unaligned.h>
-extern struct cvf_format default_cvf;
-
-/* #define FAT_PARANOIA 1 */
-#define DEBUG_LEVEL 0
-#ifdef FAT_DEBUG
-# define PRINTK(x) printk x
-#else
-# define PRINTK(x)
-#endif
-#if (DEBUG_LEVEL >= 1)
-# define PRINTK1(x) printk x
-#else
-# define PRINTK1(x)
-#endif
-
/*
* New FAT inode stuff. We do the following:
* a) i_ino is constant and has nothing with on-disk location.
@@ -175,10 +157,6 @@ void fat_put_super(struct super_block *sb)
{
struct msdos_sb_info *sbi = MSDOS_SB(sb);
- if (sbi->cvf_format->cvf_version) {
- dec_cvf_format_use_count_by_version(sbi->cvf_format->cvf_version);
- sbi->cvf_format->unmount_cvf(sb);
- }
fat_clusters_flush(sb);
fat_cache_inval_dev(sb);
if (sbi->nls_disk) {
@@ -255,8 +233,6 @@ static int fat_show_options(struct seq_file *m, struct vfsmount *mnt)
}
if (opts->name_check != 'n')
seq_printf(m, ",check=%c", opts->name_check);
- if (opts->conversion != 'b')
- seq_printf(m, ",conv=%c", opts->conversion);
if (opts->quiet)
seq_puts(m, ",quiet");
if (opts->showexec)
@@ -281,8 +257,7 @@ static int fat_show_options(struct seq_file *m, struct vfsmount *mnt)
}
static int parse_options(char *options, int is_vfat, int *debug,
- struct fat_mount_options *opts,
- char *cvf_format, char *cvf_options)
+ struct fat_mount_options *opts)
{
char *this_char, *value, *p;
int ret = 1, val, len;
@@ -299,7 +274,6 @@ static int parse_options(char *options, int is_vfat, int *debug,
else
opts->shortname = 0;
opts->name_check = 'n';
- opts->conversion = 'b';
opts->quiet = opts->showexec = opts->sys_immutable = opts->dotsOK = 0;
opts->utf8 = opts->unicode_xlate = 0;
opts->numtail = 1;
@@ -326,15 +300,8 @@ static int parse_options(char *options, int is_vfat, int *debug,
else ret = 0;
}
else if (!strcmp(this_char,"conv") && value) {
- if (value[0] && !value[1] && strchr("bta",*value))
- opts->conversion = *value;
- else if (!strcmp(value,"binary"))
- opts->conversion = 'b';
- else if (!strcmp(value,"text"))
- opts->conversion = 't';
- else if (!strcmp(value,"auto"))
- opts->conversion = 'a';
- else ret = 0;
+ printk(KERN_INFO "FAT: conv option is obsolete, "
+ "not supported now\n");
}
else if (!strcmp(this_char,"nocase")) {
if (!is_vfat)
@@ -381,7 +348,7 @@ static int parse_options(char *options, int is_vfat, int *debug,
else *debug = 1;
}
else if (!strcmp(this_char,"fat")) {
- printk("FAT: fat option is obsolete, "
+ printk(KERN_INFO "FAT: fat option is obsolete, "
"not supported now\n");
}
else if (!strcmp(this_char,"quiet")) {
@@ -389,7 +356,7 @@ static int parse_options(char *options, int is_vfat, int *debug,
else opts->quiet = 1;
}
else if (!strcmp(this_char,"blocksize")) {
- printk("FAT: blocksize option is obsolete, "
+ printk(KERN_INFO "FAT: blocksize option is obsolete, "
"not supported now\n");
}
else if (!strcmp(this_char,"sys_immutable")) {
@@ -400,16 +367,6 @@ static int parse_options(char *options, int is_vfat, int *debug,
opts->codepage = simple_strtoul(value,&value,0);
if (*value) ret = 0;
}
- else if (!strcmp(this_char,"cvf_format")) {
- if (!value)
- return 0;
- strncpy(cvf_format,value,20);
- }
- else if (!strcmp(this_char,"cvf_options")) {
- if (!value)
- return 0;
- strncpy(cvf_options,value,100);
- }
/* msdos specific */
else if (!is_vfat && !strcmp(this_char,"dots")) {
@@ -455,7 +412,7 @@ static int parse_options(char *options, int is_vfat, int *debug,
if (ret) opts->unicode_xlate = val;
}
else if (is_vfat && !strcmp(this_char,"posix")) {
- printk("FAT: posix option is obsolete, "
+ printk(KERN_INFO "FAT: posix option is obsolete, "
"not supported now\n");
}
else if (is_vfat && !strcmp(this_char,"nonumtail")) {
@@ -480,7 +437,7 @@ static int parse_options(char *options, int is_vfat, int *debug,
else
ret = 0;
} else {
- printk("FAT: Unrecognized mount option %s\n",
+ printk(KERN_ERR "FAT: Unrecognized mount option %s\n",
this_char);
ret = 0;
}
@@ -642,7 +599,6 @@ struct dentry *fat_get_dentry(struct super_block *sb, void *inump)
result->d_op = sb->s_root->d_op;
result->d_vfs_flags |= DCACHE_REFERENCED;
return result;
-
}
int fat_encode_fh(struct dentry *de, __u32 *fh, int *lenp, int connectable)
@@ -692,7 +648,7 @@ struct dentry *fat_get_parent(struct dentry *child)
out:
if(bh)
- fat_brelse(child->d_sb, bh);
+ brelse(bh);
unlock_kernel();
if (res)
return ERR_PTR(res);
@@ -780,9 +736,6 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
unsigned char media;
long error;
char buf[50];
- int i;
- char cvf_format[21];
- char cvf_options[101];
sbi = kmalloc(sizeof(struct msdos_sb_info), GFP_KERNEL);
if (!sbi)
@@ -790,19 +743,13 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
sb->s_fs_info = sbi;
memset(sbi, 0, sizeof(struct msdos_sb_info));
- cvf_format[0] = '\0';
- cvf_options[0] = '\0';
- sbi->private_data = NULL;
-
sb->s_magic = MSDOS_SUPER_MAGIC;
sb->s_op = &fat_sops;
sb->s_export_op = &fat_export_ops;
sbi->dir_ops = fs_dir_inode_ops;
- sbi->cvf_format = &default_cvf;
error = -EINVAL;
- if (!parse_options((char *)data, isvfat, &debug, &sbi->options,
- cvf_format, cvf_options))
+ if (!parse_options(data, isvfat, &debug, &sbi->options))
goto out_fail;
fat_cache_init();
@@ -813,39 +760,40 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
sb_min_blocksize(sb, 512);
bh = sb_bread(sb, 0);
if (bh == NULL) {
- printk("FAT: unable to read boot sector\n");
+ printk(KERN_ERR "FAT: unable to read boot sector\n");
goto out_fail;
}
b = (struct fat_boot_sector *) bh->b_data;
if (!b->reserved) {
if (!silent)
- printk("FAT: bogus number of reserved sectors\n");
+ printk(KERN_ERR "FAT: bogus number of reserved sectors\n");
brelse(bh);
goto out_invalid;
}
if (!b->fats) {
if (!silent)
- printk("FAT: bogus number of FAT structure\n");
+ printk(KERN_ERR "FAT: bogus number of FAT structure\n");
brelse(bh);
goto out_invalid;
}
if (!b->secs_track) {
if (!silent)
- printk("FAT: bogus sectors-per-track value\n");
+ printk(KERN_ERR "FAT: bogus sectors-per-track value\n");
brelse(bh);
goto out_invalid;
}
if (!b->heads) {
if (!silent)
- printk("FAT: bogus number-of-heads value\n");
+ printk(KERN_ERR "FAT: bogus number-of-heads value\n");
brelse(bh);
goto out_invalid;
}
media = b->media;
if (!FAT_VALID_MEDIA(media)) {
if (!silent)
- printk("FAT: invalid media value (0x%02x)\n", media);
+ printk(KERN_ERR "FAT: invalid media value (0x%02x)\n",
+ media);
brelse(bh);
goto out_invalid;
}
@@ -856,7 +804,7 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
|| (logical_sector_size < 512)
|| (PAGE_CACHE_SIZE < logical_sector_size)) {
if (!silent)
- printk("FAT: bogus logical sector size %d\n",
+ printk(KERN_ERR "FAT: bogus logical sector size %d\n",
logical_sector_size);
brelse(bh);
goto out_invalid;
@@ -865,14 +813,14 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
if (!sbi->cluster_size
|| (sbi->cluster_size & (sbi->cluster_size - 1))) {
if (!silent)
- printk("FAT: bogus cluster size %d\n",
+ printk(KERN_ERR "FAT: bogus cluster size %d\n",
sbi->cluster_size);
brelse(bh);
goto out_invalid;
}
if (logical_sector_size < sb->s_blocksize) {
- printk("FAT: logical sector size too small for device"
+ printk(KERN_ERR "FAT: logical sector size too small for device"
" (logical sector size = %d)\n", logical_sector_size);
brelse(bh);
goto out_fail;
@@ -881,13 +829,13 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
brelse(bh);
if (!sb_set_blocksize(sb, logical_sector_size)) {
- printk("FAT: unable to set blocksize %d\n",
+ printk(KERN_ERR "FAT: unable to set blocksize %d\n",
logical_sector_size);
goto out_fail;
}
bh = sb_bread(sb, 0);
if (bh == NULL) {
- printk("FAT: unable to read boot sector"
+ printk(KERN_ERR "FAT: unable to read boot sector"
" (logical sector size = %lu)\n",
sb->s_blocksize);
goto out_fail;
@@ -922,7 +870,7 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
fsinfo_bh = sb_bread(sb, sbi->fsinfo_sector);
if (fsinfo_bh == NULL) {
- printk("FAT: bread failed, FSINFO block"
+ printk(KERN_ERR "FAT: bread failed, FSINFO block"
" (sector = %lu)\n", sbi->fsinfo_sector);
brelse(bh);
goto out_fail;
@@ -930,7 +878,8 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
fsinfo = (struct fat_boot_fsinfo *)fsinfo_bh->b_data;
if (!IS_FSINFO(fsinfo)) {
- printk("FAT: Did not find valid FSINFO signature.\n"
+ printk(KERN_WARNING
+ "FAT: Did not find valid FSINFO signature.\n"
" Found signature1 0x%08x signature2 0x%08x"
" (sector = %lu)\n",
CF_LE_L(fsinfo->signature1),
@@ -950,7 +899,7 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
sbi->dir_entries =
CF_LE_W(get_unaligned((unsigned short *)&b->dir_entries));
if (sbi->dir_entries & (sbi->dir_per_block - 1)) {
- printk("FAT: bogus directroy-entries per block\n");
+ printk(KERN_ERR "FAT: bogus directroy-entries per block\n");
brelse(bh);
goto out_invalid;
}
@@ -981,7 +930,7 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
}
if (FAT_FIRST_ENT(sb, media) != first) {
if (!silent) {
- printk("FAT: invalid first entry of FAT "
+ printk(KERN_ERR "FAT: invalid first entry of FAT "
"(0x%x != 0x%x)\n",
FAT_FIRST_ENT(sb, media), first);
}
@@ -989,22 +938,13 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
}
error = -EINVAL;
- if (!strcmp(cvf_format, "none"))
- i = -1;
- else
- i = detect_cvf(sb, cvf_format);
- if (i >= 0) {
- if (cvf_formats[i]->mount_cvf(sb, cvf_options))
- goto out_fail;
- }
-
cp = sbi->options.codepage ? sbi->options.codepage : 437;
sprintf(buf, "cp%d", cp);
sbi->nls_disk = load_nls(buf);
- if (! sbi->nls_disk) {
+ if (!sbi->nls_disk) {
/* Fail only if explicit charset specified */
if (sbi->options.codepage != 0) {
- printk("FAT: codepage %s not found\n", buf);
+ printk(KERN_ERR "FAT: codepage %s not found\n", buf);
goto out_fail;
}
sbi->options.codepage = 0; /* already 0?? */
@@ -1016,7 +956,8 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
if (sbi->options.iocharset != NULL) {
sbi->nls_io = load_nls(sbi->options.iocharset);
if (!sbi->nls_io) {
- printk("FAT: IO charset %s not found\n",
+ printk(KERN_ERR
+ "FAT: IO charset %s not found\n",
sbi->options.iocharset);
goto out_fail;
}
@@ -1037,13 +978,10 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
insert_inode_hash(root_inode);
sb->s_root = d_alloc_root(root_inode);
if (!sb->s_root) {
- printk("FAT: get root inode failed\n");
+ printk(KERN_ERR "FAT: get root inode failed\n");
goto out_fail;
}
- if(i >= 0) {
- sbi->cvf_format = cvf_formats[i];
- ++cvf_format_use_count[i];
- }
+
return 0;
out_invalid:
@@ -1061,12 +999,8 @@ out_fail:
unload_nls(sbi->nls_disk);
if (sbi->options.iocharset)
kfree(sbi->options.iocharset);
- if (sbi->private_data)
- kfree(sbi->private_data);
- sbi->private_data = NULL;
sb->s_fs_info = NULL;
kfree(sbi);
-
return error;
}
@@ -1074,11 +1008,6 @@ int fat_statfs(struct super_block *sb,struct statfs *buf)
{
int free,nr;
- if (MSDOS_SB(sb)->cvf_format &&
- MSDOS_SB(sb)->cvf_format->cvf_statfs)
- return MSDOS_SB(sb)->cvf_format->cvf_statfs(sb,buf,
- sizeof(struct statfs));
-
lock_fat(sb);
if (MSDOS_SB(sb)->free_clusters != -1)
free = MSDOS_SB(sb)->free_clusters;
@@ -1182,13 +1111,6 @@ static int fat_fill_inode(struct inode *inode, struct msdos_dir_entry *de)
MSDOS_I(inode)->mmu_private = inode->i_size;
inode->i_nlink = fat_subdirs(inode);
- /* includes .., compensating for "self" */
-#ifdef DEBUG
- if (!inode->i_nlink) {
- printk("directory %lu: i_nlink == 0\n",inode->i_ino);
- inode->i_nlink = 1;
- }
-#endif
} else { /* not a directory */
inode->i_generation |= 1;
inode->i_mode = MSDOS_MKMODE(de->attr,
@@ -1240,16 +1162,16 @@ retry:
return;
}
lock_kernel();
- if (!(bh = fat_bread(sb, i_pos >> MSDOS_SB(sb)->dir_per_block_bits))) {
- printk("dev = %s, ino = %d\n", sb->s_id, i_pos);
- fat_fs_panic(sb, "msdos_write_inode: unable to read i-node block");
+ if (!(bh = sb_bread(sb, i_pos >> MSDOS_SB(sb)->dir_per_block_bits))) {
+ fat_fs_panic(sb, "unable to read i-node block (ino %lu)",
+ i_pos);
unlock_kernel();
return;
}
spin_lock(&fat_inode_lock);
if (i_pos != MSDOS_I(inode)->i_location) {
spin_unlock(&fat_inode_lock);
- fat_brelse(sb, bh);
+ brelse(bh);
unlock_kernel();
goto retry;
}
@@ -1278,8 +1200,8 @@ retry:
raw_entry->cdate = CT_LE_W(raw_entry->cdate);
}
spin_unlock(&fat_inode_lock);
- fat_mark_buffer_dirty(sb, bh);
- fat_brelse(sb, bh);
+ mark_buffer_dirty(bh);
+ brelse(bh);
unlock_kernel();
}
diff --git a/fs/fat/misc.c b/fs/fat/misc.c
index c26e98b13f2b..f7043d09f086 100644
--- a/fs/fat/misc.c
+++ b/fs/fat/misc.c
@@ -10,25 +10,6 @@
#include <linux/msdos_fs.h>
#include <linux/buffer_head.h>
-#if 0
-# define PRINTK(x) printk x
-#else
-# define PRINTK(x)
-#endif
-#define Printk(x) printk x
-
-/* Well-known binary file extensions - of course there are many more */
-
-static char ascii_extensions[] =
- "TXT" "ME " "HTM" "1ST" "LOG" " " /* text files */
- "C " "H " "CPP" "LIS" "PAS" "FOR" /* programming languages */
- "F " "MAK" "INC" "BAS" /* programming languages */
- "BAT" "SH " /* program code :) */
- "INI" /* config files */
- "PBM" "PGM" "DXF" /* graphics */
- "TEX"; /* TeX */
-
-
/*
* fat_fs_panic reports a severe file system problem and sets the file system
* read-only. The file system can be made writable again by remounting it.
@@ -49,36 +30,10 @@ void fat_fs_panic(struct super_block *s, const char *fmt, ...)
if (not_ro)
s->s_flags |= MS_RDONLY;
- printk("FAT: Filesystem panic (dev %s)\n"
+ printk(KERN_ERR "FAT: Filesystem panic (dev %s)\n"
" %s\n", s->s_id, panic_msg);
if (not_ro)
- printk(" File system has been set read-only\n");
-}
-
-
-/*
- * fat_is_binary selects optional text conversion based on the conversion mode
- * and the extension part of the file name.
- */
-
-int fat_is_binary(char conversion,char *extension)
-{
- char *walk;
-
- switch (conversion) {
- case 'b':
- return 1;
- case 't':
- return 0;
- case 'a':
- for (walk = ascii_extensions; *walk; walk += 3)
- if (!strncmp(extension,walk,3)) return 0;
- return 1; /* default binary conversion */
- default:
- printk("Invalid conversion mode - defaulting to "
- "binary.\n");
- return 1;
- }
+ printk(KERN_ERR " File system has been set read-only\n");
}
void lock_fat(struct super_block *sb)
@@ -103,25 +58,25 @@ void fat_clusters_flush(struct super_block *sb)
if (MSDOS_SB(sb)->free_clusters == -1)
return;
- bh = fat_bread(sb, MSDOS_SB(sb)->fsinfo_sector);
+ bh = sb_bread(sb, MSDOS_SB(sb)->fsinfo_sector);
if (bh == NULL) {
- printk("FAT bread failed in fat_clusters_flush\n");
+ printk(KERN_ERR "FAT bread failed in fat_clusters_flush\n");
return;
}
fsinfo = (struct fat_boot_fsinfo *)bh->b_data;
/* Sanity check */
if (!IS_FSINFO(fsinfo)) {
- printk("FAT: Did not find valid FSINFO signature.\n"
+ printk(KERN_ERR "FAT: Did not find valid FSINFO signature.\n"
" Found signature1 0x%08x signature2 0x%08x"
" (sector = %lu)\n",
CF_LE_L(fsinfo->signature1), CF_LE_L(fsinfo->signature2),
MSDOS_SB(sb)->fsinfo_sector);
} else {
fsinfo->free_clusters = CF_LE_L(MSDOS_SB(sb)->free_clusters);
- fat_mark_buffer_dirty(sb, bh);
+ mark_buffer_dirty(bh);
}
- fat_brelse(sb, bh);
+ brelse(bh);
}
/*
@@ -205,7 +160,7 @@ int fat_add_cluster(struct inode *inode)
mark_inode_dirty(inode);
}
if (file_cluster != (inode->i_blocks >> (cluster_bits - 9))) {
- printk ("file_cluster badly computed!!! %d <> %ld\n",
+ printk (KERN_ERR "file_cluster badly computed!!! %d <> %ld\n",
file_cluster, inode->i_blocks >> (cluster_bits - 9));
fat_cache_inval_inode(inode);
}
@@ -233,27 +188,19 @@ struct buffer_head *fat_extend_dir(struct inode *inode)
sector = MSDOS_SB(sb)->data_start + (nr - 2) * cluster_size;
last_sector = sector + cluster_size;
- if (MSDOS_SB(sb)->cvf_format
- && MSDOS_SB(sb)->cvf_format->zero_out_cluster) {
- res = ERR_PTR(-EIO);
- MSDOS_SB(sb)->cvf_format->zero_out_cluster(inode, nr);
- } else {
- for ( ; sector < last_sector; sector++) {
- if (!(bh = fat_getblk(sb, sector)))
- printk("FAT: fat_getblk() failed\n");
- else {
- memset(bh->b_data, 0, sb->s_blocksize);
- fat_set_uptodate(sb, bh, 1);
- fat_mark_buffer_dirty(sb, bh);
- if (!res)
- res = bh;
- else
- fat_brelse(sb, bh);
- }
+ for ( ; sector < last_sector; sector++) {
+ if ((bh = sb_getblk(sb, sector))) {
+ memset(bh->b_data, 0, sb->s_blocksize);
+ set_buffer_uptodate(bh);
+ mark_buffer_dirty(bh);
+ if (!res)
+ res = bh;
+ else
+ brelse(bh);
}
- if (res == NULL)
- res = ERR_PTR(-EIO);
}
+ if (res == NULL)
+ res = ERR_PTR(-EIO);
if (inode->i_size & (sb->s_blocksize - 1)) {
fat_fs_panic(sb, "Odd directory size");
inode->i_size = (inode->i_size + sb->s_blocksize)
@@ -261,7 +208,6 @@ struct buffer_head *fat_extend_dir(struct inode *inode)
}
inode->i_size += 1 << MSDOS_SB(sb)->cluster_bits;
MSDOS_I(inode)->mmu_private += 1 << MSDOS_SB(sb)->cluster_bits;
- mark_inode_dirty(inode);
return res;
}
@@ -347,7 +293,7 @@ int fat__get_entry(struct inode *dir, loff_t *pos,struct buffer_head **bh,
next:
offset = *pos;
if (*bh)
- fat_brelse(sb, *bh);
+ brelse(*bh);
*bh = NULL;
iblock = *pos >> sb->s_blocksize_bits;
@@ -355,9 +301,10 @@ next:
if (sector <= 0)
return -1; /* beyond EOF or error */
- *bh = fat_bread(sb, sector);
+ *bh = sb_bread(sb, sector);
if (*bh == NULL) {
- printk("FAT: Directory bread(block %d) failed\n", sector);
+ printk(KERN_ERR "FAT: Directory bread(block %d) failed\n",
+ sector);
/* skip this block */
*pos = (iblock + 1) << sb->s_blocksize_bits;
goto next;
@@ -430,7 +377,7 @@ static int raw_scan_sector(struct super_block *sb,int sector,const char *name,
struct msdos_dir_entry *data;
int entry,start,done;
- if (!(bh = fat_bread(sb,sector)))
+ if (!(bh = sb_bread(sb,sector)))
return -EIO;
data = (struct msdos_dir_entry *) bh->b_data;
for (entry = 0; entry < MSDOS_SB(sb)->dir_per_block; entry++) {
@@ -452,7 +399,7 @@ static int raw_scan_sector(struct super_block *sb,int sector,const char *name,
start |= (CF_LE_W(data[entry].starthi) << 16);
}
if (!res_bh)
- fat_brelse(sb, bh);
+ brelse(bh);
else {
*res_bh = bh;
*res_de = &data[entry];
@@ -460,7 +407,7 @@ static int raw_scan_sector(struct super_block *sb,int sector,const char *name,
return start;
}
}
- fat_brelse(sb, bh);
+ brelse(bh);
return -ENOENT;
}
diff --git a/fs/msdos/namei.c b/fs/msdos/namei.c
index a35b048ea2c5..50bf8ca4fc45 100644
--- a/fs/msdos/namei.c
+++ b/fs/msdos/namei.c
@@ -7,17 +7,13 @@
*/
#include <linux/module.h>
-
#include <linux/time.h>
#include <linux/buffer_head.h>
#include <linux/msdos_fs.h>
#include <linux/smp_lock.h>
-#define MSDOS_DEBUG 0
-#define PRINTK(x)
/* MS-DOS "device special files" */
-
static const char *reserved_names[] = {
"CON ","PRN ","NUL ","AUX ",
"LPT1 ","LPT2 ","LPT3 ","LPT4 ",
@@ -26,7 +22,6 @@ static const char *reserved_names[] = {
};
/* Characters that are undesirable in an MS-DOS file name */
-
static char bad_chars[] = "*?<>|\"";
static char bad_if_strict_pc[] = "+=,; ";
static char bad_if_strict_atari[] = " "; /* GEMDOS is less restrictive */
@@ -206,8 +201,6 @@ struct dentry *msdos_lookup(struct inode *dir,struct dentry *dentry)
struct buffer_head *bh = NULL;
int ino,res;
- PRINTK (("msdos_lookup\n"));
-
dentry->d_op = &msdos_dentry_operations;
lock_kernel();
@@ -227,8 +220,7 @@ add:
if (dentry)
dentry->d_op = &msdos_dentry_operations;
out:
- if (bh)
- fat_brelse(sb, bh);
+ brelse(bh);
unlock_kernel();
if (!res)
return dentry;
@@ -242,11 +234,12 @@ static int msdos_add_entry(struct inode *dir, const char *name,
int *ino,
int is_dir, int is_hid)
{
- struct super_block *sb = dir->i_sb;
int res;
- if ((res = fat_add_entries(dir, 1, bh, de, ino))<0)
+ res = fat_add_entries(dir, 1, bh, de, ino);
+ if (res < 0)
return res;
+
/*
* XXX all times should be set by caller upon successful completion.
*/
@@ -260,7 +253,7 @@ static int msdos_add_entry(struct inode *dir, const char *name,
(*de)->starthi = 0;
fat_date_unix2dos(dir->i_mtime,&(*de)->time,&(*de)->date);
(*de)->size = 0;
- fat_mark_buffer_dirty(sb, *bh);
+ mark_buffer_dirty(*bh);
return 0;
}
@@ -288,7 +281,7 @@ int msdos_create(struct inode *dir,struct dentry *dentry,int mode)
is_hid = (dentry->d_name.name[0]=='.') && (msdos_name[0]!='.');
/* Have to do it due to foo vs. .foo conflicts */
if (fat_scan(dir,msdos_name,&bh,&de,&ino) >= 0) {
- fat_brelse(sb, bh);
+ brelse(bh);
unlock_kernel();
return -EINVAL;
}
@@ -299,7 +292,7 @@ int msdos_create(struct inode *dir,struct dentry *dentry,int mode)
return res;
}
inode = fat_build_inode(dir->i_sb, de, ino, &res);
- fat_brelse(sb, bh);
+ brelse(bh);
if (!inode) {
unlock_kernel();
return res;
@@ -314,7 +307,6 @@ int msdos_create(struct inode *dir,struct dentry *dentry,int mode)
/***** Remove a directory */
int msdos_rmdir(struct inode *dir, struct dentry *dentry)
{
- struct super_block *sb = dir->i_sb;
struct inode *inode = dentry->d_inode;
int res,ino;
struct buffer_head *bh;
@@ -335,7 +327,7 @@ int msdos_rmdir(struct inode *dir, struct dentry *dentry)
goto rmdir_done;
de->name[0] = DELETED_FLAG;
- fat_mark_buffer_dirty(sb, bh);
+ mark_buffer_dirty(bh);
fat_detach(inode);
inode->i_nlink = 0;
inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
@@ -345,7 +337,7 @@ int msdos_rmdir(struct inode *dir, struct dentry *dentry)
res = 0;
rmdir_done:
- fat_brelse(sb, bh);
+ brelse(bh);
unlock_kernel();
return res;
}
@@ -378,7 +370,7 @@ int msdos_mkdir(struct inode *dir,struct dentry *dentry,int mode)
goto out_unlock;
inode = fat_build_inode(dir->i_sb, de, ino, &res);
if (!inode) {
- fat_brelse(sb, bh);
+ brelse(bh);
goto out_unlock;
}
res = 0;
@@ -390,7 +382,7 @@ int msdos_mkdir(struct inode *dir,struct dentry *dentry,int mode)
if (res)
goto mkdir_error;
- fat_brelse(sb, bh);
+ brelse(bh);
d_instantiate(dentry, inode);
res = 0;
@@ -406,14 +398,14 @@ mkdir_error:
mark_inode_dirty(inode);
mark_inode_dirty(dir);
de->name[0] = DELETED_FLAG;
- fat_mark_buffer_dirty(sb, bh);
- fat_brelse(sb, bh);
+ mark_buffer_dirty(bh);
+ brelse(bh);
fat_detach(inode);
iput(inode);
goto out_unlock;
out_exist:
- fat_brelse(sb, bh);
+ brelse(bh);
res = -EINVAL;
goto out_unlock;
}
@@ -421,7 +413,6 @@ out_exist:
/***** Unlink a file */
int msdos_unlink( struct inode *dir, struct dentry *dentry)
{
- struct super_block *sb = dir->i_sb;
struct inode *inode = dentry->d_inode;
int res,ino;
struct buffer_head *bh;
@@ -435,9 +426,9 @@ int msdos_unlink( struct inode *dir, struct dentry *dentry)
goto unlink_done;
de->name[0] = DELETED_FLAG;
- fat_mark_buffer_dirty(sb, bh);
+ mark_buffer_dirty(bh);
fat_detach(inode);
- fat_brelse(sb, bh);
+ brelse(bh);
inode->i_nlink = 0;
inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
mark_inode_dirty(inode);
@@ -454,7 +445,6 @@ static int do_msdos_rename(struct inode *old_dir, char *old_name,
struct buffer_head *old_bh,
struct msdos_dir_entry *old_de, int old_ino, int is_hid)
{
- struct super_block *sb = old_dir->i_sb;
struct buffer_head *new_bh=NULL,*dotdot_bh=NULL;
struct msdos_dir_entry *new_de,*dotdot_de;
struct inode *old_inode,*new_inode;
@@ -497,7 +487,7 @@ static int do_msdos_rename(struct inode *old_dir, char *old_name,
if (new_inode)
fat_detach(new_inode);
old_de->name[0] = DELETED_FLAG;
- fat_mark_buffer_dirty(sb, old_bh);
+ mark_buffer_dirty(old_bh);
fat_detach(old_inode);
fat_attach(old_inode, new_ino);
if (is_hid)
@@ -516,7 +506,7 @@ static int do_msdos_rename(struct inode *old_dir, char *old_name,
if (dotdot_bh) {
dotdot_de->start = CT_LE_W(MSDOS_I(new_dir)->i_logstart);
dotdot_de->starthi = CT_LE_W((MSDOS_I(new_dir)->i_logstart) >> 16);
- fat_mark_buffer_dirty(sb, dotdot_bh);
+ mark_buffer_dirty(dotdot_bh);
old_dir->i_nlink--;
mark_inode_dirty(old_dir);
if (new_inode) {
@@ -529,8 +519,8 @@ static int do_msdos_rename(struct inode *old_dir, char *old_name,
}
error = 0;
out:
- fat_brelse(sb, new_bh);
- fat_brelse(sb, dotdot_bh);
+ brelse(new_bh);
+ brelse(dotdot_bh);
return error;
degenerate_case:
@@ -552,7 +542,6 @@ degenerate_case:
int msdos_rename(struct inode *old_dir,struct dentry *old_dentry,
struct inode *new_dir,struct dentry *new_dentry)
{
- struct super_block *sb = old_dir->i_sb;
struct buffer_head *old_bh;
struct msdos_dir_entry *old_de;
int old_ino, error;
@@ -580,7 +569,7 @@ int msdos_rename(struct inode *old_dir,struct dentry *old_dentry,
error = do_msdos_rename(old_dir, old_msdos_name, old_dentry,
new_dir, new_msdos_name, new_dentry,
old_bh, old_de, (ino_t)old_ino, is_hid);
- fat_brelse(sb, old_bh);
+ brelse(old_bh);
rename_done:
unlock_kernel();
diff --git a/fs/vfat/namei.c b/fs/vfat/namei.c
index 81d3de10937b..43b0ba10d3ff 100644
--- a/fs/vfat/namei.c
+++ b/fs/vfat/namei.c
@@ -319,9 +319,9 @@ static int vfat_find_form(struct inode *dir,char *name)
struct buffer_head *bh = NULL;
int ino,res;
- res=fat_scan(dir,name,&bh,&de,&ino);
- fat_brelse(dir->i_sb, bh);
- if (res<0)
+ res = fat_scan(dir,name,&bh,&de,&ino);
+ brelse(bh);
+ if (res < 0)
return -ENOENT;
return 0;
}
@@ -690,42 +690,39 @@ xlate_to_uni(const char *name, int len, char *outname, int *longlen, int *outlen
return 0;
}
-static int
-vfat_fill_slots(struct inode *dir, struct msdos_dir_slot *ds, const char *name,
- int len, int *slots, int is_dir, int uni_xlate)
+static int vfat_build_slots(struct inode *dir, const char *name, int len,
+ struct msdos_dir_slot *ds, int *slots, int is_dir)
{
- struct nls_table *nls_io, *nls_disk;
- wchar_t *uname;
+ struct msdos_sb_info *sbi = MSDOS_SB(dir->i_sb);
+ struct fat_mount_options *opts = &sbi->options;
struct msdos_dir_slot *ps;
struct msdos_dir_entry *de;
unsigned long page;
unsigned char cksum, lcase;
- char *uniname, msdos_name[MSDOS_NAME];
- int res, utf8, slot, ulen, unilen, i;
+ char msdos_name[MSDOS_NAME];
+ wchar_t *uname;
+ int res, slot, ulen, usize, i;
loff_t offset;
*slots = 0;
- utf8 = MSDOS_SB(dir->i_sb)->options.utf8;
- nls_io = MSDOS_SB(dir->i_sb)->nls_io;
- nls_disk = MSDOS_SB(dir->i_sb)->nls_disk;
+ res = vfat_valid_longname(name, len, opts->unicode_xlate);
+ if (res < 0)
+ return res;
- if (name[len-1] == '.')
- len--;
if(!(page = __get_free_page(GFP_KERNEL)))
return -ENOMEM;
- uniname = (char *) page;
- res = xlate_to_uni(name, len, uniname, &ulen, &unilen, uni_xlate,
- utf8, nls_io);
+ uname = (wchar_t *)page;
+ res = xlate_to_uni(name, len, (char *)uname, &ulen, &usize,
+ opts->unicode_xlate, opts->utf8, sbi->nls_io);
if (res < 0)
goto out_free;
- uname = (wchar_t *) page;
res = vfat_is_used_badchars(uname, ulen);
if (res < 0)
goto out_free;
- res = vfat_create_shortname(dir, nls_disk, uname, ulen,
+ res = vfat_create_shortname(dir, sbi->nls_disk, uname, ulen,
msdos_name, &lcase);
if (res < 0)
goto out_free;
@@ -736,7 +733,7 @@ vfat_fill_slots(struct inode *dir, struct msdos_dir_slot *ds, const char *name,
}
/* build the entry of long file name */
- *slots = unilen / 13;
+ *slots = usize / 13;
for (cksum = i = 0; i < 11; i++) {
cksum = (((cksum&1)<<7)|((cksum&0xfe)>>1)) + msdos_name[i];
}
@@ -774,26 +771,10 @@ out_free:
return res;
}
-/* We can't get "." or ".." here - VFS takes care of those cases */
-
-static int vfat_build_slots(struct inode *dir, const char *name, int len,
- struct msdos_dir_slot *ds, int *slots, int is_dir)
-{
- int res, xlate;
-
- xlate = MSDOS_SB(dir->i_sb)->options.unicode_xlate;
- res = vfat_valid_longname(name, len, xlate);
- if (res < 0)
- return res;
-
- return vfat_fill_slots(dir, ds, name, len, slots, is_dir, xlate);
-}
-
static int vfat_add_entry(struct inode *dir,struct qstr* qname,
int is_dir, struct vfat_slot_info *sinfo_out,
struct buffer_head **bh, struct msdos_dir_entry **de)
{
- struct super_block *sb = dir->i_sb;
struct msdos_dir_slot *dir_slots;
loff_t offset;
int slots, slot;
@@ -821,7 +802,7 @@ static int vfat_add_entry(struct inode *dir,struct qstr* qname,
res = offset;
goto cleanup;
}
- fat_brelse(sb, dummy_bh);
+ brelse(dummy_bh);
/* Now create the new entry */
*bh = NULL;
@@ -831,7 +812,7 @@ static int vfat_add_entry(struct inode *dir,struct qstr* qname,
goto cleanup;
}
memcpy(*de, dir_slots + slot, sizeof(struct msdos_dir_slot));
- fat_mark_buffer_dirty(sb, *bh);
+ mark_buffer_dirty(*bh);
}
res = 0;
@@ -843,7 +824,7 @@ static int vfat_add_entry(struct inode *dir,struct qstr* qname,
(*de)->ctime = (*de)->time;
(*de)->adate = (*de)->cdate = (*de)->date;
- fat_mark_buffer_dirty(sb, *bh);
+ mark_buffer_dirty(*bh);
/* slots can't be less than 1 */
sinfo_out->long_slots = slots - 1;
@@ -902,7 +883,7 @@ struct dentry *vfat_lookup(struct inode *dir,struct dentry *dentry)
goto error;
}
inode = fat_build_inode(dir->i_sb, de, sinfo.ino, &res);
- fat_brelse(dir->i_sb, bh);
+ brelse(bh);
if (res) {
unlock_kernel();
return ERR_PTR(res);
@@ -946,7 +927,7 @@ int vfat_create(struct inode *dir,struct dentry* dentry,int mode)
return res;
}
inode = fat_build_inode(sb, de, sinfo.ino, &res);
- fat_brelse(sb, bh);
+ brelse(bh);
if (!inode) {
unlock_kernel();
return res;
@@ -964,7 +945,6 @@ int vfat_create(struct inode *dir,struct dentry* dentry,int mode)
static void vfat_remove_entry(struct inode *dir,struct vfat_slot_info *sinfo,
struct buffer_head *bh, struct msdos_dir_entry *de)
{
- struct super_block *sb = dir->i_sb;
loff_t offset;
int i,ino;
@@ -974,7 +954,7 @@ static void vfat_remove_entry(struct inode *dir,struct vfat_slot_info *sinfo,
dir->i_version++;
mark_inode_dirty(dir);
de->name[0] = DELETED_FLAG;
- fat_mark_buffer_dirty(sb, bh);
+ mark_buffer_dirty(bh);
/* remove the longname */
offset = sinfo->longname_offset; de = NULL;
for (i = sinfo->long_slots; i > 0; --i) {
@@ -982,9 +962,9 @@ static void vfat_remove_entry(struct inode *dir,struct vfat_slot_info *sinfo,
continue;
de->name[0] = DELETED_FLAG;
de->attr = ATTR_NONE;
- fat_mark_buffer_dirty(sb, bh);
+ mark_buffer_dirty(bh);
}
- if (bh) fat_brelse(sb, bh);
+ brelse(bh);
}
int vfat_rmdir(struct inode *dir,struct dentry* dentry)
@@ -1075,7 +1055,7 @@ int vfat_mkdir(struct inode *dir,struct dentry* dentry,int mode)
dentry->d_time = dentry->d_parent->d_inode->i_version;
d_instantiate(dentry,inode);
out:
- fat_brelse(sb, bh);
+ brelse(bh);
unlock_kernel();
return res;
@@ -1096,7 +1076,6 @@ mkdir_failed:
int vfat_rename(struct inode *old_dir,struct dentry *old_dentry,
struct inode *new_dir,struct dentry *new_dentry)
{
- struct super_block *sb = old_dir->i_sb;
struct buffer_head *old_bh,*new_bh,*dotdot_bh;
struct msdos_dir_entry *old_de,*new_de,*dotdot_de;
int dotdot_ino;
@@ -1160,7 +1139,7 @@ int vfat_rename(struct inode *old_dir,struct dentry *old_dentry,
int start = MSDOS_I(new_dir)->i_logstart;
dotdot_de->start = CT_LE_W(start);
dotdot_de->starthi = CT_LE_W(start>>16);
- fat_mark_buffer_dirty(sb, dotdot_bh);
+ mark_buffer_dirty(dotdot_bh);
old_dir->i_nlink--;
if (new_inode) {
new_inode->i_nlink--;
@@ -1171,9 +1150,9 @@ int vfat_rename(struct inode *old_dir,struct dentry *old_dentry,
}
rename_done:
- fat_brelse(sb, dotdot_bh);
- fat_brelse(sb, old_bh);
- fat_brelse(sb, new_bh);
+ brelse(dotdot_bh);
+ brelse(old_bh);
+ brelse(new_bh);
unlock_kernel();
return res;
diff --git a/include/linux/fat_cvf.h b/include/linux/fat_cvf.h
deleted file mode 100644
index bfaf4b0570bb..000000000000
--- a/include/linux/fat_cvf.h
+++ /dev/null
@@ -1,47 +0,0 @@
-#ifndef _FAT_CVF
-#define _FAT_CVF
-
-#define CVF_USE_READPAGE 0x0001
-
-struct cvf_format
-{ int cvf_version;
- char* cvf_version_text;
- unsigned long flags;
- int (*detect_cvf) (struct super_block*sb);
- int (*mount_cvf) (struct super_block*sb,char*options);
- int (*unmount_cvf) (struct super_block*sb);
- struct buffer_head* (*cvf_bread) (struct super_block*sb,int block);
- struct buffer_head* (*cvf_getblk) (struct super_block*sb,int block);
- void (*cvf_brelse) (struct super_block *sb,struct buffer_head *bh);
- void (*cvf_mark_buffer_dirty) (struct super_block *sb,
- struct buffer_head *bh);
- void (*cvf_set_uptodate) (struct super_block *sb,
- struct buffer_head *bh,
- int val);
- int (*cvf_is_uptodate) (struct super_block *sb,struct buffer_head *bh);
- void (*cvf_ll_rw_block) (struct super_block *sb,
- int opr,
- int nbreq,
- struct buffer_head *bh[32]);
- int (*fat_access) (struct super_block *sb,int nr,int new_value);
- int (*cvf_statfs) (struct super_block *sb,struct statfs *buf, int bufsiz);
- int (*cvf_bmap) (struct inode *inode,int block);
- ssize_t (*cvf_file_read) ( struct file *, char *, size_t, loff_t *);
- ssize_t (*cvf_file_write) ( struct file *, const char *, size_t, loff_t *);
- int (*cvf_mmap) (struct file *, struct vm_area_struct *);
- int (*cvf_readpage) (struct inode *, struct page *);
- int (*cvf_writepage) (struct inode *, struct page *);
- int (*cvf_dir_ioctl) (struct inode * inode, struct file * filp,
- unsigned int cmd, unsigned long arg);
- void (*zero_out_cluster) (struct inode*, int clusternr);
-};
-
-int register_cvf_format(struct cvf_format*cvf_format);
-int unregister_cvf_format(struct cvf_format*cvf_format);
-void dec_cvf_format_use_count_by_version(int version);
-int detect_cvf(struct super_block*sb,char*force);
-
-extern struct cvf_format *cvf_formats[];
-extern int cvf_format_use_count[];
-
-#endif
diff --git a/include/linux/msdos_fs.h b/include/linux/msdos_fs.h
index e0279aa72429..3be6cff6d070 100644
--- a/include/linux/msdos_fs.h
+++ b/include/linux/msdos_fs.h
@@ -235,17 +235,6 @@ static inline void fatwchar_to16(__u8 *dst, const wchar_t *src, size_t len)
#endif
}
-/* fat/buffer.c */
-extern struct buffer_head *fat_bread(struct super_block *sb, int block);
-extern struct buffer_head *fat_getblk(struct super_block *sb, int block);
-extern void fat_brelse(struct super_block *sb, struct buffer_head *bh);
-extern void fat_mark_buffer_dirty(struct super_block *sb, struct buffer_head *bh);
-extern void fat_set_uptodate(struct super_block *sb, struct buffer_head *bh,
- int val);
-extern int fat_is_uptodate(struct super_block *sb, struct buffer_head *bh);
-extern void fat_ll_rw_block(struct super_block *sb, int opr, int nbreq,
- struct buffer_head *bh[32]);
-
/* fat/cache.c */
extern int fat_access(struct super_block *sb, int nr, int new_value);
extern int __fat_access(struct super_block *sb, int nr, int new_value);
@@ -273,12 +262,8 @@ extern int fat_new_dir(struct inode *dir, struct inode *parent, int is_vfat);
/* fat/file.c */
extern struct file_operations fat_file_operations;
extern struct inode_operations fat_file_inode_operations;
-extern ssize_t fat_file_read(struct file *filp, char *buf, size_t count,
- loff_t *ppos);
extern int fat_get_block(struct inode *inode, sector_t iblock,
struct buffer_head *bh_result, int create);
-extern ssize_t fat_file_write(struct file *filp, const char *buf, size_t count,
- loff_t *ppos);
extern void fat_truncate(struct inode *inode);
/* fat/inode.c */
@@ -299,7 +284,6 @@ extern int fat_notify_change(struct dentry * dentry, struct iattr * attr);
/* fat/misc.c */
extern void fat_fs_panic(struct super_block *s, const char *fmt, ...);
-extern int fat_is_binary(char conversion, char *extension);
extern void lock_fat(struct super_block *sb);
extern void unlock_fat(struct super_block *sb);
extern void fat_clusters_flush(struct super_block *sb);
diff --git a/include/linux/msdos_fs_sb.h b/include/linux/msdos_fs_sb.h
index e1e7851f500f..3b84157867e9 100644
--- a/include/linux/msdos_fs_sb.h
+++ b/include/linux/msdos_fs_sb.h
@@ -1,6 +1,5 @@
#ifndef _MSDOS_FS_SB
#define _MSDOS_FS_SB
-#include<linux/fat_cvf.h>
/*
* MS-DOS file system in-core superblock data
@@ -15,7 +14,6 @@ struct fat_mount_options {
char *iocharset; /* Charset used for filename input/display */
unsigned short shortname; /* flags for shortname display/create rule */
unsigned char name_check; /* r = relaxed, n = normal, s = strict */
- unsigned char conversion; /* b = binary, t = text, a = auto */
unsigned quiet:1, /* set = fake successful chmods and chowns */
showexec:1, /* set = only set x bit for com/exe/bat */
sys_immutable:1, /* set = system files are immutable */
@@ -46,9 +44,7 @@ struct msdos_sb_info {
struct fat_mount_options options;
struct nls_table *nls_disk; /* Codepage used on disk */
struct nls_table *nls_io; /* Charset used for input and display */
- struct cvf_format* cvf_format;
void *dir_ops; /* Opaque; default directory operations */
- void *private_data;
int dir_per_block; /* dir entries per block */
int dir_per_block_bits; /* log2(dir_per_block) */
};