]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
uapi: fix linux/raid/md_p.h userspace compilation error
authorArtur Paszkiewicz <artur.paszkiewicz@intel.com>
Wed, 19 Apr 2017 08:48:06 +0000 (10:48 +0200)
committerShaohua Li <shli@fb.com>
Thu, 20 Apr 2017 16:41:45 +0000 (09:41 -0700)
Use __le32 and __le64 instead of u32 and u64.

This fixes klibc build error:
  In file included from /klibc/usr/klibc/../include/sys/md.h:30:0,
                   from /klibc/usr/kinit/do_mounts_md.c:19:
  /linux-next/usr/include/linux/raid/md_p.h:414:51: error: 'u32' undeclared here (not in a function)
    (PPL_HEADER_SIZE - PPL_HDR_RESERVED - 4 * sizeof(u32) - sizeof(u64))

Reported-by: Greg Thelen <gthelen@google.com>
Reported-by: Nigel Croxon <ncroxon@redhat.com>
Tested-by: Greg Thelen <gthelen@google.com>
Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Signed-off-by: Shaohua Li <shli@fb.com>
include/uapi/linux/raid/md_p.h

index d9a1ead867b934d104f7dbd05924f7db4c78accf..d500bd224979d923f15732bd19a5bcde11c8f91f 100644 (file)
@@ -411,7 +411,7 @@ struct ppl_header_entry {
 #define PPL_HEADER_SIZE 4096
 #define PPL_HDR_RESERVED 512
 #define PPL_HDR_ENTRY_SPACE \
-       (PPL_HEADER_SIZE - PPL_HDR_RESERVED - 4 * sizeof(u32) - sizeof(u64))
+       (PPL_HEADER_SIZE - PPL_HDR_RESERVED - 4 * sizeof(__le32) - sizeof(__le64))
 #define PPL_HDR_MAX_ENTRIES \
        (PPL_HDR_ENTRY_SPACE / sizeof(struct ppl_header_entry))