]> err.no Git - util-linux/commitdiff
blkid: use posix uintXX_t in lvm code
authorKarel Zak <kzak@redhat.com>
Wed, 3 Dec 2008 14:32:21 +0000 (15:32 +0100)
committerKarel Zak <kzak@redhat.com>
Wed, 11 Feb 2009 22:21:49 +0000 (23:21 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
libs/blkid/src/probers/lvm.c

index c0990ca24570a3dc143037ea5c0a92f3bd66c4ee..d2f143dc48e104536b8298212f700a9e22b3fa9e 100644 (file)
@@ -12,8 +12,6 @@
 #include <stdlib.h>
 #include <unistd.h>
 #include <string.h>
-#include <errno.h>
-#include <ctype.h>
 #include <stdint.h>
 
 #include "blkidP.h"
 
 struct lvm2_pv_label_header {
        /* label_header */
-       __u8    id[8];          /* LABELONE */
-       __u64   sector_xl;      /* Sector number of this label */
-       __u32   crc_xl;         /* From next field to end of sector */
-       __u32   offset_xl;      /* Offset from start of struct to contents */
-       __u8    type[8];        /* LVM2 001 */
+       uint8_t         id[8];          /* LABELONE */
+       uint64_t        sector_xl;      /* Sector number of this label */
+       uint32_t        crc_xl;         /* From next field to end of sector */
+       uint32_t        offset_xl;      /* Offset from start of struct to contents */
+       uint8_t         type[8];        /* LVM2 001 */
        /* pv_header */
-       __u8    pv_uuid[LVM2_ID_LEN];
+       uint8_t         pv_uuid[LVM2_ID_LEN];
 } __attribute__ ((packed));
 
 #define LVM2_LABEL_SIZE 512
@@ -41,7 +39,7 @@ static unsigned int lvm2_calc_crc(const void *buf, unsigned int size)
                0x9b64c2b0, 0x86d3d2d4, 0xa00ae278, 0xbdbdf21c
        };
        unsigned int i, crc = 0xf597a6cf;
-       const __u8 *data = (const __u8 *) buf;
+       const uint8_t *data = (const uint8_t *) buf;
 
        for (i = 0; i < size; i++) {
                crc ^= *data++;