dect
/
linux-2.6
Archived
13
0
Fork 0

UBIFS: do not change debugfs file position

This patch is a tiny improvement which removes few bytes of code.
UBIFS debugfs files are non-seekable and the file position is ignored,
so do not increase it in the write handler.

Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
This commit is contained in:
Artem Bityutskiy 2011-04-22 12:11:12 +03:00
parent 1321657d8f
commit 341e262f90
1 changed files with 0 additions and 1 deletions

View File

@ -2828,7 +2828,6 @@ static ssize_t write_debugfs_file(struct file *file, const char __user *buf,
} else
return -EINVAL;
*ppos += count;
return count;
}