[PATCH] mm: change uses of f_{dentry,vfsmnt} to use f_path
[deliverable/linux.git] / mm / swapfile.c
index c5431072f42244181d0aeb7eee6eae837005ad03..b9fc0e5de6d50d1892dca42e02ae5d0ad48d7a47 100644 (file)
@@ -1357,10 +1357,10 @@ static int swap_show(struct seq_file *swap, void *v)
        }
 
        file = ptr->swap_file;
-       len = seq_path(swap, file->f_vfsmnt, file->f_dentry, " \t\n\\");
+       len = seq_path(swap, file->f_path.mnt, file->f_path.dentry, " \t\n\\");
        seq_printf(swap, "%*s%s\t%u\t%u\t%d\n",
                       len < 40 ? 40 - len : 1, " ",
-                      S_ISBLK(file->f_dentry->d_inode->i_mode) ?
+                      S_ISBLK(file->f_path.dentry->d_inode->i_mode) ?
                                "partition" : "file\t",
                       ptr->pages << (PAGE_SHIFT - 10),
                       ptr->inuse_pages << (PAGE_SHIFT - 10),
This page took 0.034656 seconds and 5 git commands to generate.