diff options
author | Goldwyn Rodrigues <rgoldwyn@suse.de> | 2013-09-24 15:27:32 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-24 17:00:25 -0700 |
commit | 99d7a8824a15cb6da046947e9b5a2335d52fbeb7 (patch) | |
tree | 1df591642326d01aae4ffbc9aa7103b9fe2895ee /fs | |
parent | 9809b18fcf6b8d8ec4d3643677345907e6b50eca (diff) | |
download | linux-99d7a8824a15cb6da046947e9b5a2335d52fbeb7.tar.gz linux-99d7a8824a15cb6da046947e9b5a2335d52fbeb7.tar.bz2 linux-99d7a8824a15cb6da046947e9b5a2335d52fbeb7.zip |
fs/ocfs2/super.c: use a bigger nodestr in ocfs2_dismount_volume
While printing 32-bit node numbers, an 8-byte string is not enough.
Increase the size of the string to 12 chars.
This got left out in commit 49fa8140e487 ("fs/ocfs2/super.c: Use bigger
nodestr to accomodate 32-bit node numbers").
Signed-off-by: Goldwyn Rodrigues <rgoldwyn@suse.com>
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Mark Fasheh <mfasheh@suse.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ocfs2/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/super.c b/fs/ocfs2/super.c index 121da2dc3be8..d4e81e4a9b04 100644 --- a/fs/ocfs2/super.c +++ b/fs/ocfs2/super.c @@ -1924,7 +1924,7 @@ static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err) { int tmp, hangup_needed = 0; struct ocfs2_super *osb = NULL; - char nodestr[8]; + char nodestr[12]; trace_ocfs2_dismount_volume(sb); |