Am 28.03.2010 15:12, schrieb Christoph Hellwig: > On Mon, Mar 15, 2010 at 06:08:34PM +0100, Kevin Wolf wrote: >> + fprintf(stderr, "bdrv_debug_event: %d\n", event); > > Is this supposed to be in the final version or a leftover debugging aid?
It's not there in the final version (which I have already sent out, btw, so you have reviewed an old version) >> +#define BLKDBG_EVENT(bs, evt) bdrv_debug_event(bs, evt) > > Why not call bdrv_debug_event directly? Originally I had intended to add a flag to ./configure to enable blkdebug and #ifdef this out if it's not compiled in. Maybe we still want to add that, but then it's not really much that you save. >> + config = strdup(filename); >> + config[c - filename] = '\0'; >> + ret = read_config(s, config); >> + if (ret < 0) { >> + return ret; >> + } >> + filename = c + 1; >> + >> + /* Open the backing file */ >> + ret = bdrv_file_open(&s->hd, filename, flags); >> + if (ret < 0) { >> + return ret; >> + } >> + >> + return 0; > > Don't we need to free config somewhere? Oops, this one is still there in the final version. I'll send another version of the series. Kevin