UBIFS: amend debugging inode size check function prototype
Add 'const struct ubifs_info *c' parameter to 'dbg_check_synced_i_size()' function because we'll need it in the next patch when we switch to debugfs. So this patch is just a preparation. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
This commit is contained in:
committed by
Artem Bityutskiy
parent
bb2615d4d1
commit
d808efb407
@@ -1132,6 +1132,7 @@ out:
|
||||
|
||||
/**
|
||||
* dbg_check_synced_i_size - check synchronized inode size.
|
||||
* @c: UBIFS file-system description object
|
||||
* @inode: inode to check
|
||||
*
|
||||
* If inode is clean, synchronized inode size has to be equivalent to current
|
||||
@@ -1139,7 +1140,7 @@ out:
|
||||
* has to be locked). Returns %0 if synchronized inode size if correct, and
|
||||
* %-EINVAL if not.
|
||||
*/
|
||||
int dbg_check_synced_i_size(struct inode *inode)
|
||||
int dbg_check_synced_i_size(const struct ubifs_info *c, struct inode *inode)
|
||||
{
|
||||
int err = 0;
|
||||
struct ubifs_inode *ui = ubifs_inode(inode);
|
||||
|
||||
Reference in New Issue
Block a user