diff options
Diffstat (limited to 'fs/jfs')
-rw-r--r-- | fs/jfs/jfs_inode.h | 1 | ||||
-rw-r--r-- | fs/jfs/namei.c | 32 | ||||
-rw-r--r-- | fs/jfs/super.c | 1 |
3 files changed, 34 insertions, 0 deletions
diff --git a/fs/jfs/jfs_inode.h b/fs/jfs/jfs_inode.h index 2374b595f2e1..f0ec72b263f1 100644 --- a/fs/jfs/jfs_inode.h +++ b/fs/jfs/jfs_inode.h | |||
@@ -32,6 +32,7 @@ extern void jfs_truncate_nolock(struct inode *, loff_t); | |||
32 | extern void jfs_free_zero_link(struct inode *); | 32 | extern void jfs_free_zero_link(struct inode *); |
33 | extern struct dentry *jfs_get_parent(struct dentry *dentry); | 33 | extern struct dentry *jfs_get_parent(struct dentry *dentry); |
34 | extern void jfs_get_inode_flags(struct jfs_inode_info *); | 34 | extern void jfs_get_inode_flags(struct jfs_inode_info *); |
35 | extern struct dentry *jfs_get_dentry(struct super_block *sb, void *vobjp); | ||
35 | extern void jfs_set_inode_flags(struct inode *); | 36 | extern void jfs_set_inode_flags(struct inode *); |
36 | extern int jfs_get_block(struct inode *, sector_t, struct buffer_head *, int); | 37 | extern int jfs_get_block(struct inode *, sector_t, struct buffer_head *, int); |
37 | 38 | ||
diff --git a/fs/jfs/namei.c b/fs/jfs/namei.c index 25161c4121e4..932797ba433b 100644 --- a/fs/jfs/namei.c +++ b/fs/jfs/namei.c | |||
@@ -1477,6 +1477,38 @@ static struct dentry *jfs_lookup(struct inode *dip, struct dentry *dentry, struc | |||
1477 | return dentry; | 1477 | return dentry; |
1478 | } | 1478 | } |
1479 | 1479 | ||
1480 | struct dentry *jfs_get_dentry(struct super_block *sb, void *vobjp) | ||
1481 | { | ||
1482 | __u32 *objp = vobjp; | ||
1483 | unsigned long ino = objp[0]; | ||
1484 | __u32 generation = objp[1]; | ||
1485 | struct inode *inode; | ||
1486 | struct dentry *result; | ||
1487 | |||
1488 | if (ino == 0) | ||
1489 | return ERR_PTR(-ESTALE); | ||
1490 | inode = iget(sb, ino); | ||
1491 | if (inode == NULL) | ||
1492 | return ERR_PTR(-ENOMEM); | ||
1493 | |||
1494 | if (is_bad_inode(inode) || | ||
1495 | (generation && inode->i_generation != generation)) { | ||
1496 | result = ERR_PTR(-ESTALE); | ||
1497 | goto out_iput; | ||
1498 | } | ||
1499 | |||
1500 | result = d_alloc_anon(inode); | ||
1501 | if (!result) { | ||
1502 | result = ERR_PTR(-ENOMEM); | ||
1503 | goto out_iput; | ||
1504 | } | ||
1505 | return result; | ||
1506 | |||
1507 | out_iput: | ||
1508 | iput(inode); | ||
1509 | return result; | ||
1510 | } | ||
1511 | |||
1480 | struct dentry *jfs_get_parent(struct dentry *dentry) | 1512 | struct dentry *jfs_get_parent(struct dentry *dentry) |
1481 | { | 1513 | { |
1482 | struct super_block *sb = dentry->d_inode->i_sb; | 1514 | struct super_block *sb = dentry->d_inode->i_sb; |
diff --git a/fs/jfs/super.c b/fs/jfs/super.c index 49b652bd96ba..929fceca7999 100644 --- a/fs/jfs/super.c +++ b/fs/jfs/super.c | |||
@@ -738,6 +738,7 @@ static const struct super_operations jfs_super_operations = { | |||
738 | }; | 738 | }; |
739 | 739 | ||
740 | static struct export_operations jfs_export_operations = { | 740 | static struct export_operations jfs_export_operations = { |
741 | .get_dentry = jfs_get_dentry, | ||
741 | .get_parent = jfs_get_parent, | 742 | .get_parent = jfs_get_parent, |
742 | }; | 743 | }; |
743 | 744 | ||