mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
iget: stop the SYSV filesystem from using iget() and read_inode()
Stop the SYSV filesystem from using iget() and read_inode(). Replace sysv_read_inode() with sysv_iget(), and call that instead of iget(). sysv_iget() then uses iget_locked() directly and returns a proper error code instead of an inode in the event of an error. [akpm@linux-foundation.org: coding-style fixes] Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
78cc912000
commit
b8e1343f67
4 changed files with 22 additions and 14 deletions
|
@ -169,20 +169,27 @@ void sysv_set_inode(struct inode *inode, dev_t rdev)
|
||||||
init_special_inode(inode, inode->i_mode, rdev);
|
init_special_inode(inode, inode->i_mode, rdev);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sysv_read_inode(struct inode *inode)
|
struct inode *sysv_iget(struct super_block *sb, unsigned int ino)
|
||||||
{
|
{
|
||||||
struct super_block * sb = inode->i_sb;
|
|
||||||
struct sysv_sb_info * sbi = SYSV_SB(sb);
|
struct sysv_sb_info * sbi = SYSV_SB(sb);
|
||||||
struct buffer_head * bh;
|
struct buffer_head * bh;
|
||||||
struct sysv_inode * raw_inode;
|
struct sysv_inode * raw_inode;
|
||||||
struct sysv_inode_info * si;
|
struct sysv_inode_info * si;
|
||||||
unsigned int block, ino = inode->i_ino;
|
struct inode *inode;
|
||||||
|
unsigned int block;
|
||||||
|
|
||||||
if (!ino || ino > sbi->s_ninodes) {
|
if (!ino || ino > sbi->s_ninodes) {
|
||||||
printk("Bad inode number on dev %s: %d is out of range\n",
|
printk("Bad inode number on dev %s: %d is out of range\n",
|
||||||
inode->i_sb->s_id, ino);
|
sb->s_id, ino);
|
||||||
goto bad_inode;
|
return ERR_PTR(-EIO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inode = iget_locked(sb, ino);
|
||||||
|
if (!inode)
|
||||||
|
return ERR_PTR(-ENOMEM);
|
||||||
|
if (!(inode->i_state & I_NEW))
|
||||||
|
return inode;
|
||||||
|
|
||||||
raw_inode = sysv_raw_inode(sb, ino, &bh);
|
raw_inode = sysv_raw_inode(sb, ino, &bh);
|
||||||
if (!raw_inode) {
|
if (!raw_inode) {
|
||||||
printk("Major problem: unable to read inode from dev %s\n",
|
printk("Major problem: unable to read inode from dev %s\n",
|
||||||
|
@ -214,11 +221,12 @@ static void sysv_read_inode(struct inode *inode)
|
||||||
old_decode_dev(fs32_to_cpu(sbi, si->i_data[0])));
|
old_decode_dev(fs32_to_cpu(sbi, si->i_data[0])));
|
||||||
else
|
else
|
||||||
sysv_set_inode(inode, 0);
|
sysv_set_inode(inode, 0);
|
||||||
return;
|
unlock_new_inode(inode);
|
||||||
|
return inode;
|
||||||
|
|
||||||
bad_inode:
|
bad_inode:
|
||||||
make_bad_inode(inode);
|
iget_failed(inode);
|
||||||
return;
|
return ERR_PTR(-EIO);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct buffer_head * sysv_update_inode(struct inode * inode)
|
static struct buffer_head * sysv_update_inode(struct inode * inode)
|
||||||
|
@ -328,7 +336,6 @@ static void init_once(struct kmem_cache *cachep, void *p)
|
||||||
const struct super_operations sysv_sops = {
|
const struct super_operations sysv_sops = {
|
||||||
.alloc_inode = sysv_alloc_inode,
|
.alloc_inode = sysv_alloc_inode,
|
||||||
.destroy_inode = sysv_destroy_inode,
|
.destroy_inode = sysv_destroy_inode,
|
||||||
.read_inode = sysv_read_inode,
|
|
||||||
.write_inode = sysv_write_inode,
|
.write_inode = sysv_write_inode,
|
||||||
.delete_inode = sysv_delete_inode,
|
.delete_inode = sysv_delete_inode,
|
||||||
.put_super = sysv_put_super,
|
.put_super = sysv_put_super,
|
||||||
|
|
|
@ -53,9 +53,9 @@ static struct dentry *sysv_lookup(struct inode * dir, struct dentry * dentry, st
|
||||||
ino = sysv_inode_by_name(dentry);
|
ino = sysv_inode_by_name(dentry);
|
||||||
|
|
||||||
if (ino) {
|
if (ino) {
|
||||||
inode = iget(dir->i_sb, ino);
|
inode = sysv_iget(dir->i_sb, ino);
|
||||||
if (!inode)
|
if (IS_ERR(inode))
|
||||||
return ERR_PTR(-EACCES);
|
return ERR_CAST(inode);
|
||||||
}
|
}
|
||||||
d_add(dentry, inode);
|
d_add(dentry, inode);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
|
@ -332,8 +332,8 @@ static int complete_read_super(struct super_block *sb, int silent, int size)
|
||||||
sb->s_magic = SYSV_MAGIC_BASE + sbi->s_type;
|
sb->s_magic = SYSV_MAGIC_BASE + sbi->s_type;
|
||||||
/* set up enough so that it can read an inode */
|
/* set up enough so that it can read an inode */
|
||||||
sb->s_op = &sysv_sops;
|
sb->s_op = &sysv_sops;
|
||||||
root_inode = iget(sb,SYSV_ROOT_INO);
|
root_inode = sysv_iget(sb, SYSV_ROOT_INO);
|
||||||
if (!root_inode || is_bad_inode(root_inode)) {
|
if (IS_ERR(root_inode)) {
|
||||||
printk("SysV FS: get root inode failed\n");
|
printk("SysV FS: get root inode failed\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -141,6 +141,7 @@ extern int __sysv_write_begin(struct file *file, struct address_space *mapping,
|
||||||
struct page **pagep, void **fsdata);
|
struct page **pagep, void **fsdata);
|
||||||
|
|
||||||
/* inode.c */
|
/* inode.c */
|
||||||
|
extern struct inode *sysv_iget(struct super_block *, unsigned int);
|
||||||
extern int sysv_write_inode(struct inode *, int);
|
extern int sysv_write_inode(struct inode *, int);
|
||||||
extern int sysv_sync_inode(struct inode *);
|
extern int sysv_sync_inode(struct inode *);
|
||||||
extern int sysv_sync_file(struct file *, struct dentry *, int);
|
extern int sysv_sync_file(struct file *, struct dentry *, int);
|
||||||
|
|
Loading…
Reference in a new issue