Commit a4669ed8 authored by Josef "Jeff" Sipek's avatar Josef "Jeff" Sipek Committed by Linus Torvalds

[PATCH] autofs4: change uses of f_{dentry, vfsmnt} to use f_path

Change all the uses of f_{dentry,vfsmnt} to f_path.{dentry,mnt} in the autofs4
filesystem.
Signed-off-by: default avatarJosef "Jeff" Sipek <jsipek@cs.sunysb.edu>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 81ed19b0
...@@ -150,7 +150,8 @@ static inline int autofs4_ispending(struct dentry *dentry) ...@@ -150,7 +150,8 @@ static inline int autofs4_ispending(struct dentry *dentry)
static inline void autofs4_copy_atime(struct file *src, struct file *dst) static inline void autofs4_copy_atime(struct file *src, struct file *dst)
{ {
dst->f_dentry->d_inode->i_atime = src->f_dentry->d_inode->i_atime; dst->f_path.dentry->d_inode->i_atime =
src->f_path.dentry->d_inode->i_atime;
return; return;
} }
......
...@@ -74,7 +74,7 @@ struct inode_operations autofs4_dir_inode_operations = { ...@@ -74,7 +74,7 @@ struct inode_operations autofs4_dir_inode_operations = {
static int autofs4_root_readdir(struct file *file, void *dirent, static int autofs4_root_readdir(struct file *file, void *dirent,
filldir_t filldir) filldir_t filldir)
{ {
struct autofs_sb_info *sbi = autofs4_sbi(file->f_dentry->d_sb); struct autofs_sb_info *sbi = autofs4_sbi(file->f_path.dentry->d_sb);
int oz_mode = autofs4_oz_mode(sbi); int oz_mode = autofs4_oz_mode(sbi);
DPRINTK("called, filp->f_pos = %lld", file->f_pos); DPRINTK("called, filp->f_pos = %lld", file->f_pos);
...@@ -95,8 +95,8 @@ static int autofs4_root_readdir(struct file *file, void *dirent, ...@@ -95,8 +95,8 @@ static int autofs4_root_readdir(struct file *file, void *dirent,
static int autofs4_dir_open(struct inode *inode, struct file *file) static int autofs4_dir_open(struct inode *inode, struct file *file)
{ {
struct dentry *dentry = file->f_dentry; struct dentry *dentry = file->f_path.dentry;
struct vfsmount *mnt = file->f_vfsmnt; struct vfsmount *mnt = file->f_path.mnt;
struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb); struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
struct dentry *cursor; struct dentry *cursor;
int status; int status;
...@@ -172,7 +172,7 @@ static int autofs4_dir_open(struct inode *inode, struct file *file) ...@@ -172,7 +172,7 @@ static int autofs4_dir_open(struct inode *inode, struct file *file)
static int autofs4_dir_close(struct inode *inode, struct file *file) static int autofs4_dir_close(struct inode *inode, struct file *file)
{ {
struct dentry *dentry = file->f_dentry; struct dentry *dentry = file->f_path.dentry;
struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb); struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
struct dentry *cursor = file->private_data; struct dentry *cursor = file->private_data;
int status = 0; int status = 0;
...@@ -204,7 +204,7 @@ static int autofs4_dir_close(struct inode *inode, struct file *file) ...@@ -204,7 +204,7 @@ static int autofs4_dir_close(struct inode *inode, struct file *file)
static int autofs4_dir_readdir(struct file *file, void *dirent, filldir_t filldir) static int autofs4_dir_readdir(struct file *file, void *dirent, filldir_t filldir)
{ {
struct dentry *dentry = file->f_dentry; struct dentry *dentry = file->f_path.dentry;
struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb); struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
struct dentry *cursor = file->private_data; struct dentry *cursor = file->private_data;
int status; int status;
...@@ -858,14 +858,14 @@ static int autofs4_root_ioctl(struct inode *inode, struct file *filp, ...@@ -858,14 +858,14 @@ static int autofs4_root_ioctl(struct inode *inode, struct file *filp,
return autofs4_ask_reghost(sbi, p); return autofs4_ask_reghost(sbi, p);
case AUTOFS_IOC_ASKUMOUNT: case AUTOFS_IOC_ASKUMOUNT:
return autofs4_ask_umount(filp->f_vfsmnt, p); return autofs4_ask_umount(filp->f_path.mnt, p);
/* return a single thing to expire */ /* return a single thing to expire */
case AUTOFS_IOC_EXPIRE: case AUTOFS_IOC_EXPIRE:
return autofs4_expire_run(inode->i_sb,filp->f_vfsmnt,sbi, p); return autofs4_expire_run(inode->i_sb,filp->f_path.mnt,sbi, p);
/* same as above, but can send multiple expires through pipe */ /* same as above, but can send multiple expires through pipe */
case AUTOFS_IOC_EXPIRE_MULTI: case AUTOFS_IOC_EXPIRE_MULTI:
return autofs4_expire_multi(inode->i_sb,filp->f_vfsmnt,sbi, p); return autofs4_expire_multi(inode->i_sb,filp->f_path.mnt,sbi, p);
default: default:
return -ENOSYS; return -ENOSYS;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment