]> sourceware.org Git - lvm2.git/commit
wiping: add support for blkid wiping
authorPeter Rajnoha <prajnoha@redhat.com>
Fri, 15 Nov 2013 13:50:02 +0000 (14:50 +0100)
committerPeter Rajnoha <prajnoha@redhat.com>
Wed, 27 Nov 2013 14:49:15 +0000 (15:49 +0100)
commiteaa23d32732c9bc3dd4f948781b5764cf21d84ba
tree5f3d99ca18492b401c50f86b8be9e1fcbb29a5e0
parentab2f858af7a72448b6c015a5984c73f5cdaf3664
wiping: add support for blkid wiping

This is actually the wipefs functionailty as a matter of fact
(wipefs uses the same libblkid calls).

libblkid is more rich when it comes to detecting various
signatures, including filesystems and users can better
decide what to erase and what should be kept.

The code is shared for both pvcreate (where wiping is necessary
to complete the pvcreate operation) and lvcreate where it's up
to the user to decide.

The verbose output contains a bit more information about the
signature like LABEL and UUID.

For example:
  raw/~ # lvcreate -L16m vg
  WARNING: linux_raid_member signature detected on /dev/vg/lvol0 at offset 4096. Wipe it? [y/n]

or more verbose one:
  raw/~ # lvcreate -L16m vg -v
  ...
     Found existing signature on /dev/vg/lvol0 at offset 4096: LABEL="raw.virt:0" UUID="da6af139-8403-5d06-b8c4-13f6f24b73b1" TYPE="linux_raid_member" USAGE="raid"
WARNING: linux_raid_member signature detected on /dev/vg/lvol0 at offset 4096. Wipe it? [y/n]

The verbose output is the same output as found in blkid.
lib/device/dev-type.c
lib/device/dev-type.h
lib/metadata/lv_manip.c
lib/metadata/metadata.c
This page took 0.038863 seconds and 5 git commands to generate.