Re: [Qemu-devel] [PATCH v5 8/8] block: Add blklogwrites

2018-06-29 Thread Kevin Wolf
Am 29.06.2018 um 18:02 hat Ari Sundholm geschrieben: > On 06/29/2018 03:05 PM, Kevin Wolf wrote: > > Am 19.06.2018 um 15:43 hat Ari Sundholm geschrieben: > > > +s->cur_log_sector = 1; > > > +s->nr_entries = 0; > > > > Would it be useful to implement a mode that appends to the log? > > > >

Re: [Qemu-devel] [PATCH v5 8/8] block: Add blklogwrites

2018-06-29 Thread Ari Sundholm
On 06/29/2018 03:05 PM, Kevin Wolf wrote: Am 19.06.2018 um 15:43 hat Ari Sundholm geschrieben: From: Aapo Vienamo Implements a block device write logging system, similar to Linux kernel device mapper dm-log-writes. The write operations that are performed on a block device are logged to a file

Re: [Qemu-devel] [PATCH v5 8/8] block: Add blklogwrites

2018-06-29 Thread Kevin Wolf
Am 19.06.2018 um 15:43 hat Ari Sundholm geschrieben: > From: Aapo Vienamo > > Implements a block device write logging system, similar to Linux kernel > device mapper dm-log-writes. The write operations that are performed > on a block device are logged to a file or another block device. The > writ

[Qemu-devel] [PATCH v5 8/8] block: Add blklogwrites

2018-06-19 Thread Ari Sundholm
From: Aapo Vienamo Implements a block device write logging system, similar to Linux kernel device mapper dm-log-writes. The write operations that are performed on a block device are logged to a file or another block device. The write log format is identical to the dm-log-writes format. Currently,