summaryrefslogtreecommitdiffstats
path: root/block/partitions/Makefile
diff options
context:
space:
mode:
authorPhilippe De Muyter <phdm@macqel.be>2013-07-08 16:01:29 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2013-07-09 10:33:28 -0700
commit6ceea22bbbc84fcf6bf0913bb3db8a657e9002f6 (patch)
treee1ed4bb79429f1191931091dd8311a5067acdfcb /block/partitions/Makefile
parent1d04f3c6ab6bbdc6187ba44b8a667a785b63c4f2 (diff)
downloadlinux-0-day-6ceea22bbbc84fcf6bf0913bb3db8a657e9002f6.tar.gz
linux-0-day-6ceea22bbbc84fcf6bf0913bb3db8a657e9002f6.tar.xz
partitions: add aix lvm partition support files
Add partitions/aix.h and partitions/aix.c. AIX LVM permits to make "logical volumes" which are made of multiple slices of multiple disks. The new code allows only access to the "logical volumes" which are made of one slice on the probed disk, a slice being a contiguous disk area. The code also detects "logical volumes" made of multiple slices on the probed disk, but can not describe them to the partition layer, because the partition layer generic code does not support that. When such non-contiguous "logical volumes" are detected, a diagnostic message is printed. [akpm@linux-foundation.org: coding-style fixes] Signed-off-by: Philippe De Muyter <phdm@macqel.be> Cc: Karel Zak <kzak@redhat.com> Cc: Jens Axboe <axboe@kernel.dk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'block/partitions/Makefile')
-rw-r--r--block/partitions/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/block/partitions/Makefile b/block/partitions/Makefile
index 03af8eac51da8..2be4d7ba4e3ab 100644
--- a/block/partitions/Makefile
+++ b/block/partitions/Makefile
@@ -7,6 +7,7 @@ obj-$(CONFIG_BLOCK) := check.o
obj-$(CONFIG_ACORN_PARTITION) += acorn.o
obj-$(CONFIG_AMIGA_PARTITION) += amiga.o
obj-$(CONFIG_ATARI_PARTITION) += atari.o
+obj-$(CONFIG_AIX_PARTITION) += aix.o
obj-$(CONFIG_MAC_PARTITION) += mac.o
obj-$(CONFIG_LDM_PARTITION) += ldm.o
obj-$(CONFIG_MSDOS_PARTITION) += msdos.o