summaryrefslogtreecommitdiffstats
path: root/fs/ubifs/super.c
diff options
context:
space:
mode:
authorArtem Bityutskiy2011-03-25 14:27:40 +0100
committerArtem Bityutskiy2011-05-13 18:23:53 +0200
commitc43615702f9c5957981693a4d966ed81d8fc1ecc (patch)
tree2ebe066623e693e2f0d85a609b19a5ccd27a0993 /fs/ubifs/super.c
parentUBIFS: make debugfs files non-seekable (diff)
downloadkernel-qcow2-linux-c43615702f9c5957981693a4d966ed81d8fc1ecc.tar.gz
kernel-qcow2-linux-c43615702f9c5957981693a4d966ed81d8fc1ecc.tar.xz
kernel-qcow2-linux-c43615702f9c5957981693a4d966ed81d8fc1ecc.zip
UBIFS: fix minor stylistic issues
Fix several minor stylistic issues: * lines longer than 80 characters * space before closing parenthesis ')' * spaces in the indentations Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs/ubifs/super.c')
-rw-r--r--fs/ubifs/super.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c
index 04ad07f4fcc3..a089cca63436 100644
--- a/fs/ubifs/super.c
+++ b/fs/ubifs/super.c
@@ -1144,7 +1144,7 @@ static int check_free_space(struct ubifs_info *c)
{
ubifs_assert(c->dark_wm > 0);
if (c->lst.total_free + c->lst.total_dirty < c->dark_wm) {
- ubifs_err("insufficient free space to mount in read/write mode");
+ ubifs_err("insufficient free space to mount in R/W mode");
dbg_dump_budg(c);
dbg_dump_lprops(c);
return -ENOSPC;
@@ -1456,7 +1456,7 @@ static int mount_ubifs(struct ubifs_info *c)
dbg_msg("node sizes: ref %zu, cmt. start %zu, orph %zu",
UBIFS_REF_NODE_SZ, UBIFS_CS_NODE_SZ, UBIFS_ORPH_NODE_SZ);
dbg_msg("max. node sizes: data %zu, inode %zu dentry %zu, idx %d",
- UBIFS_MAX_DATA_NODE_SZ, UBIFS_MAX_INO_NODE_SZ,
+ UBIFS_MAX_DATA_NODE_SZ, UBIFS_MAX_INO_NODE_SZ,
UBIFS_MAX_DENT_NODE_SZ, ubifs_idx_node_sz(c, c->fanout));
dbg_msg("dead watermark: %d", c->dead_wm);
dbg_msg("dark watermark: %d", c->dark_wm);