On Wed, Mar 16, 2005 at 11:10:00PM +0000, Alasdair G Kergon wrote: > On Thu, Mar 17, 2005 at 12:00:40AM +0100, Bastian Blank wrote: > > Is it possible to reset a snapshot without a delete, create cycle? > Not sure if I'm answering the right question, but with > LVM2/device-mapper: Yes, you were answering the right questions. > You have to suspend & resume it in the kernel [with existing device-mapper > implementation; this may change]. > > With LVM2, between those commands, you can just zero out the > start of the cow device (say first 64k). And then it'll treat > it as if it were a new snapshot (based on current state of filesystem.) Something like this? | name=${vg}-${lv} | dmsetup suspend $name | dd if=/dev/zero of=/dev/mapper/${name}-cow bs=64k count=1 | dmsetup resume $name Is it possible to implement that somewhere in the lvm commands? Bastian -- Power is danger. -- The Centurion, "Balance of Terror", stardate 1709.2
Attachment:
signature.asc
Description: Digital signature
_______________________________________________ linux-lvm mailing list linux-lvm@redhat.com https://www.redhat.com/mailman/listinfo/linux-lvm read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/