diff options
author | Josef Sipek <jsipek@fsl.cs.sunysb.edu> | 2006-12-08 02:37:19 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 08:28:47 -0800 |
commit | c649bb9c55e78dcff0e1383c13d91e0bfc2abb4a (patch) | |
tree | 2db97a161e909c22840d72ac15704b56b09a9094 /drivers/md/md.c | |
parent | 225a719f79fbc4d0cd9d9ebc5b2e3ac0e95845aa (diff) | |
download | op-kernel-dev-c649bb9c55e78dcff0e1383c13d91e0bfc2abb4a.zip op-kernel-dev-c649bb9c55e78dcff0e1383c13d91e0bfc2abb4a.tar.gz |
[PATCH] struct path: convert md
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 'drivers/md/md.c')
-rw-r--r-- | drivers/md/md.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index 3ce7a5d..53bd46d 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -4846,8 +4846,8 @@ static int md_seq_show(struct seq_file *seq, void *v) chunk_kb ? "KB" : "B"); if (bitmap->file) { seq_printf(seq, ", file: "); - seq_path(seq, bitmap->file->f_vfsmnt, - bitmap->file->f_dentry," \t\n"); + seq_path(seq, bitmap->file->f_path.mnt, + bitmap->file->f_path.dentry," \t\n"); } seq_printf(seq, "\n"); |