diff options
author | Josef Sipek <jsipek@fsl.cs.sunysb.edu> | 2006-12-08 05:37:33 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:28:49 -0500 |
commit | 1fc5adbd1916793c19d25347f484806c124d9be7 (patch) | |
tree | 81be6f222656f43c970013acf805da8d74882ca6 /fs/reiserfs | |
parent | a57c4d65f70cb43c8503bc213c8be638011c22e7 (diff) |
[PATCH] struct path: convert reiserfs
Signed-off-by: Josef Sipek <jsipek@fsl.cs.sunysb.edu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/reiserfs')
-rw-r--r-- | fs/reiserfs/dir.c | 4 | ||||
-rw-r--r-- | fs/reiserfs/file.c | 4 | ||||
-rw-r--r-- | fs/reiserfs/ioctl.c | 2 | ||||
-rw-r--r-- | fs/reiserfs/procfs.c | 2 | ||||
-rw-r--r-- | fs/reiserfs/xattr.c | 10 |
5 files changed, 11 insertions, 11 deletions
diff --git a/fs/reiserfs/dir.c b/fs/reiserfs/dir.c index 657050ad7430..96a2f8889da3 100644 --- a/fs/reiserfs/dir.c +++ b/fs/reiserfs/dir.c | |||
@@ -45,7 +45,7 @@ static int reiserfs_dir_fsync(struct file *filp, struct dentry *dentry, | |||
45 | // | 45 | // |
46 | static int reiserfs_readdir(struct file *filp, void *dirent, filldir_t filldir) | 46 | static int reiserfs_readdir(struct file *filp, void *dirent, filldir_t filldir) |
47 | { | 47 | { |
48 | struct inode *inode = filp->f_dentry->d_inode; | 48 | struct inode *inode = filp->f_path.dentry->d_inode; |
49 | struct cpu_key pos_key; /* key of current position in the directory (key of directory entry) */ | 49 | struct cpu_key pos_key; /* key of current position in the directory (key of directory entry) */ |
50 | INITIALIZE_PATH(path_to_entry); | 50 | INITIALIZE_PATH(path_to_entry); |
51 | struct buffer_head *bh; | 51 | struct buffer_head *bh; |
@@ -135,7 +135,7 @@ static int reiserfs_readdir(struct file *filp, void *dirent, filldir_t filldir) | |||
135 | /* Ignore the .reiserfs_priv entry */ | 135 | /* Ignore the .reiserfs_priv entry */ |
136 | if (reiserfs_xattrs(inode->i_sb) && | 136 | if (reiserfs_xattrs(inode->i_sb) && |
137 | !old_format_only(inode->i_sb) && | 137 | !old_format_only(inode->i_sb) && |
138 | filp->f_dentry == inode->i_sb->s_root && | 138 | filp->f_path.dentry == inode->i_sb->s_root && |
139 | REISERFS_SB(inode->i_sb)->priv_root && | 139 | REISERFS_SB(inode->i_sb)->priv_root && |
140 | REISERFS_SB(inode->i_sb)->priv_root->d_inode | 140 | REISERFS_SB(inode->i_sb)->priv_root->d_inode |
141 | && deh_objectid(deh) == | 141 | && deh_objectid(deh) == |
diff --git a/fs/reiserfs/file.c b/fs/reiserfs/file.c index 373d862c3f87..99b6f329ba23 100644 --- a/fs/reiserfs/file.c +++ b/fs/reiserfs/file.c | |||
@@ -1288,7 +1288,7 @@ static ssize_t reiserfs_file_write(struct file *file, /* the file we are going t | |||
1288 | loff_t pos; // Current position in the file. | 1288 | loff_t pos; // Current position in the file. |
1289 | ssize_t res; // return value of various functions that we call. | 1289 | ssize_t res; // return value of various functions that we call. |
1290 | int err = 0; | 1290 | int err = 0; |
1291 | struct inode *inode = file->f_dentry->d_inode; // Inode of the file that we are writing to. | 1291 | struct inode *inode = file->f_path.dentry->d_inode; // Inode of the file that we are writing to. |
1292 | /* To simplify coding at this time, we store | 1292 | /* To simplify coding at this time, we store |
1293 | locked pages in array for now */ | 1293 | locked pages in array for now */ |
1294 | struct page *prepared_pages[REISERFS_WRITE_PAGES_AT_A_TIME]; | 1294 | struct page *prepared_pages[REISERFS_WRITE_PAGES_AT_A_TIME]; |
@@ -1335,7 +1335,7 @@ static ssize_t reiserfs_file_write(struct file *file, /* the file we are going t | |||
1335 | if (count == 0) | 1335 | if (count == 0) |
1336 | goto out; | 1336 | goto out; |
1337 | 1337 | ||
1338 | res = remove_suid(file->f_dentry); | 1338 | res = remove_suid(file->f_path.dentry); |
1339 | if (res) | 1339 | if (res) |
1340 | goto out; | 1340 | goto out; |
1341 | 1341 | ||
diff --git a/fs/reiserfs/ioctl.c b/fs/reiserfs/ioctl.c index 9c57578cb831..b484d2913c0d 100644 --- a/fs/reiserfs/ioctl.c +++ b/fs/reiserfs/ioctl.c | |||
@@ -99,7 +99,7 @@ int reiserfs_ioctl(struct inode *inode, struct file *filp, unsigned int cmd, | |||
99 | long reiserfs_compat_ioctl(struct file *file, unsigned int cmd, | 99 | long reiserfs_compat_ioctl(struct file *file, unsigned int cmd, |
100 | unsigned long arg) | 100 | unsigned long arg) |
101 | { | 101 | { |
102 | struct inode *inode = file->f_dentry->d_inode; | 102 | struct inode *inode = file->f_path.dentry->d_inode; |
103 | int ret; | 103 | int ret; |
104 | 104 | ||
105 | /* These are just misnamed, they actually get/put from/to user an int */ | 105 | /* These are just misnamed, they actually get/put from/to user an int */ |
diff --git a/fs/reiserfs/procfs.c b/fs/reiserfs/procfs.c index c533ec1bcaec..ecc9943202fc 100644 --- a/fs/reiserfs/procfs.c +++ b/fs/reiserfs/procfs.c | |||
@@ -295,7 +295,7 @@ static int show_oidmap(struct seq_file *m, struct super_block *sb) | |||
295 | } | 295 | } |
296 | #if defined( REISERFS_USE_OIDMAPF ) | 296 | #if defined( REISERFS_USE_OIDMAPF ) |
297 | if (sb_info->oidmap.use_file && (sb_info->oidmap.mapf != NULL)) { | 297 | if (sb_info->oidmap.use_file && (sb_info->oidmap.mapf != NULL)) { |
298 | loff_t size = sb_info->oidmap.mapf->f_dentry->d_inode->i_size; | 298 | loff_t size = sb_info->oidmap.mapf->f_path.dentry->d_inode->i_size; |
299 | total_used += size / sizeof(reiserfs_oidinterval_d_t); | 299 | total_used += size / sizeof(reiserfs_oidinterval_d_t); |
300 | } | 300 | } |
301 | #endif | 301 | #endif |
diff --git a/fs/reiserfs/xattr.c b/fs/reiserfs/xattr.c index 1e4d68590178..f01389fd162e 100644 --- a/fs/reiserfs/xattr.c +++ b/fs/reiserfs/xattr.c | |||
@@ -274,7 +274,7 @@ static struct file *open_xa_file(const struct inode *inode, const char *name, | |||
274 | */ | 274 | */ |
275 | static int __xattr_readdir(struct file *filp, void *dirent, filldir_t filldir) | 275 | static int __xattr_readdir(struct file *filp, void *dirent, filldir_t filldir) |
276 | { | 276 | { |
277 | struct inode *inode = filp->f_dentry->d_inode; | 277 | struct inode *inode = filp->f_path.dentry->d_inode; |
278 | struct cpu_key pos_key; /* key of current position in the directory (key of directory entry) */ | 278 | struct cpu_key pos_key; /* key of current position in the directory (key of directory entry) */ |
279 | INITIALIZE_PATH(path_to_entry); | 279 | INITIALIZE_PATH(path_to_entry); |
280 | struct buffer_head *bh; | 280 | struct buffer_head *bh; |
@@ -420,7 +420,7 @@ static int __xattr_readdir(struct file *filp, void *dirent, filldir_t filldir) | |||
420 | static | 420 | static |
421 | int xattr_readdir(struct file *file, filldir_t filler, void *buf) | 421 | int xattr_readdir(struct file *file, filldir_t filler, void *buf) |
422 | { | 422 | { |
423 | struct inode *inode = file->f_dentry->d_inode; | 423 | struct inode *inode = file->f_path.dentry->d_inode; |
424 | int res = -ENOTDIR; | 424 | int res = -ENOTDIR; |
425 | if (!file->f_op || !file->f_op->readdir) | 425 | if (!file->f_op || !file->f_op->readdir) |
426 | goto out; | 426 | goto out; |
@@ -508,7 +508,7 @@ reiserfs_xattr_set(struct inode *inode, const char *name, const void *buffer, | |||
508 | goto out; | 508 | goto out; |
509 | } | 509 | } |
510 | 510 | ||
511 | xinode = fp->f_dentry->d_inode; | 511 | xinode = fp->f_path.dentry->d_inode; |
512 | REISERFS_I(inode)->i_flags |= i_has_xattr_dir; | 512 | REISERFS_I(inode)->i_flags |= i_has_xattr_dir; |
513 | 513 | ||
514 | /* we need to copy it off.. */ | 514 | /* we need to copy it off.. */ |
@@ -527,7 +527,7 @@ reiserfs_xattr_set(struct inode *inode, const char *name, const void *buffer, | |||
527 | newattrs.ia_size = buffer_size; | 527 | newattrs.ia_size = buffer_size; |
528 | newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME; | 528 | newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME; |
529 | mutex_lock(&xinode->i_mutex); | 529 | mutex_lock(&xinode->i_mutex); |
530 | err = notify_change(fp->f_dentry, &newattrs); | 530 | err = notify_change(fp->f_path.dentry, &newattrs); |
531 | if (err) | 531 | if (err) |
532 | goto out_filp; | 532 | goto out_filp; |
533 | 533 | ||
@@ -626,7 +626,7 @@ reiserfs_xattr_get(const struct inode *inode, const char *name, void *buffer, | |||
626 | goto out; | 626 | goto out; |
627 | } | 627 | } |
628 | 628 | ||
629 | xinode = fp->f_dentry->d_inode; | 629 | xinode = fp->f_path.dentry->d_inode; |
630 | isize = xinode->i_size; | 630 | isize = xinode->i_size; |
631 | REISERFS_I(inode)->i_flags |= i_has_xattr_dir; | 631 | REISERFS_I(inode)->i_flags |= i_has_xattr_dir; |
632 | 632 | ||