diff options
author | Dan Magenheimer <dan.magenheimer@oracle.com> | 2011-10-17 16:47:17 -0700 |
---|---|---|
committer | Joel Becker <jlbec@evilplan.org> | 2011-11-17 01:46:48 -0800 |
commit | e41d33af7c037a6f7350f8410b45ce83b50d1b80 (patch) | |
tree | bbf08c4e9321dd17265f3aa65b96bbf441d23f8f /fs | |
parent | b8a0ae579fb8d9b21008ac386be08b9428902455 (diff) | |
download | linux-e41d33af7c037a6f7350f8410b45ce83b50d1b80.tar.bz2 |
ocfs2: send correct UUID to cleancache initialization
ocfs2: Fix cleancache initialization call to correctly pass uuid
As reported by Steven Whitehouse in https://lkml.org/lkml/2011/5/27/221
the ocfs2 volume UUID is incorrectly passed to cleancache.
As a result, shared-ephemeral tmem pools will not actually
be created; instead they will be private (unshared) which
misses out on a major benefit of tmem.
Reported-by: Steven Whitehouse <swhiteho@redhat.com>
Signed-off-by: Dan Magenheimer <dan.magenheimer@oracle.com>
Signed-off-by: Joel Becker <jlbec@evilplan.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 938e2b2b0c9c..4994f8b0e604 100644 --- a/fs/ocfs2/super.c +++ b/fs/ocfs2/super.c @@ -2360,7 +2360,7 @@ static int ocfs2_initialize_super(struct super_block *sb, mlog_errno(status); goto bail; } - cleancache_init_shared_fs((char *)&uuid_net_key, sb); + cleancache_init_shared_fs((char *)&di->id2.i_super.s_uuid, sb); bail: return status; |