summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorKent Overstreet2016-03-15 03:44:36 +0100
committerKarel Zak2016-03-23 10:52:38 +0100
commit7ce27dc517093a7b52408e2d6a9b6d1a063eb3b1 (patch)
tree8bdc13760352d0e19ec01ed6b6f85ab8a7fab8c7 /include
parentpartx: fix --nr usage (diff)
downloadkernel-qcow2-util-linux-7ce27dc517093a7b52408e2d6a9b6d1a063eb3b1.tar.gz
kernel-qcow2-util-linux-7ce27dc517093a7b52408e2d6a9b6d1a063eb3b1.tar.xz
kernel-qcow2-util-linux-7ce27dc517093a7b52408e2d6a9b6d1a063eb3b1.zip
libblkid: Update for newer bcache superblocks
Later version of bcache add different checksum types, and allow for superblocks greater than 4k - skipping the checksum check (as in most other probes) is the easiest solution. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/Makemodule.am1
-rw-r--r--include/crc64.h9
2 files changed, 0 insertions, 10 deletions
diff --git a/include/Makemodule.am b/include/Makemodule.am
index 5cdf29a5b..d4ae10cfa 100644
--- a/include/Makemodule.am
+++ b/include/Makemodule.am
@@ -11,7 +11,6 @@ dist_noinst_HEADERS += \
include/color-names.h \
include/cpuset.h \
include/crc32.h \
- include/crc64.h \
include/debug.h \
include/env.h \
include/exec_shell.h \
diff --git a/include/crc64.h b/include/crc64.h
deleted file mode 100644
index 40475d56f..000000000
--- a/include/crc64.h
+++ /dev/null
@@ -1,9 +0,0 @@
-#ifndef UTIL_LINUX_CRC64_H
-#define UTIL_LINUX_CRC64_H
-
-#include <sys/types.h>
-#include <stdint.h>
-
-extern uint64_t crc64(uint64_t seed, const unsigned char *data, size_t len);
-
-#endif