aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2013-08-28 19:31:33 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2013-08-28 19:31:33 -0700
commitc95389b4cd6a4b52af78bea706a274453e886251 (patch)
tree01e0046bdef0121e57ebecbead1d757494dcbd13 /fs
parentvfs: make the dentry cache use the lockref infrastructure (diff)
parentfs/ocfs2/super.c: Use bigger nodestr to accomodate 32-bit node numbers (diff)
downloadlinux-dev-c95389b4cd6a4b52af78bea706a274453e886251.tar.xz
linux-dev-c95389b4cd6a4b52af78bea706a274453e886251.zip
Merge branch 'akpm' (patches from Andrew Morton)
Merge fixes from Andrew Morton: "Five fixes. err, make that six. let me try again" * emailed patches from Andrew Morton <akpm@linux-foundation.org>: fs/ocfs2/super.c: Use bigger nodestr to accomodate 32-bit node numbers memcg: check that kmem_cache has memcg_params before accessing it drivers/base/memory.c: fix show_mem_removable() to handle missing sections IPC: bugfix for msgrcv with msgtyp < 0 Omnikey Cardman 4000: pull in ioctl.h in user header timer_list: correct the iterator for timer_list
Diffstat (limited to 'fs')
-rw-r--r--fs/ocfs2/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/super.c b/fs/ocfs2/super.c
index 854d80955bf8..121da2dc3be8 100644
--- a/fs/ocfs2/super.c
+++ b/fs/ocfs2/super.c
@@ -1022,7 +1022,7 @@ static int ocfs2_fill_super(struct super_block *sb, void *data, int silent)
struct inode *inode = NULL;
struct ocfs2_super *osb = NULL;
struct buffer_head *bh = NULL;
- char nodestr[8];
+ char nodestr[12];
struct ocfs2_blockcheck_stats stats;
trace_ocfs2_fill_super(sb, data, silent);