On Tue, Feb 04, 2014 at 02:26:58PM -0500, Jeff Cody wrote: > @@ -291,23 +311,17 @@ static int qemu_gluster_open(BlockDriverState *bs, > QDict *options, > > filename = qemu_opt_get(opts, "filename"); > > + s->filename = g_strdup(filename);
It's not obvious to me that copying the filename is necessary. block/raw-posix.c does this: raw_s->fd = qemu_open(state->bs->filename, raw_s->open_flags); Why didn't you use bs->filename? Stefan