Skip to content

Commit

Permalink
Merge tag 'upstream-3.11-rc1' of git://git.infradead.org/linux-ubifs
Browse files Browse the repository at this point in the history
Pull ubifs fix from Artem Bityutskiy:
 "Only a single patch which fixes a message"

* tag 'upstream-3.11-rc1' of git://git.infradead.org/linux-ubifs:
  UBIFS: correct mount message
  • Loading branch information
torvalds committed Jul 5, 2013
2 parents 74b9272 + beadadf commit 2dd1cb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/ubifs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -1412,7 +1412,7 @@ static int mount_ubifs(struct ubifs_info *c)

ubifs_msg("mounted UBI device %d, volume %d, name \"%s\"%s",
c->vi.ubi_num, c->vi.vol_id, c->vi.name,
c->ro_mount ? ", R/O mode" : NULL);
c->ro_mount ? ", R/O mode" : "");
x = (long long)c->main_lebs * c->leb_size;
y = (long long)c->log_lebs * c->leb_size + c->max_bud_bytes;
ubifs_msg("LEB size: %d bytes (%d KiB), min./max. I/O unit sizes: %d bytes/%d bytes",
Expand Down

0 comments on commit 2dd1cb5

Please sign in to comment.