diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-12-17 17:45:14 +0200 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-12-23 12:22:39 +0200 |
commit | 24fa9e9438b263600737c839b36543981d87d65b (patch) | |
tree | 4426bb9b605db661f9bc2e5320a650e192f7fe9f /fs/ubifs | |
parent | 7bbe5b5aa6d1e38af6f1fc866efc0aa461d73f19 (diff) | |
download | op-kernel-dev-24fa9e9438b263600737c839b36543981d87d65b.zip op-kernel-dev-24fa9e9438b263600737c839b36543981d87d65b.tar.gz |
UBIFS: fix tnc dumping
debugfs tnc dumping was broken because of an obvious typo.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/debug.c b/fs/ubifs/debug.c index 934db18..367d975 100644 --- a/fs/ubifs/debug.c +++ b/fs/ubifs/debug.c @@ -2443,7 +2443,7 @@ static ssize_t write_debugfs_file(struct file *file, const char __user *buf, spin_lock(&c->space_lock); dbg_dump_budg(c); spin_unlock(&c->space_lock); - } else if (file->f_path.dentry == d->dump_budg) { + } else if (file->f_path.dentry == d->dump_tnc) { mutex_lock(&c->tnc_mutex); dbg_dump_tnc(c); mutex_unlock(&c->tnc_mutex); |