From 7b4c7a681cc4c0a53dc8a8baf4853e921cfbf5de Mon Sep 17 00:00:00 2001 From: bigbiff Date: Thu, 1 Jan 2015 19:44:14 -0500 Subject: Update blkid to 2.25.0 Break libblkid into 4 libraries: libblkid, libuuid, libutil-linux and libfdisk. This should help in later patch updates. Change-Id: I680d9a7feb031e5c29a603e9c58aff4b65826262 --- libblkid/aix.c | 59 ---------------------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 libblkid/aix.c (limited to 'libblkid/aix.c') diff --git a/libblkid/aix.c b/libblkid/aix.c deleted file mode 100644 index de397bf4a..000000000 --- a/libblkid/aix.c +++ /dev/null @@ -1,59 +0,0 @@ -/* - * aix partitions - * - * Copyright (C) 2009 Karel Zak - * - * This file may be redistributed under the terms of the - * GNU Lesser General Public License. - */ -#include -#include -#include -#include - -#include "partitions.h" -#include "aix.h" - -static int probe_aix_pt(blkid_probe pr, - const struct blkid_idmag *mag __attribute__((__unused__))) -{ - blkid_partlist ls; - blkid_parttable tab; - - if (blkid_partitions_need_typeonly(pr)) - /* caller does not ask for details about partitions */ - return 0; - - ls = blkid_probe_get_partlist(pr); - if (!ls) - goto err; - - tab = blkid_partlist_new_parttable(ls, "aix", 0); - if (!tab) - goto err; - - return 0; -err: - return -1; -} - -/* - * We know nothing about AIX on-disk structures. Everything what we know is the - * magic number at begin of the disk. - * - * Note, Linux kernel is tring to be smart and AIX signature is ignored when - * there is a valid DOS partitions table. We don't support such behaviour. All - * fdisk-like programs has to properly wipe the fist sector. Everything other - * is a bug. - */ -const struct blkid_idinfo aix_pt_idinfo = -{ - .name = "aix", - .probefunc = probe_aix_pt, - .magics = - { - { .magic = BLKID_AIX_MAGIC_STRING, .len = BLKID_AIX_MAGIC_STRLEN }, - { NULL } - } -}; - -- cgit v1.2.3